:root {
  --primary-blue: #001B48;
  --accent-yellow: #ffcc00;
  --text-gray: #000;
  --light-blue-bg: linear-gradient(to right, #90cdf4, #ebf8ff);
  --active-blue: #3182ce;
  --accent: #018ABE;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --navy-blue: #001B48;
  --yellow: #FFCC00;
  --text-light: #ffffff;
}


body {
  background-color: #EEF4FF;
  font-family: math !important;
  margin: 0;

  min-height: 100vh;
  overflow-x: hidden;
  padding: 0px 0;

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Premium feel curve */
  will-change: transform, opacity;
}

/* Active State */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header Main Style */
.main-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 100%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 8px 30px 4px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.main-header.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  background: #F5C518;
  padding: 1% 5% 0.8%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Style */
.logo img {
  max-width: 60%;
}

/* .logo span {
      background: linear-gradient(to right, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    } */

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px;
}

.nav-link {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 0.972vw;
  transition: 0.3s;
}

.nav-link:hover {
  color: white;
}

/* CTA Button */
.cta-button {
  background: var(--primary-blue);
  color: var(--white) !important;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.972vw;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 27, 72, 0.2);
}

.cta-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Hamburger Styles */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1100;
}

.line {
  display: block;
  width: 25px;
  height: 3px;
  background: black;
  margin: 5px;
  transition: 0.4s;
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #ffcc00;
  z-index: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}

.mobile-overlay.active {
  right: 0;
}

.mobile-menu {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 25px 0;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}


/* Hamburger Animation */
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);

}

/* Hero Section */

.hero-section {
  background-color: var(--navy-blue);
  padding: 10% 3% 13%;
  /* min-height: 80vh; */
  display: flex;
  align-items: center;
  color: var(--text-light);
  position: relative;

}

