body {
    font-family: Arial;
    /* background: #f3f4f6; */
}

/* NAVBAR */
/* .main-nav{
background:white;
padding:10px 0;
} */
.logo {
    /* font-weight:bold;
background:#2c4c7c;
color:white;
padding:6px 14px; */
}

.top-links li {
    margin-right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
}

.top-links li.active {
    background: #ffd200;
}

.nav-item {
    margin-right: 20px;
    cursor: pointer;
}

/* LOGIN */
.login-btn {}

/* SECOND NAV */
.sub-nav {
    background: #d6dbe6;
    padding: 12px 0;
}

.menu-left span {
    margin-right: 22px;
    font-weight: 500;
}

/* HERO */
.hero-card {
    /* background: #b8d1db; */
    background: linear-gradient(135deg, #fff7ed, #eef4ff);
    /* padding: 40px; */
    border-radius: 25px;
    margin-top: 30px;
}

.hero-text h1 {
    font-size: 40px;
    color: #125aa5;
}

.hero-text p {
    font-size: 18px;
    color: #555;
}

.hero-buttons {
    margin-top: 20px;
}

.apply-btn {
    background: #125aa5;
    color: white;
    border-radius: 25px;
    padding: 7px 20px;
}

.apply-btn:hover {
    background: #1c8fcf;
    color: #fff;
}

.login-btn {
    border: 2px solid #ee8122;
    background: white;
    border-radius: 20px;
    padding: 6px 14px;
    /* font-weight: 500; */
}

.login-btn-bold {    
    font-weight: 600;
}

.login-btn:hover {
    border: 2px solid #125aa5;
    color: #222;
}


.know-btn {
    border: 2px solid #2c3e50;
    border-radius: 25px;
    padding: 10px 20px;
    margin-left: 10px;
}

.hero-img{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* .hero-img img {
    width: 100%;
} */

.hero-img img{
    width:100%;
    height:100%;
    object-fit:cover;          /* important: fills area properly */
    border-radius:30px;        /* soft elegant curve */
}

/* FLOATING CONTACT */
.floating-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.floating-icons i {
    padding: 10px;
    font-size: 18px;
    color: #2c3e50;
}

/* PRODUCT */
.product-section {
    margin-top: 40px;
    background: white;
    padding: 30px;
}

.product {
    text-align: center;
}

.product i {
    font-size: 28px;
    color: #2c4c7c;
    margin-bottom: 10px;
}

.product p {
    color: #2c4c7c;
}

/* menu css starts */
.main-nav {
    /* background:#fff; */
    /* background: linear-gradient(135deg, #fff7ed, #eef4ff); */
    padding: 16px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 40px;
}

.logo img {
    max-width: 250px;
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.desktop-menu li {
    margin-right: 26px;
    position: relative;
}

.desktop-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    position: relative;
    display: inline-block;
    /* important fix */
    padding-top: 15px;
}

/* HOVER UNDERLINE */
.desktop-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ee8122;
    transition: 0.3s;
}

.desktop-menu a:hover::after {
    width: 100%;
}

.submenu li a {
    display: inline-block;
    /* padding:8px 18px; */
    position: relative;
}

.submenu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ad7c44;
    transition: 0.3s;
}

.submenu li a:hover::after {
    width: 80%;
}

/* DESKTOP SUBMENU */
.dropdown {
    position: relative;
    padding-bottom: 10px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    display: none;
    min-width: 200px;
    z-index: 1000;
}

.submenu li {
    padding: 8px 18px;
}

.submenu li a {
    color: #333;
    display: block;
}

.dropdown:hover .submenu {
    display: block;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE MENU */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.4s;
    z-index: 9999;
    /* padding-top:80px; */
}

.menu-overlay.active {
    right: 0;
}

.menu-list {
    list-style: none;
    padding: 0 25px;
}

.menu-list li {
    border-bottom: 1px solid #e5e5e5;
}

.menu-list a,
.mobile-sub-toggle {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    color: #222;
    text-decoration: none;
    cursor: pointer;
}

/* MOBILE SUBMENU */
.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.mobile-submenu li {
    border: none;
}

.mobile-submenu a {
    padding: 10px 0;
    font-size: 16px;
}

/* CLOSE BUTTON */
.overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid #e5e5e5;
}

.overlay-logo {
    margin-right: auto;
}

.close-menu {
    /* position:absolute;
    top:20px;
    right:25px; */
    font-size: 28px;
    background: none;
    border: none;
    margin-left: auto;
    cursor: pointer;
}

.hero-text {
    padding: 20px;
}

/* what we do css */
.section-title {
    font-weight: 700;
    color: #125aa5;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ee8122;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  /* Card */
  .wwd-card {
    padding: 30px 20px;
    border-radius: 16px;
    /* background: linear-gradient(145deg, #ffffff, #f5f9ff); */
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .wwd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  
  /* Icon */
  .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c8fcf, #125aa5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
  }
  
  /* Text */
  .wwd-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #125aa5;
  }
  
  .wwd-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  
  /* Mobile spacing */
  @media (max-width: 576px) {
    .wwd-card {
      padding: 25px 15px;
    }
  }

/* what we do css ends */
/* legacy css starts */
/* Section Background */
.legacy-section {
    background: linear-gradient(135deg, #0d2c54, #125aa5);
    color: #fff;
  }
  
  /* Tag */
  .legacy-tag {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.7;
  }
  
  /* Title */
  .legacy-title {
    font-weight: 700;
    font-size: 32px;
  }
  
  /* Quote */
  .legacy-quote {
    font-family: "Georgia", serif;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid #ee8122;
    padding-left: 20px;
  }
  
  /* Sub */
  .legacy-sub {
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* Description */
  .legacy-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
  }
  
  /* Image Box */
  .legacy-image-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Doctor Cards */
  .doctor-card {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    text-align: center;
    width: 160px;
    transition: 0.3s;
  }
  
  .doctor-card:hover {
    transform: translateY(-5px);
  }
  
  /* Images */
  .doctor-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  /* Text */
  .doctor-name {
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .doctor-role {
    font-size: 12px;
    opacity: 0.7;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .legacy-title {
      font-size: 26px;
    }
  
    .legacy-quote {
      font-size: 18px;
    }
  
    .legacy-image-box {
      flex-direction: column;
      align-items: center;
    }
  }
/* legacy css ends */

/* impact numbers css */
.impact-section {
    /* background: #f7f9fc; */
  }
  
  /* Card */
  .impact-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .impact-card:hover {
    transform: translateY(-5px);
  }
  
  /* Number + suffix inline */
  .number-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
  }
  
  /* Number */
  .impact-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #125aa5;
    margin: 0;
  }
  
  /* + / M+ */
  .suffix {
    font-size: 18px;
    color: #ee8122;
    font-weight: 600;
  }
  
  /* Text */
  .impact-card p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.4;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .impact-card h2 {
      font-size: 28px;
    }
  }
/* impact number css ends */

/* why us starts */
/* Section background */
.why-section {
    background: linear-gradient(135deg, #fff7ed, #eef4ff);
  }
  
  /* Title */
  .why-title {
    font-size: 32px;
    font-weight: 700;
    color: #125aa5;
    line-height: 1.4;
  }
  
  .why-title span {
    color: #ee8122;
  }
  
  /* Paragraphs */
  .why-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: left;
  }
  
  /* Highlight last para */
  .why-text.highlight {
    border-left: 4px solid #ee8122;
    padding-left: 18px;
    font-weight: 500;
    color: #222;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .why-title {
      font-size: 24px;
    }
  
    .why-text {
      font-size: 15px;
    }
  }
/* why us ends */

/* membership css */

/* Background */
.cta-section {
    /* background: linear-gradient(135deg, #e6f7f6, #f0fbfb); */
}
  
  /* Title */
  .cta-title {
    font-size: 30px;
    font-weight: 700;
    color: #125aa5;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Sub text */
  .cta-sub {
    font-size: 16px;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* Pills */
  .cta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .cta-pills span {
    background: #ffffff;
    border: 1px solid #dff3f2;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #125aa5;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .cta-pills span:hover {
    background: #125aa5;
    color: #fff;
  }
  
  /* Button */
  .cta-btn {
    display: inline-block;
    background: #125aa5;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .cta-btn:hover {
    background: #0d4c8a;
    transform: translateY(-2px);
  }
  
  /* Note */
  .cta-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cta-title {
      font-size: 24px;
    }
  
    .cta-sub {
      font-size: 15px;
    }
  }

/* membership css ends */

/* footer css starts */
/* Footer Base */
.footer-section {
    background: linear-gradient(135deg, #0d2c54, #125aa5);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  /* Top Gradient Line */
  .footer-top-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #ee8122, #1c8fcf, #125aa5);
  }
  
  /* Subtle texture effect */
  .footer-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    top: 0;
    left: 0;
    opacity: 0.2;
  }
  
  /* Titles */
  .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  /* Text */
  .footer-text {
    font-size: 14px;
    color: #d0d8e2;
    max-width: 420px;
  }
  
  .footer-copy {
    font-size: 13px;
    color: #9fb3c8;
  }
  
  /* Links */
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #d0d8e2;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
  }
  
  .footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ee8122;
    left: 0;
    bottom: -2px;
    transition: 0.3s;
  }
  
  .footer-links a:hover::after {
    width: 100%;
  }
  
  /* SOCIAL ICONS CENTERED */
  .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
    text-decoration: none;
  }
  
  .footer-social a:hover {
    background: linear-gradient(135deg, #ee8122, #1c8fcf);
    transform: translateY(-4px) scale(1.05);
  }
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #125aa5;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .back-to-top:hover {
    background: #ee8122;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-title {
      margin-top: 20px;
    }
  }
/* footer css ends */

/* events section starts */
/* Section */
.events-section {
    /* background: #ffffff; */
    background: linear-gradient(135deg, #fff7ed, #eef4ff);
  }
  
  /* Title */
  .events-title {
    font-size: 30px;
    font-weight: 700;
    color: #125aa5;
  }
  
  .events-title span {
    color: #ee8122;
  }
  
  /* Card Base */
  .event-card {
    background: linear-gradient(135deg, #125aa5, #1c8fcf);
    color: #fff;
    padding: 30px 25px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .event-card:hover {
    transform: translateY(-6px);
  }
  
  /* Light version */
  .event-card.light {
    background: #f7f9fc;
    color: #222;
  }
  
  /* Tag */
  .event-tag {
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
  }
  
  .event-card.light .event-tag {
    background: #e6f0fa;
    color: #125aa5;
  }
  
  /* Heading */
  .event-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  /* Meta */
  .event-meta {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
  }
  
  /* Button */
  .event-btn {
    display: inline-block;
    background: #ee8122;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .event-btn:hover {
    background: #d96f1c;
  }
  
  /* Outline button */
  .event-btn.outline {
    background: transparent;
    border: 2px solid #125aa5;
    color: #125aa5;
  }
  
  .event-btn.outline:hover {
    background: #125aa5;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .events-title {
      font-size: 24px;
    }
  }
/* events section ends */


/* MOBILE */
@media(max-width:768px) {
    .hero-card {
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .menu-left {
        display: none;
    }

    .floating-icons {
        right: 10px;
    }
}

/* MOBILE */
@media (max-width:991px) {
    .desktop-menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .logo img {
        max-width: 165px;
    }
}

/* menu css ends */