/* =============================
   Fonts
============================= */
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap");

/* =============================
   Base Reset
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* =============================
   Colors
============================= */
:root {
  --primary: #1e2a38; /* Deep Navy */
  --gold: #d4af37; /* Gold */
  /* --background: linear-gradient(90deg,rgba(255, 224, 224, 0.88) 0%, rgba(255, 237, 242, 1) 42%); Blush Pink Gradient */
  --background: #ffffff;
  --secondary: #0a4e9d; /* Subtle Highlights */
  --secondary-dark: #333333; /* Dark Charcoal */
  --white: #ffffff; /* Pure White */
  --blue: #1661be; /* Vivid Blue */
}

/* =============================
   Body
============================= */
body {
  background: var(--background);
  color: var(--text-dark);
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
h2 {
  color: var(--secondary);
}
.banner-img {
  max-width: 100%;
  height: auto;
  position: relative; /* remove absolute */
  bottom: 0;
}

.btn {
  background-color: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn1 {
  background-color: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn1:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn2 {
  background-color: var(--gold);
  color: var(--white);
  border: 3px solid var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn2:hover {
  background-color: var(--gold);
  color: var(--blue);
  border-color: var(--blue);
}
.btn3 {
  background-color: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.pulse-button {
  -webkit-animation: pulse 1.5s infinite ease-in-out;
  animation: pulse 1.5s infinite ease-in-out;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 10px 10px rgba(245, 211, 148, 0.8);
    /* Brighter and larger shadow */
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(191, 142, 50, 0);
    /* Shadow fades out */
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 15px 12px rgba(244, 194, 194, 0.6);
    /* Brighter and larger shadow */
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(191, 142, 50, 0);
    /* Shadow fades out */
  }
}
/* HERO BANNER */
.hero-banner {
  position: relative;
  height: 100vh;
  background: url("images/banner/banner3.avif") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 0 5%;
}

/* Top Bar */
.top-bar {
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 60px;
}

/* Text Content */
.text-content {
  max-width: 600px;
  z-index: 2;
}

.text-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.highlight {
  color: var(--primary);
}

.sub-highlight {
  color: var(--primary);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .text-content h1 {
    font-size: 2rem;
  }

  .book-btn {
    padding: 6px 15px;
  }
}

/* SOP Section */
#sop .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

#sop .card {
  background: #fff;
  border: 1px solid var(--secondary);
  border-radius: 18px;
  padding: 20px 20px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

#sop .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#sop .card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--secondary);
  transition: transform 0.3s ease, color 0.3s ease;
}

#sop .card:hover i {
  transform: scale(1.15) rotate(8deg);
  color: var(--gold);
}

#sop .card h5 {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}
/* Responsive */
@media (max-width: 992px) {
  #sop .row {
    grid-template-columns: repeat(2, 1fr); /* tablet & below = 2 cards */
    gap: 15px; /* reduce gap for small screen */
    padding: 0 10px; /* add spacing on left & right */
  }
}

@media (max-width: 576px) {
  #sop .row {
    grid-template-columns: repeat(2, 1fr); /* keep 2 cards even on small mobile */
  }
  #sop .card {
    padding: 20px 15px;
  }
  #sop .card i {
    font-size: 26px;
  }
  #sop .card h5 {
    font-size: 0.95rem;
    color: #000;
  }
}


/* footer */

.footer-custom {
  background-color: var(--primary); /* dark navy/blue-gray */
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.social-icon {
  color: #ffffff;
  font-size: 1.2rem;
}

/* CTA */
.cta-parallax {
  position: relative;
  background: url("images/banner/bg-01.webp") center center no-repeat;
  background-size: cover;
  /* background-attachment: fixed;  */
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-parallax .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.cta-parallax .container {
  z-index: 1;
}

/* Card style */
.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
  border-color: transparent;
}

/* footer */
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 212, 96, 0.5);
}