.hero-container {
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Badge Style */
.reg-badge {
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: #F5C518;
  display: inline-block;
  padding: 1.5% 4%;
  border-radius: 30px;
  font-size: 0.833vw;
  letter-spacing: 1px;
  margin-bottom: 7%;
  font-weight: 700;
}

.reg-badge .dot {
  height: 6px;
  width: 6px;
  background: var(--yellow);
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}

/* Heading & Text */
.hero-content h1 {
  font-size: 4.583vw;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: var(--yellow);
}

.hero-content p {
  font-size: 1.181vw;
  line-height: 1.6;

  margin-bottom: 40px;
  max-width: 69%;
  color: white;
}


.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-yellow {
  background-color: var(--yellow);
  color: #000;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  font-size: 1.111vw;
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 15px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 1.111vw;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}


.hero-image-wrapper {
  position: relative;
  /* border-radius: 30px; */
  overflow: hidden;

}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* // Banner Counter // */

.sns-features-wrapper {
  display: flex;
  width: 90%;
  max-width: 70%;
  background-color: #Fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  /* Optional: slight curve */
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  margin-top: -6.5%;
  padding: 3% 0%;
}

.sns-feature-item {
  flex: 1;
  padding: 1% 2%;
  text-align: center;
  border-right: 2px solid #000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sns-feature-item:last-child {
  border-right: none;
}

.sns-feature-title {
  color: #2557B5;
  font-size: 2.8vw;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.sns-read-more {
  color: black;
  text-decoration: none;
  font-size: 1.1vw;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

/* .sns-read-more:hover {
      color: var(--sns-white);
      border-bottom: 1px solid var(--sns-white);
    } */

/* // WHY CARE HEALTH // */

.why {
  padding: 6% 0% 0%;
  text-align: center;
}

.why-2 {
  padding: 6% 0% 0%;
  text-align: center;
  background-color: white;
}


.header-content {

  margin: 0 auto 1%;
  text-align: center;
}

.heading-badge {
  background: #2557b536;
  color: #2557B5;
  padding: 0.4% 1%;
  border-radius: 20px;
  font-size: 0.833vw;
  font-weight: 700;
  letter-spacing: 1px;
}

.header-content h2 {
  font-size: 3.472vw;
  color: var(--navy);
  margin: 2% 0 1%;
  font-weight: 800;
}

.header-content p {
  color: #000;
  font-size: 1.181vw;
  line-height: 1.6;
  max-width: 40%;
  margin: 0 auto;
}

/* // Award-Winning Service Card Section // */

.cards-container-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Horizontal Center */
  gap: 20px;
  padding: 50px 10px;
  max-width: 100%;
  margin: 0 auto;
}


.card-wrapper-sns {
  position: relative;
  width: calc(88%/4);
  margin-bottom: 50px;
  padding-top: 33%;
  transition: transform 0.3s ease;
}

.card-wrapper-sns:hover {
  transform: translateY(-5px);
}


.card-orange-sns {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 98%;
  background: linear-gradient(135deg, #001b48 0%, #02457a 100%);
  clip-path: polygon(0% 29%, 100% 0%, 100% 81%, 100% 100%, 15% 100%, 0% 100%);
  border-radius: 13% 0% 13% 13%;
}


.card-white-sns {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 85%;
  background: white;
  border-radius: 12px;
  padding: 16% 5% 0%;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  /* display: flex; */
  /* flex-direction: column; */
  justify-content: center;
  clip-path: polygon(0% 0%, 100% 23%, 100% 12%, 100% 100%, 15% 100%, 0% 100%);
  border: 2px solid black;
  text-align: left;
}

/* ORANGE LAYER */
.orange-layer-sns {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}


.content-sns h3 {
  margin: 0 0 10px 0;
  color: black;
  font-size: 1.4vw;
}

.content-sns p {
  margin: 0;
  font-size: 1.181vw;
  color: #000;
  line-height: 1.6;
}

.icon-box-sns {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 35px;
  height: 35px;
  background: #F5C518;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}


/* // About Care Health Insurance // */

.about-sns h3 {
  margin: 0 0 15px 0;
  color: white;
  font-size: 2vw;
}

.about-sns p {
  color: white;
  margin-bottom: 1rem;

  font-size: 1.181vw;
  line-height: 1.6;
}


.about {
  padding: 0% 2% 3%;
  max-width: 75%;
  margin: 0 auto;
  text-align: center;
}

.Backing {
  background-color: #001B48;
  padding: 2% 3% 5%;
  margin-top: 5%;
}

.news-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  margin-top: 3%;
}

/* Individual Card */
.article-card {
  background: #fff;


  padding: 1vw;
  width: calc(93%/3);


  display: flex;
  flex-direction: column;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 3px solid #FFCC00;
}

.article-card:hover {
  transform: translateY(-0.5vw);
}

.brand-logo-box {

  margin-bottom: 0.3vw;

}

.brand-img {
  max-width: 100%;

  object-fit: contain;
}

.article-heading {
  font-size: 1.4vw;
  line-height: 1.3;
  color: #000;
  margin-bottom: 1vw;

}

.article-snippet {
  font-size: 1.181vw;
  color: #000;
  line-height: 1.6;
  margin-bottom: 2vw;

}


/* ================= PARTNERS ================= */


.track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.track img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.slider {
  overflow: hidden;
  width: 100%;
  margin-top: 0vh;

  padding: 5% 2% 3%;
}

.track {
  display: flex;
  gap: 4vw;
}

/* .partner {
      min-width: 12vw;
      height: 10vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .partner img {
      width: 100%;

    }

    .partner:hover img {

      transform: scale(1.1);
    } */

.slider-title {
  color: black;
  font-size: 2vw;
  text-align: center;
  margin-bottom: 2%;
}

.slider-para {
  font-size: 1.181vw;
  color: black;
  line-height: 1.6;
  text-align: center;

  max-width: 70%;
  margin: 0 auto 4%;
}

/* // Find the Right Plan for You // */

.static-plans-grid {
  display: flex;
  flex-wrap: wrap;

  /* gap: 20px; */
  width: 94%;
  margin: 40px auto;
}


.plan-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  width: calc(95%/3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  margin-bottom: 1.8%;
}



.plan-card:hover {
  transform: translateY(-5px);
}

.card-header {
  background: var(--primary-blue);
  color: white;
  padding: 6% 4%;
  text-align: left;
  position: relative;

}


.card-header::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 196px;
  height: 196px;
  background: url(https://cdn.prod.website-files.com/641311da4807ed125cdf476c/64185d3febb48660824520e6_top%20left%20bg.png);
  background-repeat: no-repeat;

}

.card-header::after {
  content: '';
  position: absolute;
  top: 120px;
  right: 0px;
  width: 102px;
  height: 97px;
  background: #ffffff1c;
  border-radius: 50%;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 3%;
  text-transform: uppercase;
  font-weight: 800;
}

.yellow-badge {
  background: #F5C518;
  color: #000;
  font-size: 0.7vw;
  letter-spacing: 1px;
}

.green-badge {
  background: #28a745;
  color: #fff;
  font-size: 0.7vw;
}

.card-header h3 {
  margin: 5px 0;
  font-size: 1.4vw;
  color: #fff;
}

.tagline {
  font-size: 0.9vw;
  min-height: 30px;
  margin: 1% 0%;
  color: white;
  opacity: 0.7;
}

.price-options {
  display: flex;
  gap: 6px;
}

.price-options span {
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.76vw;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-body {
  padding: 20px;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-body li {
  font-size: 1.04vw;
  color: black;
  margin-bottom: 1%;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #D8E3F5;
  line-height: 1.5;
  padding: 1.5% 0%;
  text-align: left;
}

.card-body li::before {
  content: '✓';
  color: #28a745;
  margin-right: 8px;
  font-weight: bold;
}

.card-footer {
  display: flex;
  gap: 10px;
  padding: 1% 20px 6%;
  background: #fff;
}

.btn-main {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 3%;
  border-radius: 8px;
  font-weight: 600;
  flex: 2;
  cursor: pointer;
  font-size: 0.9vw;
  font-family: "math";
}

.btn-brochure {
  background: #F5C518;
  color: #000;
  border: none;
  padding: 3%;
  border-radius: 8px;
  font-weight: 600;
  flex: 1;
  cursor: pointer;
  font-size: 0.9vw;
  font-family: "math";
}



.btn-main:hover {

  background: #3567b7;

}



.btn-brochure:hover {
  background: #f5c5188f
}


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#overlay.open {
  display: flex;
}

/* Modal Box */
#modalBox {
  background: #fff;
  width: 90%;
  max-width: 850px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* HEADER (Dark Blue like image) */
.modal-hd {
  background: #1f3c6e;
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-hd h3 {
  margin: 0;
  font-size: 18px;
}

.modal-hd p {
  margin: 3px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

.modal-x {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

/* BODY */
.modal-bd {
  padding: 20px;
  overflow-y: auto;
  max-height: 70vh;
}

/* Sections */
.m-sec {
  margin-bottom: 18px;
}

.m-lbl {
  font-weight: 700;
  font-size: 13px;
  color: #1f3c6e;
  margin-bottom: 8px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

/* Tables */
.m-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.m-table td {
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
}

/* Alternate row */
.m-table tr:nth-child(even) {
  background: #f8f9fb;
}

/* Pills */
.m-pill {
  background: #e9edf5;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* Tip box */
.m-tip {
  background: #fff8e6;
  padding: 12px;
  border-left: 4px solid #f2b705;
  border-radius: 6px;
  font-size: 13px;
}

.m-bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
}

/* HEADER */
.m-bonus-table thead {
  background: #162d5b;
  color: #fff;
}

.m-bonus-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}

/* BODY */
.m-bonus-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e5e5;
}

/* STRIP ROWS */
.m-bonus-table tbody tr:nth-child(even) {
  background: #f1f4f9;
}

/* HOVER EFFECT */
.m-bonus-table tbody tr:hover {
  background: #e2e8f5;
  transition: 0.2s;
}

/* LAST ROW SPECIAL (highlight like image feel) */
.m-bonus-table tbody tr:last-child {
  font-weight: 600;
  color: #1f3c6e;
}

/* OPTIONAL: rounded corners fix */
.m-bonus-table thead tr th:first-child {
  border-top-left-radius: 10px;
}

.m-bonus-table thead tr th:last-child {
  border-top-right-radius: 10px;
}

.m-intro-box {
  font-size: 13px;
  margin-bottom: 10px;
}

.m-benefit {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.m-benefit h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.m-benefit p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}


/* // Dept Section // */


.dept-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 6% 0 29%;
}

/* Blue Gradient Background Container */
.dept-bg-container {
  background: url(https://i.pinimg.com/1200x/77/9a/73/779a73a47eb5e5fd126c478a9a0bb451.jpg);
  width: 90%;
  max-width: 100%;
  border-radius: 30px;
  padding: 5% 20px 12% 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.dept-title {
  color: #ffffff;
  font-size: 3.472vw;
  margin-bottom: 1%;
  font-weight: 800;
  /* text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.dept-para {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.181vw;
  margin: 0 auto;
  width: 75%;

}

.dept-para-2 {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.181vw;
  margin: 0 auto;
  margin-top: 1.5%;


}


/* Cards Wrapper */
.dept-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;

  left: 0;
  right: 0;
  padding: 0 40px;
  flex-wrap: wrap;
  margin-top: 4%;
}

/* Individual Card Styling */
.dept-card {
  background: #ffffff;
  width: 15%;
  height: 220px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Emoji Icons Default */
.dept-emoji-icon {
  font-size: 45px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  filter: saturate(1) brightness(1);
  /* Normal Emoji state */
}

/* Text Default */
.dept-card h3 {
  font-size: 1.4vw;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  transition: all 0.4s ease;
}

/* Top Right Arrow (Small Circle) */
.dept-card::after {
  content: '↗';
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f0f4f8;
  color: rgb(71, 131, 159);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}



.dept-card:hover {

  background: linear-gradient(135deg, #001b48 0%, #02457a 100%);

  box-shadow: 0 25px 50px rgba(71, 131, 159, 0.4);


}


.dept-card:hover::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Hover par Text White */
.dept-card:hover h3 {
  color: #ffffff !important;
}

/* IMPORTANT: Hover par Emoji ko white karne ka filter */
/* .dept-card:hover .dept-emoji-icon {
  filter: brightness(0) invert(1);
} */

/* Active State (Selected Card) */
.dept-card.active {
  background: linear-gradient(135deg, rgb(71, 131, 159) 0%, rgb(50, 100, 125) 100%);
  transform: translateY(-10px);
}

.dept-card.active p {
  color: white;
}

.dept-card.active .dept-emoji-icon {
  filter: brightness(0) invert(1);
}

.dept-card.active::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}



/* // Claim Section // */

.property-steps {
  margin-top: 0%;
  width: 100%;
  padding: 3% 0% 9%;
}

.steps-container {
  max-width: 94%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  /* Added for centering the content */
  padding-top: 6%;
}

/* Right Side Cards Grid */
.cards-grid {
  display: flex;

  justify-content: center;
  /* Added for centering boxes */
  gap: 40px;
  /* Equal gap between boxes */
  margin-bottom: 6%;
  padding: 0% 2% 0% 4%;
  width: 100%;
}

.step-card {
  background: white;
  padding: 6%;
  border-bottom: 4px solid var(--accent-green);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 2px solid var(--primary-blue);
  position: relative;
  min-height: 415px;
}

.claim-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.btn-claim {
  background: #F5C518;
  color: #000;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.111vw;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.3);
}

.btn-claim-ghost {
  border: 2px solid #001B48;
  color: black;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.111vw;
  text-decoration: none;
  transition: all 0.2s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.card-header-sns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3%;
  flex-direction: column-reverse;
}

.card-header h3 {
  margin: 0;
}

.step-icon img {
  max-width: 48%;
}

.step-card p {
  color: #000;
  font-size: 1.181vw;
  line-height: 1.5;
}

.step-card h3 {
  color: #000;
  font-size: 1.4vw;
  line-height: 1.5;
  margin: 3% 0% 0%;
}

#reim-content {
  display: none;
}



.sec {
  padding: 6%;
}

.sec1 {
  padding: 0% 6%;
}

.text-center {
  text-align: center;
}



.card-back {
  position: relative;
  width: calc(96.3%/2.5);
  /* Adjusted slightly for better centering and gap balance */
}

/* BACKGROUND LAYER */
.bg-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
}

/* DIRECTIONS */
.bg-top-left {
  top: -20px;
  left: -20px;
}

/* CARD */
.card-sns {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
  min-height: 100px;
}

/* STEP CORNERS */
.step {
  position: absolute;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  font-size: 1.2vw;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.step-1 {
  bottom: 0;
  right: 0;
  border-top-left-radius: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
  padding-left: 10px;
}

.step-2 {
  bottom: 0;
  right: 0;
  border-top-left-radius: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
  padding-left: 10px;
}

.step-3 {
  bottom: 0;
  right: 0;
  border-top-left-radius: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
  padding-left: 10px;
}

.step-4 {
  bottom: 0;
  right: 0;
  border-top-left-radius: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
  padding-left: 10px;
}

/* COLORS */
.yellow {
  background: #f4b400;
}

.pink {
  background: linear-gradient(135deg, #0B1F4B 0%, #1A3A7A 100%);
  ;
}

.teal {
  background: #2909d1;
}

.blue {
  background: #F5C518;
}

.claim-toggle-box {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 2% 0% 0%;
}

.toggle-btn {
  padding: 12px 35px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.1vw;
  transition: 0.3s;
}

.btn-cashless {
  background: #F5C518;
  color: #000;
  border-radius: 20px 0 0 20px;
  font-family: 'math' !important;
}

.btn-reimbursement {
  background: #fff;
  color: black;
  border-radius: 0 20px 20px 0;
  border: 2px solid #ffcc00;
   font-family: 'math' !important;
}

.btn-reimbursement.active {
  background: #F5C518;
  color: #000;
}

.btn-cashless.inactive {
  background: white;
  color: black;
  border: 1px solid #ffcc00;
}



.claim-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.btn-claim {
  background: #F5C518;
  color: #000;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.111vw;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.3);
}

.btn-claim-ghost {
  border: 2px solid #001B48;
  color: black;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.111vw;
  text-decoration: none;
  transition: all 0.2s;

}

.step-card:hover {
  transform: translateY(-5px);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* // contact form // */


.contact-cn {
  max-width: 94%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: -3%;


}

.contact-form {
  width: 54%;
  padding-top: 0%;

}

.book {
  height: 660px;
  width: 99%;
  border: none;
}



/* Left Content Box with Special Shape */
.content-box {
  flex: 1;
  width: 44%;

  background-size: cover;
  padding: 80px 40px;
  color: white;

}

.content-box h2 {
  font-size: 3.472vw;
  margin-bottom: 1.5%;
  color: #000;
  font-weight: 800;
  margin-top: 4%;
}

.content-box p {
  font-size: 1.181vw;
  line-height: 1.6;
  margin-bottom: 4%;
  color: #000;
}

.agent-card {
  background: linear-gradient(135deg, #001b48 0%, #02457a 100%);
  color: #ffffff;
  padding: 5%;
  border-radius: 20px;

  max-width: 550px;
  margin: 20px auto;
}

.tag-form {
  color: #ffcc00 !important;
  font-size: 0.764vw !important;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 3% !important;
  text-transform: uppercase;
}

.agent-name {
  font-size: 1.4vw;
  margin: 5px 0;
  color: white;
}

.agent-title {

  font-size: 16px !important;
  margin-bottom: 30px;
  color: white !important;
}

.info-list {
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
}

.info-item {
  background: rgba(255, 255, 255, 0.08);
  /* Transparent whitish background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background 0.3s ease;
  margin-bottom: 2%;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.info-item .icon {
  font-size: 18px;
  margin-bottom: 0px;
}

.info-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}


.map {
  position: relative;
  width: 95%;
  max-width: 40%;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeIn 0.3s ease-out;
  padding-top: 10%;
}


/* footer */
.footer {
  color: rgba(256, 256, 256, .6);
}

.brand-box {
  color: #f5c518;
  font-size: 26px;
}

.brand-text {
  color: #fff;
  font-size: 26px;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-2 {
  margin-top: .8rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: .5rem !important;
}

.d-flex {

  display: flex !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.position-absolute {
  position: absolute !important;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.h4,
h4 {
  font-size: 1.5rem;
}

.text-light {
  color: #f8f9fa !important;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.181vw;
  line-height: 1.6;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}

/* .footer-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 28px;
        }
        .footer-grid-inner{
            width: calc(90%/4);
        } */
.footer-grid-inner p {
  line-height: 1.5em;
  color: #ffffffa6;
}

.me-1 {
  margin-right: .25rem !important
}

.bg-dark {
  background-color: #04131f !important;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .7rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.me-3 {
  margin-right: 1rem !important;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(256, 256, 256, .6);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(256, 256, 256, .6);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #fff;
  letter-spacing: 1px;
  box-shadow: none;
  text-decoration: none;
}

.footer .btn.btn-square {
  color: rgba(256, 256, 256, .6);
  border: 1px solid rgba(256, 256, 256, .6);
  border-radius: 0;
}

.footer .btn.btn-square:hover {
  color: #fff;
  border-color: #0567b4;
  background: #0567b4;
}

.footer .form-control {
  color: var(--bs-light);
  border-color: rgba(256, 256, 256, .6);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #FFFFFF;
}


@media screen and (max-width: 900px) {

  /* // Menu // */

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* // Hero Section // */

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 10%;
  }

  .heading-badge {
    font-size: 10px;
  }

  .hero-content h1 {
    font-size: 30px;
    margin-bottom: 4%;
  }

  .reg-badge {
    font-size: 10px;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 4%;
  }

  .hero-btns {
    justify-content: center;

  }

  .btn-yellow {
    font-size: 16px;
  }

  .btn-outline {
    font-size: 16px;
  }

  .hero-image-wrapper img {
    height: auto;
  }

  .sns-features-wrapper {
    flex-direction: column;
    padding: 2% 0% 6%;
  }


  .sns-feature-item {
    border-right: none;
    border-bottom: 1px solid black;
    padding: 4% 0%;
  }


  .sns-feature-title {
    font-size: 30px;
  }

  .sns-read-more {
    font-size: 16px;
  }

  /* // WHY CARE HEALTH // */

  .header-content h2 {
    font-size: 30px;
    margin: 2% 3% 1%;
  }

  .content-sns h3 {
    font-size: 25px;
  }

  .content-sns p {
    font-size: 16px;
  }

  /* // Award-Winning Service // */

  .card-wrapper-sns {
    width: calc(93%/2);
    padding-top: 70%;
  }


  /* // About Care Health Insurance // */

  .about {

    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .about-sns h3 {
    font-size: 30px;
  }

  .about-sns p {
    font-size: 16px;
  }

  .article-heading {
    font-size: 25px !important;
  }

  .article-snippet {
    font-size: 16px !important;
  }

  .article-card {
    width: calc(95%/2);
  }

  .slider-para {
    font-size: 16px;
    max-width: 100%;
  }


  .slider-title {
    font-size: 30px !important;
  }

  .header-content p {
    font-size: 16px;
    max-width: 80%;
  }


  /* // Find the Right Plan for You // */

  .static-plans-grid {
    margin: 40px auto 0px;
  }

  .plan-card {
    width: calc(100%/1);
    margin-bottom: 5%;
  }

  /* // Dept-section // */

  .dept-bg-container {
    padding: 7% 20px 7% 20px;
    width: 94%;
  }


  .dept-section {
    padding: 7% 0% 7%;
  }

  .dept-title {

    font-size: 30px;
  }

  .dept-para {

    font-size: 16px;
    width: 100%;
    padding: 3% 0%;
  }

  .dept-para-2 {
    font-size: 16px;
  }

  .dept-card h3 {
    font-size: 25px;
  }

  .sns-card-heading {
    font-size: 25px;
  }

  /* // claim Section // */
  .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; 
  
}

  .card-back {
    position: relative;
    width: calc(100% / 1) !important;
  }

  .step {
    font-size: 13px;
  }

  .content-box {
    border-top-right-radius: 50px;
  }

  p {
    font-size: 16px;
  }

  .steps-container {
    flex-direction: column;
    padding-top: 0%;
  }

  .step-card h3 {
    font-size: 25px;
  }

  .step-card p {
    font-size: 16px;
  }

  .content-box h2 {
    font-size: 30px;
  }

  .content-box p {
    font-size: 16px;
  }

  .btn-claim {
    font-size: 16px;
    text-align: center;
  }

  .btn-claim-ghost {
    font-size: 16px;
    text-align: center;
  }

  .tag-form {
    font-size: 11px !important;
  }

  .map {
    max-width: 100%;
padding-top: 30%;
  }



  .card-header h3 {
    font-size: 25px;
  }

  .tagline {
    font-size: 12px;
    text-align: left;
  }

  .cards-grid {
    flex-direction: column;
    padding: 10% 0% 4% 3% !important;
  }



  .btn-main,
  .btn-brochure {
    font-size: 16px;

  }

  .btn-brochure {
    font-size: 16px !important;
  }

  .yellow-badge {
    font-size: 10px;
  }

  .green-badge {
    font-size: 10px;
  }

  .price-options span {
    font-size: 10px;
  }

  .card-body li {
    font-size: 16px;
  }

  .content-box {
    width: 100%;
    padding: 80px 0px 0px;
  }

  .toggle-btn {
    font-size: 14px;
  }

  .contact-form {
    width: 100%;
    padding-top: 0%;
  }

  .agent-card {
    max-width: 100%;
  }

  .agent-card {
    padding: 25px;
  }

  .agent-name {
    font-size: 25px;
  }

  .book {
    height: 700px;
    width: 100%;
    border: none;
  }
  
   .getaquote{
   top: 24% !important;
        right: 4% !important;
  }
 
}

@media screen and (max-width: 640px) {

  .hero-container {

    margin-top: 25%;
  }

  .hero-section {
    padding: 0% 3% 15%;
  }



  .hero-content p {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 6%;
  }


  .hero-btns {
    justify-content: center;
    flex-direction: column;
  }

  .sns-features-wrapper {
    flex-direction: column;
    padding: 2% 0% 12%;
  }

  .sns-feature-item {

    padding: 8% 0%;
  }

  /* // WHY CARE HEALTH // */

  .why {
    padding: 12% 0% 0%;
    text-align: center;
  }

  /* // Award-Winning Service // */



  .card-wrapper-sns {
    width: calc(92%/1);
    padding-top: 80%;
  }



  .card-white-sns {
    padding: 8% 5% 0%;
  }

  /* // About Care Health Insurance // */

  .about {

    max-width: 95%;
    margin: 4% auto 0%;
    text-align: center;
  }

  .Backing {
    padding: 3% 3% 7%;
  }

  .article-card {
    width: calc(98%/1);
  }

  .news-flex-container {
    gap: 4vw;
  }

  .partner {
    min-width: 20vw;
    height: auto;

  }

  /* // Find the Right Plan for You // */

  .plan-card {
    width: calc(100%/1);
    margin-bottom: 5%;
  }

  .container {
    margin: 5% auto 3% auto;
  }

  /* // Dept Section // */

  .dept-section {
    padding: 10% 0% 10% !important;
  }

  .dept-bg-container {
    padding: 10% 3% 12%;
    width: 89% !important;
  }

  .dept-card {
    width: 100% !important;
    height: 250px;
  }



  .card {
    padding: 25px 15px;
    width: calc(91%/1);
  }

  .content-box {
    width: 100%;
    padding: 10% 2% 0% 2%;
  }

  .cards-grid {
    display: flex !important;
    padding: 10% 2% 4% 7% !important;
    gap: 0px;
  }

  .mt {
    margin-top: -9%;
  }

  /* // Claim Process // */

  .property-steps {
    padding: 9% 0% 13%;
  }

  .card-back {
    position: relative;
    width: calc(100% / 1) !important;
    margin-bottom: 10%;
    padding: 1% 1% 0% 1% !important;
  }

  .claim-btns {
    flex-direction: column;
    width: 55%;
    margin: 0 auto;

  }

  .cards-grid {
    margin-bottom: -3%;
  }

  .contact-form {
    width: 96%;
    padding-top: 0%;
    margin: 0 auto;
  }

  .contact-cn {
    gap: 0px;
  }

  .static-plans-grid {
    flex-direction: column;
    width: 88%;
  }

  .agent-card {
    max-width: 100%;
  }

  .card-footer {
    flex-direction: column;
  }

  .book {
    height: 820px;
    width: 100%;
    border: none;
  }
   .map {
    max-width: 100%;
padding-top: 30%;
  }

   .getaquote{
   top: 20% !important;
        right: 2% !important;
  }

}



@media screen and (max-width: 480px) {
  .hero-container {

    margin-top: 30%;
  }

  .card-wrapper-sns {
    width: calc(92%/1);
    padding-top: 110%;
  }

  .card {
    padding: 25px 15px;
  }

  .step {
    width: 50px;
    height: 50px;
    font-size: 10px;
  }

  .icon {
    font-size: 20px;
  }
      .getaquote {
        top: 16% !important;
        right: 2% !important;
    }
}

@media (max-width: 1000px) {


  .dept-cards-wrapper {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    padding: 0 10px;
  }

  .dept-section {
    padding: 6% 0 6%;
  }

  .dept-card {
    width: 45%;
    height: auto;
  }

  /* .dept-card {
        width: calc(85%/6);
      } */



  .card-back {
    position: relative;
    width: calc(85% /2);
  }
}

@media screen and (min-width: 1000px) and (max-width: 1300px) {
  .dept-card {
    width: calc(85%/6);
  }

  .dept-section {
    padding: 6% 0 40%;
  }

  .brand img{
    max-width: 70%;
  }


}

@media (min-width: 768px) {
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
}