
    body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

/* Sticky container */
.sticky-icon {
  z-index: 1000;
  position: fixed;
  top: 40%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Icon wrapper */
.sticky-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 32px;
  color: #fff;
  position: relative;
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

/* WhatsApp icon background */
.whatsapp {
  background: #25d366;
}

/* Call icon background */
.call {
  background: #0a66c2;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Glow pulse */
@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
  100% { box-shadow: 0 0 25px rgba(255,255,255,0.8); }
}

/* Spinning gradient ring */
.sticky-icon a::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: spin 4s linear infinite;
  z-index: -1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* WhatsApp ring */
.whatsapp::before {
  background: conic-gradient(#25d366, #128c7e, #25d366);
}

/* Call ring */
.call::before {
  background: conic-gradient(#0a66c2, #004182, #0a66c2);
}
.sticky-icon a {
    text-decoration: none; /* Removes underline */
}

.sticky-icon a:hover {
    text-decoration: none;
}




.hero-section {
  height: 95vh;
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Diagonal background shape */
.background-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 60vw;
  height: 100%;
  background: linear-gradient(135deg, #fff2f5 40%, #f46530 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Centered Text */
.clinic-name {
  letter-spacing: 2px;
  font-weight: 600;
  color: #444;
}

.text-accent {
  color: #f46530;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: #222;
}

.lead {
  /* max-width: 600px; */
  margin-left: auto;
  margin-right: auto;
  color: #666;
  /* text-align: justify; */
  font-size: 1rem !important;
}

/* Button */
.btn-accent {
  background-color: #f46530;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  padding: 15px 45px;
  box-shadow: 0 6px 15px rgba(231, 132, 1, 0.5);
  transition: background-color 0.3s ease;
  border: none;
}

.btn-accent:hover {
  background-color: #8a4a00;
}

/* Hero Image */
.hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 450px;
  max-width: 90vw;
  transform: translateX(20%);
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(195, 0, 47, 0.25));
}

.hero-image {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: rotate(0deg) scale(1.05);
}

/* Floating Circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  background-color: #f46530;
  filter: blur(20px);
  animation: floatAnim 6s ease-in-out infinite alternate;
}

.circle1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.circle2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.circle3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 5%;
  animation-delay: 4s;
}
/* Image */
.hero-img-wrapper {
  position: relative;
  margin-top: 40px;
  z-index: 2;
}

.hero-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
}

@keyframes floatAnim {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0 auto;
    transform: none;
  margin-top: -60px;

  }

  /* .background-diagonal {
    display: none;
  } */

  .floating-circle {
    display: none;
  }
}


/* About */
.about-modern-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-label {
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
}

  .timeline-wrapper {
    position: relative;
    margin-top: 60px;
    /* padding-left: 30px; */
    border-left: 3px solid #f46530;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 60px;
  }

  .timeline-dot {
    position: absolute;
    left: -11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #f46530;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(195, 0, 47, 0.2);
    z-index: 10;
  }

  .timeline-content {
    position: relative;
    background: #fefefe;
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 600px;
    transition: all 0.3s ease;
  }

  .card-left {
    margin-left: 30px;
  }

  .card-right {
    margin-left: 30px;
    margin-top: -20px;
    background: #fff4f6;
  }

  .timeline-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #f46530;
  }

  .timeline-content p {
    margin: 0;
    color: #555;
    font-size: 1rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .timeline-wrapper {
      /* padding-left: 15px; */
      border-left: 2px solid #f46530;
    }

    .timeline-content {
      padding: 20px;
      font-size: 0.95rem;
    }

    .timeline-dot {
      width: 16px;
      height: 16px;
      left: -9px;
    }
  }

  /* Services */
  .services-section {
  background: linear-gradient(135deg, #fff2f5 20%, #f9d6db 100%);
  position: relative;
  overflow: visible;
  padding-bottom: 6rem;
}

.section-label {
  color: #f46530;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.services-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  /* padding: 2.5rem 3rem 2rem 7rem; */
  box-shadow: 0 20px 40px rgba(195, 0, 47, 0.1);
  margin-bottom: 5rem;
  max-width: 600px;
  transition: transform 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(195, 0, 47, 0.3);
}

/* Number Circle */
.number-circle {
  position: absolute;
  left: 2rem;
  top: 1rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: #f46530;
  /* opacity: 0.15; */
  user-select: none;
  pointer-events: none;
  font-family: 'Playfair Display', serif;
}

/* Icon Circle */
.icon-circle {
  position: absolute;
  left: 2.5rem;
  top: 5.5rem;
  background: #f46530;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(195, 0, 47, 0.3);
}

/* Left and Right Alternating Layout */
.service-left {
  margin-left: 0;
  margin-right: auto;
  transform-origin: left center;
  transform: rotate(-2deg);
  padding: 2.5rem 3rem 2rem 7rem;
}

.service-right {
  margin-left: auto;
  margin-right: 0;
  transform-origin: right center;
  transform: rotate(2deg);
  padding: 2.5rem 3rem 2rem 4rem;
}

/* Adjust padding for right cards */
.service-right .number-circle {
  left: auto;
  right: 2rem;
}

.service-right .icon-circle {
  left: auto;
  right: 2.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    max-width: 100%;
    padding: 2rem;
    transform: rotate(0) !important;
  }

  .number-circle,
  .icon-circle {
    left: 1.5rem !important;
    right: auto !important;
    top: 1.5rem !important;
  }

  .service-right {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 991px) {
    .number-circle, .icon-circle {
        left: 1.5rem !important;
        right: auto !important;
        top: 0rem !important;
    }
    .service-name{
      margin-left: 4rem;
    }
}

.faq-split-section {
  background: linear-gradient(to right, #fff, #fff6f7);
  position: relative;
  overflow: hidden;
}

.faq-image-wrapper {
  position: relative;
  display: inline-block;
}

.faq-image {
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
  /* box-shadow: 0 12px 35px rgba(195, 0, 47, 0.3); */
  z-index: 2;
  position: relative;
}

.faq-glow {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(195, 0, 47, 0.2), transparent);
  z-index: 1;
  filter: blur(30px);
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid transparent;
}

.faq-item.active {
  border-left: 4px solid #f46530;
  background: #fff5f6;
}

.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #f46530;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #555;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-image {
    margin-bottom: 2rem;
  }
}
@media(max-width:786px){
  .floating-doctor{
    display: none;
  }
  .about-content-card {
    margin-left: 0px !important;
  }
}
.review-image-wrapper {
  position: relative;
  display: inline-block;
}

