* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
}

h1, h2 {
  font-weight: 800;
}

p {
  font-weight: 400;
}


#scroll-cta {
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-100px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

#scroll-cta.show {
  opacity: 1;
  pointer-events: auto;
}

.cta-btn {
  background: linear-gradient(135deg, #e53935, #ff7a18);
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.45);
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: linear-gradient(135deg, #ff7a18, #e53935);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(229, 57, 53, 0.6);
}


/* MOBILE CTA BUTTON */
@media (max-width: 768px) {
  .cta-btn {
    width: auto;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mob-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
    color: #07164c;
}
.mob-section span {
    color: #07164c;
}

}







/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245,245,243,0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
} 

.logo {
  font-weight: 700;
  letter-spacing: 1.2px;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  font-size: 14px;
  color: #111;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;            /* space between menu items */
}

.header-actions a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #09174e;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* underline effect like menu */
.header-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0a58ca;   /* brand color */
  transition: width 0.3s ease;
}

.header-actions a:hover {
  color: #0a58ca;
}

.header-actions a:hover::after {
  width: 100%;
}

.nav .whatsapp {
  padding: 12px 22px;
  border-radius: 10px;
  background: #25d366; /* WhatsApp Green */
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.nav .phone {
 padding: 12px 22px;
  border-radius: 10px;
    background: #e10d01;
     color: #fff;

}

.nav .logins {
  background: #016fe9;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: inline-block;
    text-align: center;
}

.nav .whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: #fff;
}
.nav .logins {
  background: linear-gradient(135deg, #e53935, #ff7a18);
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.45);
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}
.nav .logins:hover {
  background: linear-gradient(135deg, #ff7a18, #e53935);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(229, 57, 53, 0.6);
}







.nav .phone:hover {
  background: #44ec9f;
    color: #09174e;
}


.nav a i {
  margin-right: 8px;
  font-size: 14px;
}






.header-web
  {
    display: block;
  }
  .header-mob
  {
    display: none;
  }

@media (max-width: 768px) {

  .header-web
  {
    display: none;
  }
  .header-mob
  {
    display: block;
  }
  .header {
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
  }

  .logo img {
    width: 95px;
  }

  /* RIGHT ICONS */
  .mobile-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .login-btn,
  .menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }

  .menu-btn{
background: #07164c;
  }
.whatsapp-btn-bg{
 background: #25d366;
}
.login-btn-bg-2{
 background: #cb0202;
}


  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px;
    gap: 10px;
    background: #f9f7e8;
    border-top: 1px solid #ddd;
  }

  .mobile-menu a {
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #07164c;
    font-weight: 600;
    font-size: 14px;
  }

  .mobile-menu .call {
    background: linear-gradient(135deg, #e53935, #ff7a18);
    color: #fff;
  }

  /* SHOW MENU */
  .mobile-menu.active {
    display: flex;
  }
}

















.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SECTION BACKGROUND IMAGE */
.hero-bg {
  position: absolute; /* IMPORTANT */
  inset: 0;
  background: url("images/hospital1.webp") center/cover no-repeat;
  z-index: 1;
}

/* SLIDES */
.slides {
  position: relative;
  height: 100%;
  z-index: 2;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* CONTENT */
.hero-content {
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
    margin-bottom: 300px;
    margin-top: 30px;
}



/* MOBILE ONLY */
@media (max-width: 768px) {

  .hero-slider {
    height: 90vh;
  }

  .hero-bg {
    background: url("images/Mob-Banner.webp") center/cover no-repeat;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0px;
    margin-top: -180px;
  }
}




/* GRADIENT BUTTON */
.btn.light {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #ff3c00, #ff8a00);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(255, 60, 0, 0.35);
  transition: all 0.3s ease;
}
.btn.light:hover {
  background: #273a76;
}







.emergency-offer-bg {
  position: relative;
  background-image: url("images/emergency-bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* ADD THIS */
.offer-overlay {
  width: 100%;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
}

.offer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TEXT STYLES */
.tagline {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offer-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 40px;
}

.price-box h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}



.per-day {
  font-size: 18px;
  margin-bottom: 10px;
}

.plans {
  font-size: 16px;
}

/* ADD THIS – FORCE WHITE ONLY IN THIS SECTION */
.emergency-offer-bg,
.emergency-offer-bg p,
.emergency-offer-bg h2,
.emergency-offer-bg h3,
.emergency-offer-bg span,
.emergency-offer-bg strong {
  color: #ffffff;
}


/* Add this to your CSS */
.animated-section {
  padding: 60px 20px 20px 20px;
}


/* Add this to your CSS */

.animated-section2 {  
  padding: 110px 20px;
  position: relative;
  background-image: url("images/Cashless.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}


.animated-section2 h2 {
  font-size: 3.1rem;
  font-weight: bold;
    text-align: center;
    color: #fff;
}



.animated-section3 {
    background-color: #f9f7e8;
  text-align: center;
  padding: 50px 20px;
}
.animated-section3 p {
  font-size: 15px;
  font-weight: bold;
    padding:0px 20%;
    text-align: center;
    color: #07164c;
}
.animated-section3 img{
    padding: 0px 280px;
}

/* Section */
.animated-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.animated-section h2 {
  text-align: center;
  font-size: 40px;
  color: #07164c;  
  font-weight: bold;
  margin-bottom: 10px;
}

.animated-section h3 {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}
.test-box h5{
  text-align: center;
  font-size: 20px;
  text-decoration: underline;
  color: #fd751a;
}
.test-list {
  column-count: 2;
  margin-top: 20px;
}


/* MOBILE */
@media (max-width: 768px) {


  .price-box h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

  .animated-section3 p{
    padding: 0px;
  }
  .animated-section h2{
    font-size: 2.1rem;
  }
  
  .animated-section2 {
    padding: 50px 20px;
}
  .animated-section2 h2{
    font-size: 2.1rem;
    padding: 0px;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .emergency-health-wrapper {
    flex-direction: column;
  }

  .test-list {
    columns: 1;
  }
}












.yt-center-section{
  width:100%;
  padding:40px 0;
  text-align:center;
}

/* Center box width */
.yt-video{
  position:relative;
  width:70%;          /* change size here */
  margin:auto;
  padding-top:39%;    /* height control */
  cursor:pointer;
  overflow:hidden;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.yt-video img,
.yt-video iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
  object-fit:cover;
}

/* Play button */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:85px;
  height:60px;
  background:rgba(0,0,0,0.7);
  border-radius:14px;
}
.play-btn:after{
  content:'';
  position:absolute;
  left:33px;
  top:19px;
  border-left:22px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}
















.emergency-health-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* MAIN BOX */
.video-box {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE & VIDEO */
.video-bg-img,
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

/* hide video initially */
.video-bg {
  opacity: 0;
}

/* CONTENT */
.video-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.video-content h4 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 25px;
  border-left: 5px solid #0d6efd;
  padding-left: 12px;
}

.video-content ul li{
  margin-bottom: 20px;
  font-size: 18px;
}

/* hover effect */
.video-box:hover .video-bg {
  opacity: 1;
}

.video-box:hover .video-bg-img {
  opacity: 0;
}

/* mobile */
@media (max-width: 768px) {
  .emergency-health-wrapper {
    grid-template-columns: 1fr;
  }

  .video-box {
  height: auto;
}
}














































/* ================= FORCE FEATURE GRID ================= */
.feature-section {
  padding: 80px 5%;
  background: #fff;
}

.feature-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 30px;
  width: 100%;
}


/* ===== 3 cards row 1 ===== */
.feature-grid .feature-card:nth-child(1),
.feature-grid .feature-card:nth-child(2),
.feature-grid .feature-card:nth-child(3) {
  grid-column: span 2 !important;
}

/* ===== 2 cards row 2 (centered) ===== */
.feature-grid .feature-card:nth-child(4) {
  grid-column: 2 / span 2 !important;
}

.feature-grid .feature-card:nth-child(5) {
  grid-column: 4 / span 2 !important;
}

/* ================= CARD ================= */
.feature-card {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  width: 100% !important;
}

/* Image */
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video */
.card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

/* Content */
.card-content {
  color: #fff;
  max-width: 80%;
  transition: all 0.4s ease;
}

.card-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.card-content p,
.card-content span {
  font-size: 17px;
  opacity: 0.9;
}

/* Hover content */
.hover-content {
  position: absolute;
  opacity: 0;
  transform: translateY(15px);
}

/* Hover effects */
.feature-card:hover .card-video {
  opacity: 1;
}

.feature-card:hover .default-content {
  opacity: 0;
}

.feature-card:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
}





/* ================= RESPONSIVE ================= */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 991px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
    
    .animated-section3 img{
    padding: 20px;
}

    
}












.equipment-section {
  padding: 80px 20px;
  background: #fff;
}

.equipment-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
    color: #07164c;
}

.equipment-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.equipment-card h3 {
 font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #07164c;
  text-align: center;
  margin-top: 10px;
}

.equipment-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.equipment-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.equipment-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.equipment-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-primary {
  background: #000;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}



.equipmentSwiper {
  position: relative;
}

/* Arrow container */
.equipment-button-next,
.equipment-button-prev {
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* FORCE arrow icon */
.equipment-button-next::after,
.equipment-button-prev::after {
  font-family: "swiper-icons" !important;
  font-size: 18px;
  color: #ffffff !important;
}

/* Arrow directions */
.equipment-button-next::after {
  content: 'next';
}

.equipment-button-prev::after {
  content: 'prev';
}

/* Desktop position (inside) */
.equipment-button-prev {
  left: 2px;
}

.equipment-button-next {
  right: 2px;
}

/* Mobile adjust */
@media (max-width: 768px) {
  .equipment-button-prev {
    left: 3px;
  }
  .equipment-button-next {
    right: 3px;
  }
}



/* MOBILE */
@media (max-width: 768px) {
  .equipment-title {
    
  margin-bottom: 15px;
    font-size: 28px;
  }
}







/* ===== Awards Section ===== */
.hospital-awards-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.hospital-awards-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #07164c;
  margin-bottom: 40px;
}

/* Swiper container */
.hospitalAwardsSwiper {
  position: relative;
  padding-bottom: 0; /* no pagination, so no extra padding */
}

/* Award Card */
.hospital-award-card {
  height: 450px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.hospital-award-card:hover {
  background: #e0f7fa;
  transform: translateY(-5px);
}

.hospital-award-card img {
  width: 130px;
  margin-bottom: 15px;
}

.hospital-award-card h3 {
  font-size: 22px;
  color: #07164c;
  margin: 0;
}

.hospital-award-card span {
  font-size: 15px;
  color: #414042;
  line-height: 1.4;
}

.hospital-award-card strong {
  color: #006fe8;
}

/* ===== SWIPER ARROWS ===== */
.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

/* Arrow icon color and size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "swiper-icons";
  font-size: 20px;
  color: #ffffff !important;
}

/* Desktop position inside slider */
.swiper-button-prev {
  left: 15px;
}

.swiper-button-next {
  right: 15px;
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hospital-awards-title {
    font-size: 28px;
  }

  .swiper-button-prev {
    left: 6px;
  }

  .swiper-button-next {
    right: 6px;
  }
}





.uh-video-section {
  background: #fff;
  padding: 60px 0;
}

.uh-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

/* LEFT CONTENT */
.uh-content {
  flex: 1;
  color: #293976;
}

.uh-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #293976;
  margin-bottom: 20px;
}

.uh-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.uh-content p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
    color: #555;
}

/* RIGHT VIDEO */
.uh-video {
  flex: 1;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.uh-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
}

.footer-section{
  background-color: #07164c;
  text-align: center;
  color: #fff;
  padding: 25px 10px; 
}
.footer-section a {
  color: #46eb9f;
  text-decoration: none;

}


@media (max-width: 768px) {
.uh-content h2{
  font-size: 2.1rem;
}
  .hospital-awards-title{
    font-size: 2.1rem;
  }
  .uh-container {
    flex-direction: column;
    text-align: center;
  }

  .uh-content p {
    max-width: 100%;
  }

  .uh-video iframe {
    height: 220px;
  }

  .uh-line {
    margin-left: auto;
    margin-right: auto;
  }
}



.locations-web {
  padding: 60px 20px;
  background: #fff;
}
.section-title{
   color:  #293976;
font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 15px;
    text-align: center;
    }
.section-subtitle{
    margin-bottom: 50px;
    font-size: 15px;
    color: #555;
    text-align: center;
    
}
  


.web-location-wrap {
  max-width: 450px;
  margin: auto;
  display: block;
}

.web-location-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.web-location-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.web-location-content {
  padding: 22px;
}

.web-location-content h3 {
  font-size: 20px;
  color: #07164c;
}

.web-location-content p {
  font-size: 15px;
  line-height: 1.6;
}

.web-location-content .phone {
  font-weight: 600;
  margin: 10px 0;
}

.web-location-content a {
  color: #006fe8;
  font-weight: 600;
}


.locations-mobile {
  padding: 40px 15px 25px 15px;
  background: #f5f8ff;
}

.mobile-location-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.mobile-location-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mobile-location-content {
  padding: 20px;
}

.mobile-location-content h3 {
  font-size: 18px;
  color: #07164c;
}

.mobile-location-content .phone {
  font-weight: 600;  
  margin: 10px 0;
}


/* SHOW ONLY WEB */
@media (max-width: 768px) {
  .locations-web { display: none; }
}

/* SHOW ONLY MOBILE */
@media (min-width: 769px) {
  .locations-mobile { display: none; }
}

/* ================= SURGERY CAMPAIGN LANDING SYSTEM ================= */
.campaign-container-section {
  padding: 110px 5% 50px 5%;
  background: radial-gradient(circle at top left, #ffffff, #f7f9fc);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.campaign-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  align-items: center;
}

/* --- Left Panel: Hero --- */
.campaign-hero-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.circular-mask-container {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #d4af37, #aa7c11);
  box-shadow: 0 20px 45px rgba(170, 124, 17, 0.25);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-mask-container:hover {
  transform: scale(1.03) rotate(2deg);
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

.gold-frame-border {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed #aa7c11;
  border-radius: 50%;
  animation: rotate 60s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.trust-title {
  font-size: 2.2rem;
  color: #07164c;
  font-weight: 800;
  margin-bottom: 10px;
}

.highlight-orange {
  color: #eb5f21;
}

.community-thank-you {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  font-weight: 500;
}

/* GIFT OF MOVEMENT BANNER */
.gift-movement-banner {
  position: relative;
  background: linear-gradient(135deg, #a31d1d, #730f0f);
  border: 3px solid #d4af37;
  border-radius: 12px;
  padding: 15px 35px;
  box-shadow: 0 15px 35px rgba(163, 29, 29, 0.35);
  margin: 25px auto;
  max-width: 360px;
  width: 100%;
}

.banner-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.gift-word {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 2px 4px 6px rgba(0,0,0,0.3);
}

.movement-word {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 2px;
  margin-top: 5px;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.3);
}

/* Decorative Ribbon Bows */
.ribbon-left {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 32px;
  height: calc(100% + 22px);
  background: linear-gradient(to bottom, #ffe082, #d4af37, #b28e24);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
  filter: drop-shadow(2px 5px 4px rgba(0,0,0,0.3));
  z-index: 1;
}

.ribbon-bow-right {
  position: absolute;
  right: -25px;
  top: -25px;
  width: 70px;
  height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 40 C20 15, 10 50, 48 48 Z" fill="%23d4af37" stroke="%23b08d2b" stroke-width="1.5"/><path d="M50 40 C80 15, 90 50, 52 48 Z" fill="%23d4af37" stroke="%23b08d2b" stroke-width="1.5"/><path d="M48 48 C35 70, 25 80, 20 85 C30 80, 42 75, 49 52 Z" fill="%23d4af37" stroke="%23b08d2b" stroke-width="1.5"/><path d="M52 48 C65 70, 75 80, 80 85 C70 80, 58 75, 51 52 Z" fill="%23d4af37" stroke="%23b08d2b" stroke-width="1.5"/><circle cx="50" cy="45" r="7" fill="%23ffe89e" stroke="%23aa7c11" stroke-width="1.5"/></svg>') no-repeat center/contain;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.25));
  z-index: 3;
}

.offer-validity {
  font-size: 1rem;
  color: #333;
  margin-top: 15px;
}

.date-highlight {
  color: #07164c;
  border-bottom: 2px solid #eb5f21;
  padding-bottom: 2px;
}

/* --- Right Panel: Surgery Offers --- */
.campaign-offers-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.surgery-offer-card {
  display: flex;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.surgery-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7, 22, 76, 0.1);
  border-color: #cbd5e1;
}

.card-left {
  flex: 1.3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-right {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.surgery-offer-card:hover .card-right img {
  transform: scale(1.05);
}

.surgery-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.surgery-icon-wrap {
  width: 54px;
  height: 54px;
  background: #07164c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

.surgery-icon-wrap svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.surgery-title {
  font-size: 1.35rem;
  color: #b84a16;
  font-weight: 800;
  line-height: 1.25;
}

.surgery-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.surgery-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.surgery-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-icon {
  color: #d4af37;
  font-size: 1rem;
}

/* 3D Price Sticker Badges */
.price-sticker-wrap {
  display: flex;
  margin-top: auto;
}

.price-sticker {
  position: relative;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px 0 12px 12px;
  box-shadow: 4px 6px 15px rgba(229, 57, 53, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.original-price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.original-price del {
  text-decoration-color: #fff;
  text-decoration-thickness: 1.5px;
}

.offer-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffeb3b;
  line-height: 1;
  margin-top: 3px;
}

.price-detail {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
}

/* Page peel sticker curl effect */
.sticker-curl {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent transparent #990000 transparent;
  box-shadow: -2px 2px 4px rgba(0,0,0,0.15);
  border-radius: 0 0 0 6px;
}

/* --- Callback Booking Wrapper --- */
.booking-section-wrapper {
  margin-top: 60px;
  background: #07164c;
  border-radius: 24px;
  padding: 50px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(7, 22, 76, 0.25);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.booking-info-block h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.booking-info-block p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.trust-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkmark-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkmark-item i {
  color: #44ec9f;
  font-size: 1.3rem;
  margin-top: 2px;
}

.checkmark-item span {
  font-size: 0.95rem;
  color: #e2e8f0;
}

.checkmark-item strong {
  color: #fff;
}

.booking-form-block {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 20px;
  position: relative;
}

.consultation-form h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.consultation-form p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 25px;
}

.form-row {
  margin-bottom: 15px;
}

.form-row-split {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row-split .form-group {
  flex: 1;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder {
  color: #94a3b8;
}

.form-group select option {
  background: #07164c;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #eb5f21;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 10px rgba(235, 95, 33, 0.2);
}

.booking-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #eb5f21, #ff7a18);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(235, 95, 33, 0.3);
  margin-top: 10px;
}

.booking-submit-btn:hover {
  background: linear-gradient(135deg, #ff7a18, #eb5f21);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(235, 95, 33, 0.45);
}

/* Success Message inside form */
.booking-success-message {
  text-align: center;
  padding: 40px 10px;
}

.success-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(68, 236, 159, 0.15);
  color: #44ec9f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 2.2rem;
}

.booking-success-message h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.booking-success-message p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ================= MOBILE ADAPTABILITY ================= */
@media (max-width: 991px) {
  .campaign-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .campaign-container-section {
    padding: 90px 15px 30px 15px;
  }
  
  .trust-title {
    font-size: 1.8rem;
  }
  
  .gift-movement-banner {
    padding: 12px 25px;
  }
  
  .gift-word {
    font-size: 2.8rem;
  }
  
  .movement-word {
    font-size: 1.1rem;
  }
  
  .surgery-offer-card {
    flex-direction: column-reverse;
  }
  
  .card-right {
    height: 180px;
    min-height: auto;
  }
  
  .card-left {
    padding: 24px;
  }
  
  .surgery-title {
    font-size: 1.25rem;
  }
  
  .price-sticker-wrap {
    margin-top: 20px;
  }
  
  .booking-section-wrapper {
    padding: 30px 15px;
    border-radius: 16px;
  }
  
  .booking-form-block {
    padding: 24px 15px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #f7f9fc;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-top: -10px;
  margin-bottom: 50px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 250px;
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  width: 100%;
  flex-shrink: 0;
  display: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 22, 76, 0.05);
  border: 1px solid rgba(7, 22, 76, 0.05);
  text-align: center;
}

.stars {
  color: #ffb800;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
}

.patient-info {
  display: flex;
  flex-direction: column;
}

.patient-name {
  font-weight: 700;
  color: #07164c;
  font-size: 1.1rem;
}

.patient-meta {
  color: #ff7a00;
  font-size: 0.9rem;
  margin-top: 5px;
}

.slider-dots {
  text-align: center;
  margin-top: 25px;
}

.slider-dots .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #07164c;
  transform: scale(1.2);
  width: 25px;
  border-radius: 5px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #f7f9fc;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(7, 22, 76, 0.05);
  transition: all 0.3s ease;
}

.faq-item[open] {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(7, 22, 76, 0.05);
  border-color: rgba(7, 22, 76, 0.1);
}

.faq-question {
  padding: 22px 30px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #07164c;
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: #ff7a00;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 25px 30px;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

.faq-answer p {
  margin: 0;
}

/* Mobile responsive fixes */
@media screen and (max-width: 768px) {
  .testimonials-section, .faq-section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .review-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }
}





