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 #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;
    z-index: 99999;
}

.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: 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;

    border: 3px solid transparent;
    /* border-radius: 14px; */
    background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ee8122, #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: #ee8122;
    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: #ee8122; */
    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 #ee8122;
    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, #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;
    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;
  }
  
  .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 */

/* 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;
  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, #ee8122, #1c8fcf, #125aa5); */
  background: linear-gradient(90deg, #ee8122, #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, #ee8122, #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, #ee8122, #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, #ee8122, #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, #ee8122, #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, #ee8122, #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;
}


/* webinar css starts */
.webinar-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.webinar-card:hover {
  transform: translateY(-5px);
}

.webinar-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.webinar-content {
  padding: 15px;
}

.webinar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.webinar-date {
  font-size: 14px;
  color: #666;
}
/* webinar css ends */
.orange-green-grd{
background: linear-gradient(to right, orange, green) !important;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.webinar-fee {
  text-align: right;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 5px;
}

.new-price {
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.free-text {
  color: #007bff;
  font-weight: bold;
}

/* paper talk banner */
.webinar-banner-full {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

/* Full width image */
.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(10, 58, 107, 0.6);  */
  /* theme overlay */
}

/* Content center */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
}

/* Text */
.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Button */
.banner-btn {
  background: linear-gradient(90deg, #f97316, #22c55e);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.banner-btn:hover {
  transform: translateY(-2px);
}

.webinar-banner-full {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-bg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {

  .webinar-banner-full {
    height: auto;
  }

  .banner-content h1 {
      font-size: 24px;
  }

  .banner-content p {
      font-size: 14px;
  }

  .banner-bg {
    height: auto;
    object-fit: unset;
    /* object-position: center top;  */
    /* ya try: center right / center left depending image */
  }
}
/* paper talk banner ends */

/* Parent menu item */
.menu-item-has-children {
    position: relative;
}

/* Parent link */
.menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
}

/* Submenu hidden by default */
.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

/* Show submenu on hover */
.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* Submenu items */
.menu-item-has-children .sub-menu li {
    width: 100%;
}

/* Submenu links */
.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #222;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover effect */
.menu-item-has-children .sub-menu li a:hover {
    background: #f5f5f5;
    color: #0a3a6b;
}

/* Optional dropdown icon rotation */
.menu-item-has-children:hover > a i {
    transform: rotate(180deg);
    transition: 0.3s ease;
}

/* blogs css starts */
.webinar-banner-full {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-bg {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.webinar-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
}

.webinar-card:hover {
  transform: translateY(-6px);
}

.webinar-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.webinar-content {
  padding: 20px;
}

.webinar-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  min-height: 78px;
  margin-bottom: 0;
}

.blog-detail-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-full-content {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

@media (max-width: 767px) {
  .banner-bg {
      height: 180px;
  }

  .webinar-img img {
      height: 220px;
  }

  .blog-detail-card {
      padding: 20px;
  }
}
.blog-detail-card h2{
  font-size: 20px;
  font-weight: bold;
}
/* blogs css ends */

.btn-download-pdf {
  background: linear-gradient(135deg, #0a3a6b, #2596be);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.btn-download-pdf:hover {
  background: linear-gradient(135deg, #2596be, #6baa3f);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  color: #fff;
}

/* Shine effect (premium touch) */
.btn-download-pdf {
  position: relative;
  overflow: hidden;
}

.btn-download-pdf::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: 0.5s;
}

.btn-download-pdf:hover::after {
  left: 100%;
}

/* booked webinar */
.booked-webinar-page {
  background: linear-gradient(180deg, #f8fff8 0%, #ffffff 100%);
}

.booked-page-head .small-title {
  display: inline-block;
  color: #f58220;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.booked-page-head h1 {
  font-size: 38px;
  font-weight: 800;
  color: #123524;
  margin-bottom: 10px;
}

.booked-page-head p {
  color: #666;
  font-size: 16px;
}

.booked-webinar-card {
  display: flex;
  gap: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.booked-webinar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.booked-webinar-icon {
  width: 150px;
  min-width: 150px;
  height: 130px;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
}

.booked-webinar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booked-webinar-info {
  width: 100%;
}

.booked-webinar-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: #173c2a;
  margin-bottom: 8px;
}

.booked-desc {
  color: #666;
  font-size: 15px;
  margin-bottom: 12px;
}

.paid-badge {
  background: linear-gradient(135deg, #1fa463, #74c043);
  color: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.booked-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.booked-meta span {
  background: #f4faf5;
  color: #254c35;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 14px;
}

.booked-meta i {
  color: #f58220;
  margin-right: 5px;
}

.booked-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.booked-payment-row div {
  background: #fff8f1;
  padding: 12px 16px;
  border-radius: 14px;
  min-width: 150px;
}

.booked-payment-row small {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}

.booked-payment-row h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #222;
}

.empty-booking-box {
  max-width: 550px;
  margin: auto;
  background: #fff;
  padding: 50px 30px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.empty-booking-box i {
  font-size: 55px;
  color: #f58220;
  margin-bottom: 18px;
}

.empty-booking-box h3 {
  font-weight: 800;
  color: #173c2a;
}

.empty-booking-box p {
  color: #666;
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .booked-webinar-card {
      flex-direction: column;
      padding: 16px;
  }

  .booked-webinar-icon {
      width: 100%;
      height: 190px;
  }

  .booked-page-head h1 {
      font-size: 30px;
  }

  .booked-payment-row div {
      width: 100%;
  }
}

/* orders page */
.orders-page {
  background: linear-gradient(180deg, #f8fff8 0%, #ffffff 100%);
}

.orders-head span {
  display: inline-block;
  color: #f58220;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.orders-head h1 {
  font-size: 38px;
  font-weight: 800;
  color: #123524;
}

.orders-head p {
  color: #666;
  font-size: 16px;
}

.order-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.order-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f58220, #74c043);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.order-content {
  width: 100%;
}

.order-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.order-top h4 {
  font-size: 22px;
  font-weight: 800;
  color: #173c2a;
  margin-bottom: 4px;
}

.order-title {
  color: #555;
  font-size: 15px;
  margin-bottom: 0;
}

.order-desc {
  color: #666;
  font-size: 14px;
  margin: 12px 0;
}

.order-status {
  padding: 7px 16px;
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.order-status.success {
  background: linear-gradient(135deg, #1fa463, #74c043);
}

.order-status.failed {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.order-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

.order-details div {
  background: #fff8f1;
  padding: 12px 14px;
  border-radius: 14px;
}

.order-details small {
  display: block;
  color: #777;
  font-size: 12px;
  margin-bottom: 5px;
}

.order-details strong {
  color: #222;
  font-size: 14px;
  word-break: break-word;
}

.empty-orders {
  max-width: 550px;
  margin: auto;
  background: #fff;
  padding: 50px 30px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.empty-orders i {
  font-size: 55px;
  color: #f58220;
  margin-bottom: 18px;
}

.empty-orders h3 {
  font-weight: 800;
  color: #173c2a;
}

.empty-orders p {
  color: #666;
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .order-details {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .order-card {
      flex-direction: column;
      padding: 18px;
  }

  .order-top {
      flex-direction: column;
  }

  .order-details {
      grid-template-columns: 1fr;
  }

  .orders-head h1 {
      font-size: 30px;
  }
}

/* PSG Registration Popup */
.psg-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 23, 45, 0.72);
  backdrop-filter: blur(6px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.psg-popup-overlay.show {
  display: flex;
}

.psg-popup-box {
  position: relative;
  max-width: 620px;
  width: 94%;
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  /* padding: 14px; */
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ee8122, #1c8fcf, #125aa5) border-box;
  animation: psgPopupZoom 0.45s ease;
}

.psg-popup-box img {
  width: 100%;
  height: 100%;
  /* max-height: 90vh; */
  object-fit: cover;   /* ⭐ fills completely (no gap) */
  display: block;
  border-radius: 20px; /* slightly less than box */
}

.psg-popup-box img:hover {
  transform: scale(1.015);
  filter: brightness(1.04);
}

.psg-popup-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ee8122, #125aa5);
  color: #fff;
  font-size: 26px;
  line-height: 38px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  z-index: 2;
}

.psg-click-badge {
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ee8122, #1c8fcf, #125aa5);
  color: #fff;
  padding: 9px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  z-index: 2;
  animation: psgPulse 1.4s infinite;
  white-space: nowrap;
}

.psg-popup-caption {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #125aa5;
  padding: 12px 5px 4px;
}

@keyframes psgPopupZoom {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes psgPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238,129,34,0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(238,129,34,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238,129,34,0);
  }
}

@media (max-width: 767px) {  

  .psg-click-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .psg-popup-close {
    right: 0px;
    top: 0px;
  }

  .psg-popup-caption {
    font-size: 13px;
  }

  .psg-popup-overlay {
    padding: 14px;
  }

  .psg-popup-box {
    width: 96%;
    max-height: 86vh;
    padding: 10px;
  }

  .psg-popup-box img {
    max-height: 68vh;
  }

}

/* ===== PREMIUM THIN SCROLLBAR ===== */

/* Chrome, Edge, Safari */
.psg-popup-box::-webkit-scrollbar {
  width: 6px;
}

.psg-popup-box::-webkit-scrollbar-track {
  background: transparent;
}

.psg-popup-box::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ee8122, #1c8fcf);
  border-radius: 20px;
}

.psg-popup-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1c8fcf, #125aa5);
}

/* Firefox */
.psg-popup-box {
  scrollbar-width: thin;
  scrollbar-color: #1c8fcf transparent;
}