 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Arial', sans-serif;
      scroll-behavior: smooth;
    }
/* ✅ Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-primary: #4f46e5;    /* Accent (buttons, links, highlights) */
  --color-main: #13182f;       /* Main text */
  --color-gray: #5c5a72;       /* Secondary text */
  --color-light: #eef4ff;
  --color-white: #fff;    
--color-light-blue:#f3f8ff;
--color-blue:#4169fa;

  /* Font */
  --font-family: 'Poppins', sans-serif;

  /* Font Sizes (fallback first, then responsive clamp) */
  --h1-fallback: 3.6rem;
  --h1-size: clamp(2.3rem, 4.51vw, 4.0625rem);

  --h2-fallback: 3.3rem;
  --h2-size: clamp(2.375rem, 3.75vw, 3.375rem);

  --h3-fallback: 1.75rem;
  --h3-size: clamp(1.225rem, 1.94vw, 1.75rem);

  --h4-fallback: 1.375rem;
  --h4-size: clamp(0.9625rem, 1.52vw, 1.375rem);

  --h5-fallback: 1.25rem;
  --h5-size: clamp(0.875rem, 1.39vw, 1.25rem);

  --h6-fallback: 1.125rem;
  --h6-size: clamp(0.7875rem, 1.25vw, 1.125rem);

  --p-fallback: 1.125rem;
  --p-size: clamp(0.7875rem, 1.25vw, 1.125rem);

  --small-fallback: 1rem;
  --small-size: clamp(0.6875rem, 1.11vw, 1rem);

  /* Line Height */
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
}

/* ✅ Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-family);
  font-size: var(--p-fallback);
  font-size: var(--p-size);
  color: var(--color-main);
  line-height: var(--line-height-base);
  background: var(--color-white);
}

/* ✅ Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--color-main);
  line-height: var(--line-height-heading);
  margin-bottom: clamp(0.65625rem, 1.04vw, 0.9375rem);
}

h1 { font-size: var(--h1-fallback); font-size: var(--h1-size); }
h2 { font-size: var(--h2-fallback); font-size: var(--h2-size); }
h3 { font-size: var(--h3-fallback); font-size: var(--h3-size); }
h4 { font-size: var(--h4-fallback); font-size: var(--h4-size); }
h5 { font-size: var(--h5-fallback); font-size: var(--h5-size); }
h6 { font-size: var(--h6-fallback); font-size: var(--h6-size); }

/* ✅ Paragraphs */
p {
  font-size: var(--p-fallback);
  font-size: var(--p-size);
  color: var(--color-gray);
  margin-bottom: 15px;
}


/* ✅ Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-main);
}

/* ✅ Lists */
li {
  font-size: var(--p-fallback);
  font-size: var(--p-size);
  color: var(--color-gray);
  margin-bottom: 8px;
}

/* ✅ Spans */
span {
  font-size: inherit;
  color: inherit;
}

/* ✅ Small text */
small {
  font-size: var(--small-fallback);
  font-size: var(--small-size);
  color: var(--color-gray);
}


.container-default {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 24px;
}


.btn-secondary {
    border: 1.5px solid var(--color-main);
    box-shadow: none;
    color: var(--color-main);
    text-align: center;
    transform-style: preserve-3d;
    background-color: #0000;
    border-radius: 96px;
    padding: 24px 38px;
    font-size: 18px;
    line-height: 1.112em;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    display: inline-block;
}
.btn-secondary:hover {
  transform: translateY(-5px);
}
.btn-secondary.blue  {
    border-color: var(--color-primary);
    color: var(--color-white);
    background-color: var(--color-primary);
}

.btn-secondary.blue:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}


.btn-secondary.black  {
    border-color: var(--color-main);
    color: var(--color-white);
    background-color: var(--color-main);
}

.btn-secondary.black:hover {
    background-color: var(--color-white);
    color: var(--color-main);
}
.btn-secondary.white {
    border-color: var(--color-white);
    color: var(--color-white);
    background-color: #0000;
}