.review-image {
  border-radius: 20px;
  width: 100%;
  /* max-width: 450px; */
  /* box-shadow: 0 12px 35px rgba(195, 0, 47, 0.3); */
  z-index: 2;
  position: relative;
}

/* About */
.about-section {
  background: linear-gradient(to bottom, #fff, #fff4f6);
  position: relative;
  overflow: hidden;
}

.floating-doctor {
  position: absolute;
  top: -50px;
  left: -40px;
  z-index: 2;
}

.doctor-img-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(195, 0, 47, 0.2);
}

.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-glow {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(195, 0, 47, 0.2), transparent);
  filter: blur(40px);
  z-index: -1;
}

.about-content-card {
  background: #fff;
  border-radius: 20px;
  margin-left: 180px;
  padding-left: 100px;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: #fff0f3;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(195, 0, 47, 0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.doctor-sign h5 {
  margin-top: 20px;
  font-size: 1.2rem;
}

/* Footer */
.clinic-footer {
  background-color: #1c1c1c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.clinic-footer p {
  font-size: 0.92rem;
}

.footer-icon {
  font-size: 1.2rem;
  color: #f46530;
  min-width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-socials {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-socials .social-btn {
  color: #fff;
  font-size: 1.3rem;
  padding: 10px 14px;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* box-shadow: 0 6px 15px rgba(195, 0, 47, 0.5); */
}

.footer-socials .social-btn:hover {
  background-color: #8a4c00;
  transform: scale(1.1);
  color: #fff;
}

.footer-icon {
  font-size: 1.2rem;
  color: #f46530;
  background-color: #fff;      /* white background */
  border-radius: 50%;          /* circular */
  padding: 8px;                /* some padding */
  min-width: 36px;             /* fixed size to keep icons aligned */
  height: 36px;
  display: inline-flex;        /* center icon */
  align-items: center;
  justify-content: center;
  margin-right: 12px;          /* spacing between icon and text */
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(195, 0, 47, 0.3); /* subtle shadow for depth */
  transition: background-color 0.3s ease;
}

.social-buttons {
  display: flex;
  gap: 15px;
}

.social-btn {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(131, 17, 41, 0.3);
}

.social-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 25px rgba(131, 17, 41, 0.6);
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.whatsapp {
  background-color: #25d366;
}

.email {
  background-color: #f46530;
}
/* Services */
  .services-section {
  background: linear-gradient(135deg, #fff2f5 20%, #f9d6db 100%);
  position: relative;
  overflow: visible;
  padding-bottom: 6rem;
}

.section-label {
  color: #f46530;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.services-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  /* padding: 2.5rem 3rem 2rem 7rem; */
  box-shadow: 0 20px 40px rgba(195, 0, 47, 0.1);
  margin-bottom: 5rem;
  max-width: 600px;
  transition: transform 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(195, 0, 47, 0.3);
}

/* Number Circle */
.number-circle {
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: #f46530;
  opacity: 0.35;
  user-select: none;
  pointer-events: none;
  font-family: 'Playfair Display', serif;
}

/* Icon Circle */
.icon-circle {
  position: absolute;
  left: 2.5rem;
  top: 5.5rem;
  background: #f46530;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(195, 0, 47, 0.3);
}

/* Left and Right Alternating Layout */
.service-left {
  margin-left: 0;
  margin-right: auto;
  transform-origin: left center;
  transform: rotate(-2deg);
  padding: 2.5rem 3rem 2rem 2.5rem;
}

.service-right {
  margin-left: auto;
  margin-right: 0;
  transform-origin: right center;
  transform: rotate(2deg);
  padding: 2.5rem 3rem 2rem 2.5rem;
}

/* Adjust padding for right cards */
.service-right .number-circle {
  left: auto;
  right: 2rem;
}

.service-right .icon-circle {
  left: auto;
  right: 2.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    max-width: 100%;
    padding: 2rem;
    transform: rotate(0) !important;
  }

  .number-circle,
  .icon-circle {
    left: 1.5rem !important;
    right: auto !important;
    top: 1.5rem !important;
  }

  .service-right {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 991px) {
    .number-circle, .icon-circle {
        left: 1.5rem !important;
        right: auto !important;
        top: 0rem !important;
    }
    .service-name{
      margin-left: 4rem;
    }
}
.service-image {
  float: left;
  width: 120px;
  height: 120px;
  margin-right: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(195, 0, 47, 0.15);
  margin-top: 5px !important;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.service-types {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-types li {
  background: #f9d6db;
  color: #f46530;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  user-select: none;
}

    /* .section-title {
      font-weight: bold;
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .section-subtitle {
      font-weight: 300;
      color: #ccc;
      font-size: 1.2rem;
      margin-bottom: 40px;
    }

    .card-custom {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 20px;
      height: 100%;
      transition: all 0.3s ease;
    }

    .card-custom:hover {
      background-color: #222;
      transform: translateY(-5px);
      border : 4px solid #ff8d42;
    }

    .card-custom h5 {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #fff;
    }

    .card-custom p {
      font-size: 0.95rem;
      color: #ccc;
    }

    .card-icon {
      font-size: 30px;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .divider {
      height: 2px;
      width: 40px;
      background-color: #ffd700;
      margin: 10px 0;
    }

    .custom-container {
      max-width: 1200px;
      margin: auto;
    }
  

  .custom-card {
      background-color: #1c1c1c;
      border-radius: 20px;
      padding: 30px 25px;
      color: #fff;
      height: 100%;
      position: relative;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    .custom-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .icon-wrapper {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #ff3d77; /* gradient look can be used with SVG or icon fonts */
    /* } */


    /* //New cards 10 OCT  */
    .custom-card h5 {
      font-weight: 700;
      font-size: 1.2rem;
      color: #fff;
    }

    .divider {
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, #ff3d77, #ff914d);
      margin: 10px 0 15px 0;
      border-radius: 4px;
    }

    .custom-card p {
      color: #ccc;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Responsive handling for layout demo */
    .container {
      max-width: 1279px;
    } 


    .card-custom {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
    }
    .card-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }
    .card-img-top {
      height: 200px;
      object-fit: cover;
      position: relative;
    }
    .price-tag {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: rgba(255,255,255,0.85);
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 600;
    }
    .badge-icon {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255,255,255,0.85);
      border-radius: 12px;
      padding: 6px;
    }
    .tag {
      background-color: #ffe8ee;
      color: #c94f7c;
      border-radius: 12px;
      font-size: 14px;
      padding: 6px 12px;
      margin: 4px;
      display: inline-block;
    }
    .btn-book {
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 12px;
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      transition: 0.3s;
    }
    .btn-blue { background: linear-gradient(to right, #3dbff2, #00aee6); }
    .btn-purple { background: linear-gradient(to right, #d47ae8, #f18bc0); }
    .btn-pink { background: linear-gradient(to right, #f76b9a, #ff8db8); }
    .btn-book:hover { opacity: 0.9; }
    .icon-heart {
      background: #f9f9f9;
      border-radius: 50%;
      padding: 10px;
      margin-left: 10px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }