body {
    font-family: Arial;
    /* background: #f3f4f6; */
    background: linear-gradient(135deg, #fff8f2, #ffffff);
}

/* 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;
    background-color: #f0f3f5;

    
}

.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 #018ed6;
    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 !important;
    /* 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: 300px;
}

/* 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: #018ed6;
    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: #018ed6;
    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 #018ed6;
    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;

    border: 3px solid transparent;
    /* border-radius: 14px; */
    background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #018ed6, #1c8fcf, #125aa5) border-box;

  }
  
  .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: #018ed6;
    font-weight: 600;
  }
  
  /* Text */
  .impact-card p {
    font-size: 16px;
    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); */
    background: linear-gradient(135deg, #125aa5, #eef4ff);
    color: white;
  }
  
  /* Title */
  .why-title {
    font-size: 32px;
    font-weight: 700;
    color: #125aa5;
    line-height: 1.4;
  }
  
  .why-title span {
    /* color: #018ed6; */
    color: #222222bf;
  }
  
  /* Paragraphs */
  .why-text {
    font-size: 16px;
    line-height: 1.8;
    color: #020202;
    margin-bottom: 20px;
    text-align: left;
  }
  
  /* Highlight last para */
  .why-text.highlight {
    border-left: 4px solid #018ed6;
    padding-left: 18px;
    font-weight: 500;
    color: #020202;
  }
  
  /* 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, #018ed6, #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;
    pointer-events: none;
    z-index: 0;
  }
  
  /* 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: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    text-transform:capitalize !important;
  }
  
  .footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #018ed6;
    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, #018ed6, #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: #018ed6;
  }
  
  /* 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: #018ed6;
  }
  
  /* 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: #018ed6;
    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 */

/* what we do new css  */
.panels {
  display: flex;
  gap: 0; /* no gap */
  height: 400px;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  
}

/* Panel */
.panel {
  flex: 1; /* ⭐ MOST IMPORTANT FIX */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

/* Divider line */
.panel::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: rgba(255,255,255,0.2);
}

.panel:last-child::after {
  display: none;
}

/* Background image */
.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
  z-index: 0;
}

/* Hover image effect */
.panel:hover .panel-bg {
  transform: scale(1.05);
  filter: blur(2px) brightness(0.8);
}

/* Expand effect */
.panels:hover .panel {
  flex: 0.8;
}

.panel:hover {
  flex: 2;
  z-index: 2;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    to top,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.1),
    transparent
  ); */

  /* Default = light bluish overlay */
  background: linear-gradient(
    to top,
    rgba(18, 90, 165, 0.45),   /* bluish tone */
    rgba(18, 90, 165, 0.15),
    transparent
  );

  transition: 0.4s ease;
}

/* Darker on hover */
.panel:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    transparent
  );
}

/* Content container */
.content {
  position: absolute;
  inset: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
}

/* Title → always visible (bottom aligned) */
.content h5 {
  position: absolute;
  /* bottom: 25px; */
  top:50px;
  left: 25px;
  right: 25px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;

  /* background: rgba(0, 70, 140, 0.45);  */
  /*
  background: rgba(126, 126, 126, 0.45);
  padding: 6px 10px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  */
}

/* Description → hidden initially */
.content p {
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  font-size: 14px;

  /* background: rgba(0, 70, 140, 0.45);  */
  /*
  background: rgba(126, 126, 126, 0.45);
  padding: 6px 10px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  */

}

/* On hover → push title up */
.panel:hover .content h5 {
  bottom: 100px;
}

/* On hover → show description */
.panel:hover .content p {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {

  .panels {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .panel {
    flex: 1 !important;
    height: 300px;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
  }

  /* FIX IMAGE REPEAT ISSUE */
  .panel-bg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  /* Remove blur/zoom for mobile */
  .panel-bg,
  .panel:hover .panel-bg {
    filter: none !important;
    transform: none !important;
  }

  /* Overlay */
  .overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.2),
      transparent
    );
  }

  /* Content layout */
  .content {
    padding: 15px;
  }

  /* Title */
  .content h5 {
    position: absolute;
    bottom: 80px;
    left: 15px;
    right: 15px;
    font-size: 16px;

    

  }

  /* Description always visible */
  .content p {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;

    opacity: 1;
    transform: none;
    font-size: 13px;
    line-height: 1.4;
  }

}

@media (min-width: 769px) and (max-width: 1150px) {
  .content h5:hover {
    position: absolute !important;
    bottom: 220px !important;
    left: 15px;
    right: 15px;
    font-size: 16px;
  }
}
/* what we do new css ends */

/* memebrship page css */
.accordion-button {
  font-weight: 600;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  /* background: linear-gradient(90deg, #018ed6, #1c8fcf, #125aa5); */
  background: linear-gradient(90deg, #018ed6, #399f66, #0f8c45);

  color: #fff;
}

.accordion-body {
  font-size: 16px;
  line-height: 1.6;
}

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.form-section h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.form-control {
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #1c8fcf;
  box-shadow: 0 0 0 0.2rem rgba(28,143,207,0.15);
}

.payment-box {
  text-align: center;
  background: #f8fbff;
  border-radius: 10px;
  padding: 20px;
}

.price {
  color: #125aa5;
  font-size: 21px;
  font-weight: bold;
}

.btn-submit {
  background: linear-gradient(90deg, #018ed6, #1c8fcf, #125aa5);
  border: none;
  padding: 12px 30px;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* membership page css ends */

/* about page css starts */
.about-hero {
  background: linear-gradient(90deg, #018ed6, #1c8fcf, #125aa5);
  color: #fff;
  padding: 80px 0;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.about-hero p {
  font-size: 18px;
  margin-top: 10px;
}

.mission-section {
  /* background: #f8fbff; */
  padding: 60px 0;
}

.mission-box {
  background: #fff;
  padding: 25px;
  /* border-radius: 12px; */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin-top: 20px;

  border: 3px solid transparent;
    border-radius: 12px;
    background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #018ed6, #1c8fcf, #125aa5) border-box;


}

.mission-box h3 {
  margin-bottom: 10px;
  color: #125aa5;
}

.about-cta {
  /* background: #125aa5; */
  color: #222;
  padding: 60px 0;
}

.btn-join {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #018ed6, #1c8fcf);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
/* about page css ends */

.error {
  /* border: 2px solid red !important; */
  border-bottom: 2px solid #fc8181 !important;
}


.dancing-script-title {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.section-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #0f8a43, #018ed6, #125aa5);
  margin: 60px 0;
  border-radius: 2px;
}

.section {
  position: relative;
  padding: 80px 0;
}

.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}


/* 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 */


/* logged in drop down */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  /* top: 45px; */
  top: 100%;
  background: #fff;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

.user-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

.user-dropdown .dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Hover open */
.user-dropdown:hover .dropdown-menu {
  display: block;
}