.btn-secondary.white:hover {
    background-color: var(--color-white);
    color: var(--color-main);
}







    /* ✅ Header Menu */
    header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 10%;
      z-index: 10;
    }

    header .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--color-white);
    }

    header nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    header nav ul li a {
      color: var(--color-white);
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    header nav ul li a:hover {
      color: #ffdd57;
    }

    /* ✅ Swiper container */
.top-slider-section .swiper {
      width: 100%;
      height: 97vh;
      background: url(./image/bg-element.svg) no-repeat left bottom, #3d65ff; 
      background-size: 500px auto, auto; 
      border-radius: 0px 0px 70px 70px;
      position: relative;
    }

    .top-slider-section .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* padding: 2% 10% 0px; */
      padding:0px;
    }

    /* ✅ Left Section FULL image */
    .top-slider-section .slide-left {
      width: 50%;
      height: 100%;
    }

    .top-slider-section .slide-left img {
      width: 100%;
      height: 100%;
      object-position: top;
      object-fit: cover; 
      border-radius: 0; 
    }

    /* ✅ Right text section */
    .top-slider-section .slide-right {
      width: 50%;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .top-slider-section .slide-right * {
      color: var(--color-white);
    }


    .top-slider-section .slide-right p {
      margin-bottom: 30px;
    }

    .top-slider-section .slide-right .subtitle {
      font-weight: bold;
      margin-bottom: 10px;
      text-transform: uppercase;
    }


    /* ✅ Pagination on right side */
    .top-slider-section .swiper-pagination {
      right: 20px;
      bottom: 20px;
      display: flex !important;
      justify-content: end;
      flex-direction: row;
      gap: 10px;
      padding: 0px 20px;
      left: auto;
    }

    .top-slider-section .swiper-pagination-bullet {
      width: 40px;
      height: 40px;
      background-color: #333;
      color: var(--color-white);
      opacity: 1;
      font-size: 16px;
      font-weight: bold;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .top-slider-section .swiper-pagination-bullet-active {
      background-color: var(--color-white);
      color: #000;
    }

    /* ✅ FULL IMAGE SLIDE */
    .full-image-slide {
      width: 100%;
      height: 100%;
    }

    .full-image-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      border-radius: 0px 0px 70px 70px;
    }



    /* ✅ Booking Section */
.booking-section {
  background: var(--color-white);
}

.booking-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.booking-header .subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.booking-header h2 {
  color: var(--color-main);
}

.booking-header p {
  color: var(--color-gray);
}

/* ✅ Contact Options Grid */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-card {
  padding: 20px;
  border-right: 1px solid #e5e7eb;
}

.contact-card:last-child {
  border-right: none;
}

.contact-card .icon-circle {
  width: 70px;
  height: 70px;
  background: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card .icon-circle i {
  font-size: 28px;
  color: var(--color-primary);
}


.contact-card a {
  text-decoration: none;
  color: var(--color-main);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--color-primary);
}
/* ✅ Booking Section  end */




.specialities-section {
  background: var(--color-main);
  text-align: center;
  border-radius: 30px;
  /* overflow: hidden; */
}

 .section-subtitle {
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
}

 .section-title {
  margin-bottom: 50px;
  color: var(--color-white);
  text-align: left;
}

.specialities-section .swiper {
  padding-bottom: 50px;
  overflow: visible;
}

.specialities-section .speciality-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.specialities-section .speciality-card * {
  transition: all .5s;
}

.specialities-section .speciality-card:hover :where( h3 , a){
  /* transform: translateY(-8px); */
  color: var(--color-primary);
}

.specialities-section .icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto auto 20px;
    overflow: hidden;
}

.specialities-section .speciality-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:scale(1);
}

.specialities-section .speciality-card:hover .icon img  {
  transform: scale(1.2);
}
.specialities-section .speciality-card .learn-more i {
  /* transition: all 1s; */
}
.specialities-section .speciality-card:hover .learn-more i {
  transform: translateX(5px);
}
 
.specialities-section .speciality-card p {
  margin-bottom: 20px;
}

.specialities-section .learn-more {
  display: inline-block;
  color: var(--color-main);
  font-weight: 600;
  text-decoration: none;
}



/* Swiper buttons */
.specialities-section .swiper-button-prev,
.specialities-section .swiper-button-next , 
.gallery-container .swiper-button-prev ,
.gallery-container .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  top: -50px;
  position: absolute;
  cursor: pointer;
}

.specialities-section .swiper-button-next:after, .specialities-section .swiper-button-prev:after ,
.gallery-container .swiper-button-next:after, .gallery-container .swiper-button-prev:after{
  font-size: 20px;
}

.specialities-section .swiper-button-prev ,
.gallery-container .swiper-button-prev {
  right: 55px;
  left: unset;
}

.specialities-section .swiper-button-next ,
.gallery-container .swiper-button-next {
  right: 10px;
}

/* Swiper Pagination */
.specialities-swiper .swiper-pagination {
  text-align: center;
  bottom: 10px !important;
}

.specialities-swiper .swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}

.specialities-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
}



/* about seciton */

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image {
  width: 50%;
  aspect-ratio: 628/700;
  position: relative;
}

.about-image > div {
  width: 85%;
  aspect-ratio: 400 / 444;
  border-radius: 12px;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}

.about-image  .design-image  {
  margin: 30px 0 0 30px;
  z-index: 1;
   bottom: 0px;
  right: 0px;
  height: 65%;
  
}

.about-image  .design-image img {
  position: absolute; 
bottom: -2px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
 
}

.about-image img {
  width: 100%;
}

.design-image {
 background-color: var(--color-primary);
    width: fit-content;
    border-radius: 10px;

}
.about-text {
  flex: 1;
  min-width: 300px;
}

/* appointment section */


.appointment-section {position: relative;}

.appointment-content, .appointment-se-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

}


.appointment-se-container > div {
    position: absolute;
    width: 50%;
    height: 100%;
    
    
}
.appointment-se-container > div.left-side {
   width: 85%;
    border-radius: 0px 20px 20px 0px ;
    background: var(--color-primary) url('./image/bg-image.svg') no-repeat right center;
}
.appointment-se-container > div.right-side {
    right: 0;
    width: 48%;
    background: url(./image/appointment-image.jpg) no-repeat center;
    height: 82%;
    background-size:cover;
    border-radius: 20px 0px 0px 20px;
  
}

.appointment-text {
  flex: 1;
  color: var(--color-white);
  padding: 150px 0px;
}
.appointment-text :where( h2 , p) {
  color: var(--color-white);
}
.appointment-image {
  flex: 1;
  position: relative;
}

.appointment-se-container {
    width: 100%;
    height: 100%;
    position: absolute;
}

.appointment-text-container {
z-index: 2;
position: relative;
padding: 0px 24px;
}

.appointment-text a:not(:last-child) {
  margin-right: 10px;
}





/* appointment section end*/






.why-choose-us {
  text-align: center;
}
/* 
.why-choose-us .section-subtitle {
  color: var(--color-primary);
  font-size: var(--small-size);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
} */

.why-choose-us .section-title {
  color: var(--color-main);
  line-height: var(--line-height-heading);
}

.why-choose-us :where(.section-title, .section-subtitle ) {
  text-align: center;;
}


 .video-container {
      position: relative;
      max-width: 90%;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 12px;
      z-index: 2;
    }

    .video-container img {
      width: 100%;
      transition: transform 0.5s ease;
      display: block;
      border-radius: 12px;
    }

    .video-container:hover img {
      transform: scale(1.05);
    }

    .video-container  .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--color-white);
      border-radius: 50%;
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
    }

    .video-container  .play-button:hover {
      background: #f0f0f0;
    }

    .video-container  .play-button::before {
      content: "";
      display: inline-block;
      margin-left: 5px;
      border-style: solid;
      border-width: 22px 0 22px 30px;
      border-color: transparent transparent transparent #6200ff;
    }


     /* Popup styling */
    .popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .popup-content {
      position: relative;
      width: 80%;
      max-width: 800px;
      background: var(--color-white);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
    }

    .popup-content iframe {
      width: 100%;
      height: 450px;
      border: none;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #ff0000;
      color: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 18px;
      cursor: pointer;
    }


    .video-wrapper {
      position: relative;
      display: inline-block;
      margin-bottom: 12%;
    }

.video-bg {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 1292/401;
  background: linear-gradient(135deg, #4f46e5, #1db9ff);
  border-radius: 12px;
  z-index: 1;
}


/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-box {
  text-align: center;
  padding: 1rem;
    position: relative;
}

.feature-box:not(:last-child):after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background:#d5dff0;
    position: absolute;
    top: 0px;
    right: -1rem;
}

.feature-box .icon {
   width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto auto 20px;
    overflow: hidden;
}
.feature-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}



/* testimonials */



.testimonials {
  background: var(--color-light-blue);
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  font-family: var(--font-family);
}