/******************** review ********************/
/* Carousel container */
.owl-carousel .testimonial-card {
  width: 100%;           /* Owl controls width */
  max-width: 320px;      /* Card max size */
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 5px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.owl-carousel .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card header */
.owl-carousel .testimonial-card .card-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.owl-carousel .testimonial-card .name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* Verified icon */
.owl-carousel .testimonial-card img.verified-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* Google stars */
.owl-carousel .testimonial-card .google-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.owl-carousel .testimonial-card img.google-icon {
  width: 25px;
  height: auto;
  display: inline-block;
}

.owl-carousel .testimonial-card .stars {
  color: #f4b400;
  font-size: 18px;
}

/* Testimonial text */
.owl-carousel .testimonial-card .testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 8px;
}

/* doctor */

.doctor-name {
  font-weight: 600;
}

.doctor-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: bold;
}

.doctor-points li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.doctor-certificates {
  gap: 20px;
  white-space: nowrap;
}

.cert-logo {
  height: 43px;
  width: auto;
  flex-shrink: 0;
}

.expertise-buttons img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.doctor-points {
  list-style: none;
  padding-left: 0;
}

.doctor-points li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.doctor-points li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--blue); /* pinkish arrow */
  font-size: 16px;
}

/* CTA form */
.appointment-section {
  background-color: var(--secondary);
  color: var(--primary-dark);
  padding: 30px 10px;
  text-align: center;
}

.appointment-box {
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 15px var(--primary);
}

.appointment-box h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--primary);
}

.appointment-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.appointment-form input {
  padding: 6px 9px;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 200px;
  flex: 1 1 200px;
}

.appointment-form input::placeholder {
  color: #888;
}

.appointment-btn {
  margin-top: 20px;
  padding: 7px 20px;
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appointment-btn:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 80px) {
  .appointment-form {
    flex-direction: column;
  }

  .appointment-form input {
    width: 100%;
  }
}

/********************** faq  **********************/
.faq-box {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid #eee;
  background-color: var(--secondary);
}

.faq-box:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.faq-box button {
  transition: color 0.3s ease;
  color: var(--white);
}

.faq-box:hover .faq-icon {
  transform: rotate(180deg);
  color: var(--white);
}
/********************* benefits-section *****************/
.benefits-section h2 b {
  text-decoration: underline;
  text-decoration-color: #e6dae0;
}
.benefits-section img {
  background-color: var(--primarycolor);
}
.benefits-section .owl-nav img {
  background-color: transparent;
}
.benefits-section .box {
  position: relative;
  min-height: 150px;
  padding: 0px 30px;
}
.benefits-section .box p {
  font-size: 14px;
  line-height: 22px;
}
.benefits-section .column1 {
  width: 30%;
  float: left;
  padding: 0px;
}
.benefits-section .column2 {
  width: 40%;
  float: left;
  padding: 0px;
}
.benefits-section .column3 p,
.benefits-section .column3 h4 {
  text-align: right;
  padding: 0px 0px 0px 15px;
}
.benefits-section .column2 img {
  border-radius: 8px;
}
.curve-img {
  position: relative;
}
/* Left side arrows (unchanged) */
.benefits-section .column1 .curve-img::after {
  content: "";
  background-image: url(./images/dashed-line-arrow-left.png); /* your left arrow */
  position: absolute;
  width: 100%;
  height: 75px;
  bottom: -20px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}

/* Right side arrows */
.benefits-section .column3 .curve-img::after {
  content: "";
  background-image: url(./images/dashed-line-arrow-right.png); /* your right arrow */
  position: absolute;
  width: 100%;
  height: 75px;
  bottom: -20px;
  right: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

/* Prevent overlap with center image on smaller screens */
@media (max-width: 1400px) {
  .benefits-section .curve-img::after {
    width: 80%;   /* shrink width */
    left: auto;
    right: auto;
  }
}
@media (max-width: 1200px) {
  .benefits-section .curve-img::after {
    width: 70%;
    height: 60px; /* shrink height */
  }
}

/* --- Mobile Fix --- */
@media only screen and (max-width: 980px) {
  .benefits-section .column1,
  .benefits-section .column2,
  .benefits-section .column3 {
    width: 100%;
    float: none;
  }

  .benefits-section .box {
    min-height: auto;
    padding: 15px 0;
  }

  .benefits-section .curve-img::after {
    width: 100%;
    height: 60px;
    left: 0;
    bottom: -15px;
    background-size: contain;
    background-position: center;
  }

  .benefits-section .column3 p,
  .benefits-section .column3 h4 {
    text-align: left;
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  .benefit-grid .box img {
    width: 80%;
    height: auto;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .benefit-grid p {
    font-size: 16px;
    color: #000;
    padding: 20px 0px 0px;
  }
}
/* --- End Mobile Fix --- */
.service-card .mb-3 {
  display: flex;
  justify-content: center;
}
#service .item {
  margin-top: 10px;
}
.service-card {
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--secondary);
}
.service-card:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-5px);
}
.service-card:hover h5,
.service-card:hover p {
  color: #fff !important;
}
.sh {
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 16px 1px var(--secondary);
}
/************************** process section **************************/
.timeline {
  display: grid;
  grid-template-columns: repeat(7, auto); /* icon, line, icon, line, ... */
  align-items: center;
  justify-content: center;
  gap: 0; /* no gap because line should touch icons */
}

/* Items */
.timeline-item {
  text-align: center;
  z-index: 2;
}

.circle-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 5px;
  box-shadow: 0 8px 20px rgba(10, 78, 157, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(10, 78, 157, 0.6);
}

.timeline-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 15px;
  color: #0a4e9d;
}

/* Lines */
.timeline-line {
  width: 210px;   /* adjust length */
  height: 80px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  top: -30px; /* align with icons */
}

/* Alternate line images */
.timeline-line:nth-of-type(odd) {
  background-image: url("images/left-to-right.png");
}
.timeline-line:nth-of-type(even) {
  background-image: url("images/right-to-left.png");
}

/* Mobile: stack items vertically and hide lines */
@media (max-width: 767px) {
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
}
/********************* WhatsApp Sticky Button start *********************/
.whatsapp-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn i {
  font-size: 22px;
}

/* Hover effect */
.whatsapp-btn:hover {
  background-color: #1ebe5d;
  color: #fff;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .whatsapp-btn {
    display: none;
  }
}
/********************* WhatsApp Sticky Button end *********************/
.rainbow-border-btn {
  position: relative;
  display: inline-block;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: bold;
  color: var(--white);
  background: #fff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

/* rainbow border wrapper */
.rainbow-border-btn::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: inherit;
  background: conic-gradient(
    red,
    orange,
    yellow,
    lime,
    cyan,
    blue,
    violet,
    red
  );
  z-index: -2;
  animation: rotate 4s linear infinite; /* continuous one direction */
}

/* keep button white inside */
.rainbow-border-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--gold);
  border-radius: inherit;
  z-index: -1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ==================================
   call button sticky STYLES
================================== */

.mobile-call-btn {
  position: fixed;
  bottom: 0;
  left: 20%;
  width: 60%;
  z-index: 9999;
  background-color: #ffffff;
  text-align: center;
  padding: 4px 0;
  border-radius: 15px 15px 0 0;
  border: 1px solid #000;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.call-now-button {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 16px; /* spacing inside buttons */
}

.call-now-button:first-child {
  border-right: 1px solid #000; /* white divider */
}


.call-now-button i {
  font-size: 1.2rem;
}
.call-now-button.call {
  color: red !important;
}

.call-now-button.call i {
  color: red !important;
}

.call-now-button.whatsapp {
  color: green !important;
}

.call-now-button.whatsapp i {
  color: green !important;
}
/************************* doctor *************************/
.doctor-img {
  right: 10px;  /* moves image outside */
  bottom: 0;
  max-width: 40%;
}

.doctor-img img {
  border-radius: 10px;
} 
.doctor-name {
  font-weight: 600;
}

.doctor-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: bold;
}

.doctor-points li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.doctor-certificates {
  gap: 20px;
  white-space: nowrap;
}

.cert-logo-m {
  height: 35px;
  width: auto;
  flex-shrink: 0;
}
.cert-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.expertise-buttons img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.doctor-points {
  list-style: none;
  padding-left: 0;
}

.doctor-points li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.doctor-points li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--white); /* pinkish arrow */
  font-size: 16px;
}