.testimonials .section-subtitle {
  color: var(--color-primary);
  font-size: var(--small-size);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.testimonials .section-title {
  color: var(--color-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}


.testimonial-card .author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  border: none;
}


.testimonial-card .author strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-card .author span {
  font-size: 0.9rem;
  color: var(--color-primary);
}

.heading-container {
  max-width: 600px;
  margin: auto;
  
}
.heading-container > * {
text-align: center;
}


/* blog section */


.blog-section .heading-container .section-title {
  color: var(--color-main);
}

.featured-article {
  display: grid;
 grid-template-columns: 0.85fr 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
  border-radius: 24px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 2px 6px #1f4ba014, 0 -2px 6px #1f4ba014;
}

.featured-article  .article-img {
  width: 100%;
  aspect-ratio: 594 / 528;
  display: flex;
}

.featured-article .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-content {
  padding: 80px 82px;
}


.featured-content .meta {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0.8rem;
}

.featured-content .tag {
  background: #f0f2ff;
  color: var(--color-primary);
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
  margin-right: 0.8rem;
  font-weight: 500;
}

.featured-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.featured-content p {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.blog-cta {
  text-align: center;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author strong {
  display: block;
  color: var(--color-dark);
}

.author span {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.read-more {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  text-decoration: underline;
}

/* Other Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.article-card {
  background: var(--color-white);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.article-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--color-dark);
}

.article-card p {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.article-card .meta {
  font-size: 0.85rem;
  color: var(--color-gray);
  display: flex;
  justify-content: space-between;
}

.article-card .tag {
  background: #f0f2ff;
  color: var(--color-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}



/* 
footer css */


/* Footer Wrapper */
.footer {
  background: #0d0a26;
  color: #cfd2f7;
  padding: 0;
  margin-top: 8rem;
}

/* CTA inside footer */
.footer-cta {
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: 20px;
  margin: -8rem auto 3rem;
  padding: 3rem;
  width: 80%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.footer-cta  :where( .cta-subtitle , .cta-title) {
  color: var(--color-white);
}



.footer-cta .cta-content {
    max-width: 600px;
    margin-right: auto;
    position: relative;
    z-index: 2;
}



/* Shape Decoration */
.footer-cta .cta-shape {
  width: 220px;
  height: 220px;
  background: #00c2ff;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  bottom: -50px;
}

/* Footer Content */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.footer-brand .logo {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


.social-links a {
  color: var(--color-white);
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--color-primary);
}

.newsletter {
  margin-top: 1.5rem;
  display: flex;
  background: #1a153d;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  border: none;
  padding: 0.8rem 1rem;
  background: transparent;
  color: var(--color-white);
  outline: none;
}

.newsletter button {
  background: var(--color-primary);
  border: none;
  padding: 0.8rem 1.5rem;
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #5a00d1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h4 {
  color: var(--color-white);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--color-light);
  text-decoration: none;
  font-size: var(--small-fallback);
  font-size: var(--small-size);
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid #1a153d;
  font-size: 0.85rem;
}
/* Responsive Footer */

/* gallery section */


    .gallery-container .swiper {
      width: 100%;
      padding: 40px 0px;
      overflow: visible;
    }

    .gallery-container .inner-swiper-slide {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      position: relative;
      cursor: pointer;
    }

    .gallery-container .swiper-slide img {
      width: 100%;
      aspect-ratio: 636 / 342;
      object-fit: cover;
      display: block;
    }

    .inner-swiper-slide {
    position: relative;
}

    .inner-swiper-slide .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 40px;
      color: white;
          background: var(--color-white);
      border-radius: 50%;
      pointer-events: none;
      width: 60px;
    height: 60px;
    }



  .inner-swiper-slide .play-btn::before {
          content: "";
          display: inline-block;
          border-style: solid;
          border-width: 12px 0 12px 18px;
          border-color: transparent transparent transparent #6200ff;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
      }


      .gallery-slider .swiper-slide {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 34px;
      }


       

    

    /* Lightbox */
    .gallery-container .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .gallery-container .lightbox-content {
      text-align: center;
      height: calc(100vh - 40px);
          display: flex;
    justify-content: center;
    align-items: center;
    }
    .gallery-container .lightbox img, .lightbox iframe {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }
    .gallery-container .lightbox.active { display: flex; }
    .gallery-container .lightbox .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      cursor: pointer;
      color:var(--color-primary);
      background: unset;

    }



    .gallery-container  { 
      overflow: hidden;
    }


    .gallery-container .swiper-button-prev, .gallery-container .swiper-button-next {
    margin-top: 40px;
}



/* slider  */

            .features-card-box {
                grid-row-gap: 230px;
                flex-direction: column;
                width: 100%;
                max-width: 100%;
                display: flex;
                position: relative;
            }

            .features-card {
                transform-origin: 50% 0;
                text-align: center;
                -webkit-text-fill-color: inherit;
                background-color: #fff;
                background-clip: border-box;
                border-radius: 15px;
                flex-direction: column;
                align-items: center;
                padding: 40px;
                display: flex;
                position: sticky;
                top: 150px;
                will-change: filter, transform;
                filter: brightness(100%);
                transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
                transition: all 0.8s ease;
            }


            .features-card-title {
                color: #000;
                letter-spacing: -1px;
                margin-bottom: 12px;
                font-size: 28px;
                font-weight: 700;
                line-height: 36px;
            }


            /* The rest of the functional CSS remains unchanged to preserve slider behavior */

            .features-card.first {
                height: 100%;
                min-height: 100%;
                margin-bottom: 75px;
                top: 40px;
                box-shadow: 0 2px 5px #0003;
            }

            .features-card.second {
                margin-bottom: 60px;
                top: 55px;
                box-shadow: 0 2px 5px #0003;
            }

            .features-card.third {
                margin-bottom: 45px;
                top: 70px;
                box-shadow: 0 2px 5px #0003;
            }

            .features-card.fourth {
                opacity: 1;
                margin-bottom: 30px;
                top: 85px;
                box-shadow: 0 2px 5px #0003;
            }

            .features-card.fifth {
                margin-bottom: 15px;
                top: 100px;
                box-shadow: 0 2px 5px #0003;
            }

            .features-card.sixth {
                margin-bottom: 0;
                top: 115px;
                box-shadow: 0 2px 5px #0003;
            }

            .features-card.support-sec {
                opacity: 0;
                top: 140px;
            }

            .features-card.first.active-first {
                will-change: filter, transform;
                filter: brightness(70%);
                transform: translate3d(0px, 0px, 0px) scale3d(0.7, 0.7, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
            }

            .features-card.second.active-second{
                will-change: filter, transform;
                filter: brightness(75%);
                transform: translate3d(0px, 0px, 0px) scale3d(0.75, 0.75, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
            }

            .features-card.third.active-third{
                will-change: filter, transform;
                filter: brightness(80%);
                transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
            }

            .features-card.fourth.active-fourth{
                will-change: filter, transform;
                filter: brightness(85%);
                transform: translate3d(0px, 0px, 0px) scale3d(0.85, 0.85, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
            }

            .features-card.fifth.active-fifth{
                will-change: filter, transform;
                filter: brightness(90%);
                transform: translate3d(0px, 0px, 0px) scale3d(0.9, 0.9, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
            }

            .features-card.sixth.active-sixth{
                will-change: filter, transform;
                filter: brightness(100%);
                transform: translate3d(0px, 0px, 0px) scale3d(0.95, 0.95, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
            }







@media (max-width: 992px) {
  .contact-options {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-card {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 30px;
  }

  .contact-card:last-child {
    border-bottom: none;
  }

  .footer-cta {
    max-width: calc(100% - 40px);
  }

  .featured-content {

    padding: 15px 30px;
  }
}  

    /* ✅ Mobile */
    @media screen and (max-width:768px) {
      header {
        padding: 15px 5%;
      }

      .swiper-slide {
        flex-direction: column;
        padding: 0;
      }

      .slide-left, .slide-right {
        width: 100%;
        height: 50%;
      }

      .swiper {
        background: unset; 
      }

      .slide-left img {
        width: 100%;
        min-height: unset;
        aspect-ratio: 16/9;
      }

      .slide-right * {
        color: #000;
      }

      .slide-right a i {
        color: var(--color-white);
      }

      /* Mobile dots style */
      .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        font-size: 0;
      }

      .top-slider-section .slide-left {
    width: 100%;}

      .top-slider-section .slide-right {
    width: 100%;
    padding: 15px;
}
.top-slider-section .slide-right p {
    margin-bottom: 10px;
}
.top-slider-section .slide-right .subtitle {
  margin-bottom: 4px;
}

     .slide-right .buttons-row {
          text-align: center;
      }




      .specialities-section .swiper {
        overflow: hidden;
      }



      

      div.left-side {
    background-size: 0% !important;
}

.appointment-text {
  flex: unset;
  width: 100%;
          padding: 20px 0px 300px;
}


.about-image {
    width: 100%;
}


.appointment-se-container > div.right-side {
  margin-top: 220px;
  height: 50%;
  width: calc(100% - 20px);
}

.appointment-se-container > div.left-side {
  width: calc(100% - 20px);
}


.featured-content {
      padding: 15px 30px;
}

.feature-box:not(:last-child):after {
  content: unset;
}


         /* ✅ Booking Section  start */





            /* ✅ Booking Section  end */



            /* footer css */


            .footer-cta .cta-buttons a {
              margin: 10px 0px;
          }

          .footer-container {
            grid-template-columns: 1fr;
          }

          .btn-secondary {
            padding: 20px 28px;
          }

              .footer-cta {
        max-width: calc(100% - 24px);
    }

.gallery-slider .swiper-slide {
            gap: 16px;
      }


    }


    @media screen and (max-width:480px) {
      .appointment-text {
        padding: 20px 0px 415px;
      }
      .appointment-se-container > div.right-side {
        margin-top: 295px;
      }

      .appointment-text a:not(:last-child) {
        margin-bottom: 20px;
      }

      
    }
