body{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


/* -----------------------------------------------------------------------------index -1st page with video background------------------------------------------------- */

/* Slideshow container */
.index-slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  margin-top: 0;
}

/* Individual slides */
.index-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none; 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure images cover the entire screen */
.index-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images scale properly */
  z-index: 1;
}

/* Active slide */
.index-slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Slide content overlay */
.index-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: black;
  max-width: 90%;
  padding: 2rem;
  /* background: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(3px); */
  border-radius: 15px;
  margin: 0 auto;
}

/* Text on the slides */
.index-text {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 1rem;
  color: black;
}

.index-subtext {
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 2rem;
  color: black;
}

/* Contact button styling */
.index-slide .contact-btn {
  display: inline-block;
  text-decoration: none;
}

.index-slide button {
  height: 3rem;
  BACKGROUND: NONE;
  width: 10rem;
  border: 2px solid black;
  /* background-color: rgba(255, 255, 255, 0.9); */
  color: black;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.index-slide button:hover {
  background-color: black;
  color: white;
}

.index-slide a:hover button {
  color: white;
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
  .index-slide-content {
    padding: 1rem;
    max-width: 95%;
  }
  
  .index-text {
    font-size: clamp(1.2rem, 6vw, 2.5rem);
    margin-bottom: 0.8rem;
  }
  
  .index-subtext {
    font-size: clamp(0.9rem, 4vw, 1.4rem);
    margin-bottom: 1.5rem;
  }
  
  .index-slide button {
    height: 2.5rem;
    width: 8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .index-slide-content {
    padding: 0.8rem;
    /* background: rgba(255, 255, 255, 0.8); */
  }
  
  .index-text {
    font-size: clamp(1rem, 7vw, 2rem);
    margin-bottom: 0.5rem;
  }
  
  .index-subtext {
    font-size: clamp(0.8rem, 5vw, 1.2rem);
    margin-bottom: 1rem;
  }
  
  .index-slide button {
    height: 2.2rem;
    width: 7rem;
    font-size: 0.8rem;
  }
}

/* ------------------------------------------about-clinic------------------------------------------------------------------------------------------------------------ */

.about-clinic{
  min-height: 100vh;
  width: 100%;
  background-color: #e1d8d1;
  margin-top: -1%;
  padding: 2rem 0;
}

.clinic-content{
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.clinic-info{
  flex: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.clinic-img{
  flex: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clinic-info .clinic-info-texts{
  width: 100%;
  max-width: 600px;
}

.clinic-info-texts h2{
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.1rem;
  font-family: 'Sweet Gothic', sans-serif;
  margin-bottom: 1rem;
}

.clinic-info-texts p{
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.1rem;
  font-family: 'neue-haas-grotesk-display', 'Helvetica Neue';
  margin: 0;
}

.clinic-img .clinic-img-container{
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}

.clinic-img-container .clinic-image{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Responsive media queries for about-clinic */
@media (max-width: 768px) {
  .clinic-content {
    flex-direction: column-reverse;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .clinic-info, .clinic-img {
    min-height: auto;
  }
  
  .clinic-img .clinic-img-container {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .about-clinic {
    padding: 1rem 0;
  }
  
  .clinic-content {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .clinic-img .clinic-img-container {
    max-width: 300px;
  }
}


/* --------------------------------------------------------------------------------celeb- video testimonials--------------------------------------------------------------- */

.celeb-testi-section{
  min-height: 100vh;
  width: 100%;
  background-color: #f5ebe0;
  padding: 2rem 0;
}

.celeb-testi-section h2{
  font-size: clamp(2rem, 5vw, 2.5rem);
  text-align: center;
  padding-top: 2rem;
  font-weight: normal;
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 2rem;
}

.celeb-testi-section h3{
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  padding-top: 1%;
  font-weight: 400;
  color: black;
  letter-spacing: 0.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.celeb-container{
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}

.celeb-slider{
  position: relative;
  height: clamp(300px, 50vw, 350px);
  width: min(800px, 90vw);
  border: 15px solid #5f5d5b;
  overflow: hidden;
  border-radius: 15px;
}

.celeb-slider .celeb-img-vid-container{
  position: absolute;
  height: inherit;
  width: inherit;
  object-fit: cover;
  background: #d6d0ca;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}

.celeb-img-vid-container .celeb-video{
  height: 100%;
  width: 50%;
}

.celeb-img-vid-container .celeb-img{
  height: 100%;
  width: 50%;
}

.celeb-video video{
  position: absolute;
  height: inherit;
  width: inherit;
  object-fit: cover;
   /* Centers the subject in the video */
}

/* Mobile video styling */
@media (max-width: 480px) {
  .celeb-video video {
    border-radius: 10px 10px 0 0;
  }
  
  .celeb-img img {
    border-radius: 10px 10px 0 0;
  }
}

.celeb-video #shilpa-agnihotri{
  object-position: 50% 72%; 
}

.celeb-video #Mushtaq-Khan{
  object-position: 50% 25%; 
}

.celeb-video #Johnny-lever{
  object-position: 50% 40%;
}

.celeb-img img{
  position: absolute;
  height: inherit;
  width: inherit;
  object-fit: cover;
}

.celeb-img-vid-container .celeb-info{
  height: 100%;
  width: 50%;
}

.celeb-info h3{
  margin-top: 5%;
}

.celeb-info p{
  width: 86%;
  margin-left: 7%;
  margin-top: 10%;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.1rem;
}

.navbtns{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.navbtns button{
  height: 70px;
  width: 70px;
  outline: none;
  background: transparent;
  color: #000;
  font-size: 2em;
  border: 2px solid black;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbtns button:hover{
  background: #000;
  color: white;
  transform: scale(1.1);
}

.navbtns button:active{
  background: #000;
  color:white !important;
  transform: scale(0.95);
}



/* Responsive media queries for celebrity testimonials */
@media (max-width: 768px) and (min-width: 481px) {
  .celeb-slider {
    height: clamp(280px, 60vw, 320px);
    width: min(500px, 80vw);
    border-width: 8px;
  }
  
  .celeb-container {
    gap: 2rem;
    min-height: 60vh;
  }
  
  .celeb-img-vid-container .celeb-info {
    padding: 1rem 1.2rem;
  }
  
  .celeb-info h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 0.6rem;
  }
  
  .celeb-info p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.4;
  }
  
  .navbtns button {
    height: 60px;
    width: 60px;
    font-size: 1.5em;
  }
  
  .navbtns {
    gap: 0.8rem;
  }
  
  /* .celeb-slider .celeb-img-vid-container {
    touch-action: none; - Removed to allow mobile scrolling
  } */
}

@media (max-width: 480px) {
  .celeb-testi-section {
    padding: 1.5rem 0;
    min-height: auto;
  }
  
  .celeb-testi-section h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .celeb-container {
    gap: 1.5rem;
    min-height: auto;
    padding: 0 0.5rem;
  }
  
  .celeb-slider {
    height: clamp(350px, 90vw, 420px);
    width: min(320px, 90vw);
    border-width: 6px;
    border-radius: 10px;
  }
  
  .celeb-img-vid-container {
    flex-direction: column;
    background: #f0e7dc;
    position: relative;
  }
  
  .celeb-img-vid-container .celeb-video,
  .celeb-img-vid-container .celeb-img {
    height: 55%;
    width: 100%;
    flex-shrink: 0;
  }
  
  .celeb-img-vid-container .celeb-info {
    height: 45%;
    width: 100%;
    position: relative;
    bottom: auto;
    background: rgba(240, 231, 220, 0.95);
    margin: 0;
    padding: 0.6rem 0.8rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .celeb-info::-webkit-scrollbar {
    display: none;
  }
  
  .celeb-info h3 {
    margin: 0 0 0.4rem 0;
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    text-align: center;
    color: #333;
    font-weight: 600;
    flex-shrink: 0;
  }
  
  .celeb-info p {
    margin: 0;
    width: 100%;
    font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    line-height: 1.35;
    text-align: center;
    color: #555;
    overflow-y: auto;
    flex: 1;
    display: block;
    text-overflow: ellipsis;
    hyphens: auto;
    word-wrap: break-word;
    padding: 0.2rem 0.3rem;
    max-height: calc(100% - 2rem);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .celeb-info p::-webkit-scrollbar {
    display: none;
  }
  
  /* Style for testimonial text container to handle overflow */
  .celeb-info {
    position: relative;
  }
  
  /* Add a subtle gradient fade for long text */
  .celeb-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(transparent, rgba(240, 231, 220, 0.95));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .celeb-info:hover::after {
    opacity: 1;
  }
  
  .navbtns {
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .navbtns button {
    height: 45px;
    width: 45px;
    font-size: 1.1em;
    border-width: 2px;
  }
}

/* Extra small mobile screens */
@media (max-width: 360px) {
  .celeb-testi-section h2 {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
    margin-bottom: 1rem;
  }
  
  .celeb-container {
    gap: 1rem;
    padding: 0 0.25rem;
  }
  
  .celeb-slider {
    height: clamp(320px, 95vw, 380px);
    width: min(280px, 95vw);
    border-width: 4px;
  }
  
  .celeb-img-vid-container .celeb-video,
  .celeb-img-vid-container .celeb-img {
    height: 50%;
  }
  
  .celeb-img-vid-container .celeb-info {
    height: 50%;
    padding: 0.5rem 0.6rem;
  }
  
  .celeb-info h3 {
    font-size: clamp(0.85rem, 4.5vw, 1rem);
    margin-bottom: 0.3rem;
  }
  
  .celeb-info p {
    font-size: clamp(0.7rem, 3.2vw, 0.8rem);
    line-height: 1.3;
    padding: 0 0.1rem;
  }
  
  .navbtns button {
    height: 40px;
    width: 40px;
    font-size: 1em;
  }
}

/* --------------------------------------------------------------------------------video testimonials--------------------------------------------------------------- */


  .testimonial-section {
    padding: 3rem 0;
    min-height: 100vh;
    background-color: #ded4ca;
  }

  .testimonial-section .section-title{
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    font-weight: normal;
    color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 2rem;
  }

  .testimonial-section .testimonial{
    display: flex;
    /* padding: 35px; */
    padding-top: 15px;
    padding-bottom: 50px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 4%;
    /* border: 2px solid black; */
  }

  .testimonial-section .testimonial iframe{
    width: min(300px, 80vw);
    height: min(300px, 80vw);
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 10px;
  }

  .testimonial-section .section-content .slider-container .slider-wrapper .testimonials-list{
    display: flex;  /* Ensures horizontal sliding */
    flex-wrap: nowrap;
  }

  .testimonials-list .testimonial{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .testimonial-section .section-content .slider-container{
    width: 100%;
    height: auto;
  }
  
  .testimonial-section .testimonial .name{
    margin-bottom: 16px;
    font-size: 1.5rem;
    /* border: 2px solid blue; */
  }

  .testimonial-section .testimonial .feedback{
    line-height: 20px;
    width: 80%;
    /* border: 2px solid blueviolet; */
  }

  .testimonial-section .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    opacity: 1;
    margin-bottom: 5%;
    /* border: 2px solid black; */
  }

  .testimonial-section .vid-testi-texts-container{
    margin-top: 3rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .vid-testi-texts-container p{
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: normal;
    line-height: 1.6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  /* Responsive media queries for video testimonials */
  @media (max-width: 768px) {
    .testimonial-section {
      padding: 2rem 0;
    }
    
    .testimonial-section .testimonial iframe{
      width: min(250px, 70vw);
      height: min(250px, 70vw);
    }
    
    .vid-testi-texts-container {
      padding: 0 1rem;
      margin-top: 2rem;
    }
  }

  @media (max-width: 480px) {
    .testimonial-section .testimonial iframe{
      width: min(200px, 85vw);
      height: min(200px, 85vw);
    }
    
    .slider-wrapper .swiper-button-prev, 
    .slider-wrapper .swiper-button-next{
      display: none;
    }
    
    .vid-testi-texts-container {
      padding: 0 0.5rem;
    }
  }



    /*  <!-- ---------------------------------------------------------------beautiful-smile----------------------------------------------------------------------------- -->*/

    .beautiful-smile-container{
      position: relative;
      width: 100%;
      min-height: 100vh;
      background-color: #c0b9b1;
      padding: 3rem 0;
    }

    .beautiful-smile-container .section-title{
      font-size: clamp(2rem, 5vw, 2.5rem);
      text-align: center;
      letter-spacing: 0.1rem;
      font-weight: normal;
      color: black;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      margin-bottom: 3rem;
    }

    .beautifulsmile-image-container{
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
    }
    
    .beautifulsmile-before-container, .beautifulsmile-after-container{
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: min(320px, 45vw);
      aspect-ratio: 3/4;
      background-color: transparent;
      border-radius: 20px;
    }
    
    .beautifulsmile-before-container .beautifulsmile-b-img-sub-container{
      width: 100%;
      height: 80%;
      border: 5px solid black;
      overflow: hidden;
      border-radius: 20px;
    }
    
    .beautifulsmile-after-container .beautifulsmile-a-img-sub-container{
      width: 100%;
      height: 80%;
      overflow: hidden;
      border: 5px solid black;
      border-radius: 20px;
    }
    
    
    .beautifulsmile-b-img-sub-container .beautifulsmile-before-images-content img{
      height: auto;
      width: 100%;
      object-fit: cover; 
      /* border: 2px solid blue; */
    }
    
    .beautifulsmile-a-img-sub-container .beautifulsmile-after-images-content img{
      height: 100%;
      width: 100%;
      object-fit: cover; 
    }
    
    .beautifullabel {
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: black;
      padding: 0.5rem 1rem;
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      font-weight: bold;
      color: white;
      border: 2px solid black;
      border-radius: 5px;
      box-shadow: 2px 2px 5px rgba(0, 0, 255, 0.2);
    }

    /* Responsive media queries for beautiful-smile */
    @media (max-width: 768px) {
      .beautifulsmile-image-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
      }
      
      .beautifulsmile-before-container, .beautifulsmile-after-container {
        width: min(280px, 80vw);
      }
    }

    @media (max-width: 480px) {
      .beautiful-smile-container {
        padding: 2rem 0;
      }
      
      .beautifulsmile-image-container {
        gap: 2rem;
        padding: 0 0.5rem;
      }
      
      .beautifulsmile-before-container, .beautifulsmile-after-container {
        width: min(250px, 90vw);
      }
      
      .beautifulsmile-before-container .beautifulsmile-b-img-sub-container,
      .beautifulsmile-after-container .beautifulsmile-a-img-sub-container {
        border-width: 3px;
      }
    }

  /* -----------------------------------------------------------------------------about-us--------------------------------------------------------------------------- */


  .about-us-container{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #b4ada6;
    padding: 3rem 0;
  }

  .about-us-container .section-title{
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: center;
    font-weight: normal;
    color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 1rem;
  }

  .about-us-container p{
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    color: rgb(48, 48, 6);
    font-family: 'Open Sans', sans-serif;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
    line-height: 1.6;
  }

  .about-us-container .section-members{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .about-us-container .section-members .members-photos{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .about-us-container .section-members .members-photos .photo-1{
    flex: 1;
    max-width: 600px;
  } 

  /* .about-us-container .section-members .members-photos .photo-2{ 
    height: 52vh;
    width: 30%;
    border: 2px solid brown;
    margin-top: 2%;
  } */

  .photo-1 .team-photo{
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background-size: cover;
    border: 10px solid rgb(238, 234, 223);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .team-photo .img-team-member{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .photo-1 .info{
    margin-top: 1.5rem;
  }

  .info p{
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.6;
    text-align: center;
  }

  .photo-1 .links{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2rem;
  }

  .photo-1 .links a {
    position: relative;
    z-index: 10;
}

  .photo-1 .links .whatsapp a i, .photo-1 .links .instagram a i,
  .photo-1 .links .facebook a i, .photo-1 .links .utube a i{
    color: #111;
    font-size: 3rem;
  }

  .photo-1 .links .whatsapp a i:hover {
    color: green !important;
    cursor: pointer;
}
  
.photo-1 .links .instagram a:hover i::before {
  background: -webkit-linear-gradient(16deg, red, blue);
  background: linear-gradient(16deg, red, blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
  
  
 .photo-1 .links .facebook a i:hover{
    color: blue !important;
    cursor: pointer;
  }

  .photo-1 .links .utube a i:hover{
    color: red !important;
    cursor: pointer;
  }


  .section-members .view-more-btn{
    display: block;
    margin: 2rem auto 0 auto;
    height: 3rem;
    width: 10rem;
    border: 1px solid black;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #view-more-btn button{
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    color: black;
  }

  .view-more-btn:hover{
    background-color: black;
    cursor: pointer;
  }

  #view-more-btn:hover button{
    color: white;
  }



  /* Responsive media queries for about-us */
  @media (max-width: 768px) {
    .about-us-container {
      padding: 2rem 0;
    }
    
    .about-us-container p {
      padding: 0 1rem;
    }
    
    .about-us-container .section-members {
      padding: 0 1rem;
    }
    
    .photo-1 .team-photo {
      max-width: 300px;
    }
    
    .photo-1 .links {
      font-size: 1.8rem;
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .about-us-container p {
      padding: 0 0.5rem;
    }
    
    .about-us-container .section-members {
      padding: 0 0.5rem;
    }
    
    .photo-1 .team-photo {
      max-width: 250px;
    }
    
    .photo-1 .links {
      font-size: 1.5rem;
      gap: 0.8rem;
    }
    
    .photo-1 .links .whatsapp a i, 
    .photo-1 .links .instagram a i,
    .photo-1 .links .facebook a i, 
    .photo-1 .links .utube a i{
      font-size: 1.5rem;
    }
    
    .section-members .view-more-btn {
      height: 2.5rem;
      width: 8rem;
      font-size: 0.9rem;
    }
  }


  

/* ------------------------------------------------------------------------------dentistry-types----------------------------------------------------------------------- */

/* ********************************************************************cosmetic******************************************************** */

.cosmetic-dentistry-home-pg-section{
  min-height: 90vh;
  width: 100%;
  background-color: #ded4ca;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
}


.cosmetic-dentistry-home-pg-section .cos-img-cont {
  flex: 0 0 45%;
  max-width: 600px;
  aspect-ratio: 4/3;
}

.cos-img-cont img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cosmetic-dentistry-home-pg-section .cosmetic-content {
  flex: 0 0 50%;
  max-width: 550px;
}

.cosmetic-content h4{
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: normal;
  font-family: 'Sweet Gothic', sans-serif;
  text-align: end;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.cosmetic-content p{
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: normal;
  text-align: end;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 2rem;
}

.cosmetic-content .cos-dentistry-link{
  text-align: end;
}

.cos-dentistry-link .cos-dentistry-btn{
  height: 3rem;
  width: 10rem;
  border: 1px solid black;
  background-color: transparent;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cos-dentistry-btn:hover{
  background-color: black;
  color: white;
}
/* Responsive media queries for dentistry sections */
@media (max-width: 1200px) {
  .cosmetic-dentistry-home-pg-section,
  .general-dentistry-home-pg-section,
  .teeth-whitening-home-pg-section,
  .dental-implants-home-pg-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .cosmetic-dentistry-home-pg-section,
  .general-dentistry-home-pg-section,
  .teeth-whitening-home-pg-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .dental-implants-home-pg-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .cosmetic-content,
  .general-content,
  .teeth-whitening-content,
  .dental-implants-content {
    max-width: 100%;
  }
  
  .cosmetic-content h4,
  .general-content h4,
  .teeth-whitening-content h4,
  .dental-implants-content h4 {
    text-align: center;
  }
  
  .cosmetic-content p,
  .general-content p,
  .teeth-whitening-content p,
  .dental-implants-content p {
    text-align: center;
  }
  
  .cos-dentistry-link,
  .gen-dentistry-link,
  .tw-dentistry-link,
  .di-dentistry-link {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cosmetic-dentistry-home-pg-section,
  .general-dentistry-home-pg-section,
  .teeth-whitening-home-pg-section,
  .dental-implants-home-pg-section {
    padding: 1rem 0.5rem;
    gap: 1.5rem;
  }
  
  .cos-img-cont,
  .gen-img-cont,
  .tw-img-cont,
  .di-img-cont {
    max-width: 280px;
  }
  
  .cos-dentistry-btn,
  .gen-dentistry-btn,
  .tw-dentistry-btn,
  .di-dentistry-btn {
    height: 2.5rem;
    width: 8rem;
    font-size: 0.9rem;
  }
}

/* ********************************************************************general******************************************************** */

.general-dentistry-home-pg-section{
  min-height: 90vh;
  width: 100%;
  background-color: #c0b9b2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
}

.general-dentistry-home-pg-section .gen-img-cont {
  flex: 0 0 45%;
  max-width: 600px;
  aspect-ratio: 4/3;
}

.gen-img-cont img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.general-dentistry-home-pg-section .general-content {
  flex: 0 0 50%;
  max-width: 550px;
}

.general-content h4{
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: normal;
  font-family: 'Sweet Gothic', sans-serif;
  text-align: start;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.general-content p{
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: normal;
  text-align: start;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 2rem;
}

.general-content .gen-dentistry-link{
  text-align: start;
}

.gen-dentistry-link .gen-dentistry-btn{
  height: 3rem;
  width: 10rem;
  border: 1px solid black;
  background-color: transparent;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gen-dentistry-btn:hover{
  background-color: black;
  color: white;
}



/* Enhanced responsive design for general dentistry section */
@media (max-width: 768px) {
  .general-dentistry-home-pg-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1rem;
    min-height: auto;
    gap: 2rem;
  }
  
  .general-dentistry-home-pg-section .general-content {
    max-width: 100%;
    order: 1;
  }
  
  .general-dentistry-home-pg-section .gen-img-cont {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .general-content h4 {
    text-align: center;
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 1rem;
  }
  
  .general-content p {
    text-align: center;
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .general-content .gen-dentistry-link {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .general-dentistry-home-pg-section {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .general-dentistry-home-pg-section .gen-img-cont {
    max-width: 300px;
  }
  
  .general-content h4 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    margin-bottom: 0.8rem;
  }
  
  .general-content p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .gen-dentistry-btn {
    height: 2.5rem;
    width: 8rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }
}

@media (max-width: 360px) {
  .general-dentistry-home-pg-section {
    padding: 1rem 0.5rem;
    gap: 1rem;
  }
  
  .general-dentistry-home-pg-section .gen-img-cont {
    max-width: 250px;
  }
  
  .general-content h4 {
    font-size: clamp(1.1rem, 7vw, 1.4rem);
  }
  
  .general-content p {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
    padding: 0 0.25rem;
  }
  
  .gen-dentistry-btn {
    height: 2.2rem;
    width: 7rem;
    font-size: 0.8rem;
  }
}

/* <!-- ***************************teeth-whitening************************************************** --> */

.teeth-whitening-home-pg-section{
  min-height: 90vh;
  width: 100%;
  background-color: #ded4ca;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
}

.teeth-whitening-home-pg-section .tw-img-cont {
  flex: 0 0 45%;
  max-width: 600px;
  aspect-ratio: 4/3;
}

.tw-img-cont img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.teeth-whitening-home-pg-section .teeth-whitening-content {
  flex: 0 0 50%;
  max-width: 550px;
}

.teeth-whitening-content h4{
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: normal;
  font-family: 'Sweet Gothic', sans-serif;
  text-align: start;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.teeth-whitening-content p{
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: normal;
  text-align: start;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 2rem;
}

.teeth-whitening-content .tw-dentistry-link{
  text-align: end;
}

.tw-dentistry-link .tw-dentistry-btn{
  height: 3rem;
  width: 10rem;
  border: 1px solid black;
  background-color: transparent;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tw-dentistry-btn:hover{
  background-color: black;
  color: white;
}


/* <!-- ***************************dental-implants************************************************** --> */

.dental-implants-home-pg-section{
  min-height: 90vh;
    width: 100%;
  background-color: #c0b9b2;
    display: flex;
    align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
}

.dental-implants-home-pg-section .dental-implants-content {
  flex: 0 0 50%;
  max-width: 550px;
}

.dental-implants-home-pg-section .di-img-cont {
  flex: 0 0 45%;
  max-width: 600px;
  aspect-ratio: 4/3;
}

.di-img-cont img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.dental-implants-content h4{
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: normal;
  font-family: 'Sweet Gothic', sans-serif;
  text-align: start;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.dental-implants-content p{
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: normal;
  text-align: start;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 2rem;
}

.dental-implants-content .di-dentistry-link{
  text-align: start;
}

.di-dentistry-link .di-dentistry-btn{
  height: 3rem;
  width: 10rem;
  border: 1px solid black;
  background-color: transparent;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.di-dentistry-btn:hover{
  background-color: black;
  color: white;
}


 /* ----------------------------------------------------------------------------Special Services---------------------------------------------------------------------- */

 .special-services-section{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #ded4ca;
  padding: 3rem 4rem;
  box-sizing: border-box;
}

.special-services-section .section-title{
  font-size: clamp(2rem, 6vw, 3rem);
  text-align: center;
  color: black;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 3rem;
}

.special-services-section .service-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-container .first-column-container, 
.service-container .second-column-container, 
.service-container .third-column-container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.first-column-container .first-box, .first-column-container .second-box, .first-column-container .third-box,
.second-column-container .first-box, .second-column-container .second-box, .second-column-container .third-box,
.third-column-container .first-box, .third-column-container .second-box, .third-column-container .third-box{
  flex: 1;
  min-height: 220px;
  height: 100%;
}

.first-box, .second-box, .third-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.first-box::before, .second-box::before, .third-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a373, #e9edc9, #ccd5ae);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.first-box:hover::before, .second-box:hover::before, .third-box:hover::before {
  opacity: 1;
}

.first-box:hover, .second-box:hover, .third-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 163, 115, 0.5);
}

.first-box .services-info, .second-box .services-info, .third-box .services-info{
  flex: 1;
  padding: 0;
  text-align: center;
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-info .tooth-care-img1,
.services-info #tooth-care-img2,
.services-info #tooth-care-img3,
.services-info #tooth-care-img4,
.services-info #tooth-care-img5,
.services-info #tooth-care-img6,
.services-info #tooth-care-img7,
.services-info #tooth-care-img8,
.services-info #tooth-care-img9{
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  padding: 0;
  text-align: left;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
}

.first-box .related-img, .second-box .related-img, .third-box .related-img{
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f9f2e8, #e9edc9);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 3px solid rgba(212, 163, 115, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.first-box:hover .related-img, .second-box:hover .related-img, .third-box:hover .related-img {
  transform: scale(1.1);
  border-color: rgba(212, 163, 115, 0.4);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.2);
}

.related-img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Enhanced responsive design for special services */
@media (max-width: 1200px) {
  .special-services-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 1024px) {
  .special-services-section .service-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .first-box, .second-box, .third-box {
    min-height: 200px;
    padding: 1.5rem 1rem;
  }
  
  .first-box .related-img, .second-box .related-img, .third-box .related-img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .special-services-section {
    padding: 2rem 1rem;
  }
  
  .special-services-section .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }
  
  .special-services-section .service-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
    gap: 1.5rem;
    max-width: 800px;
  }
  
  .first-box, .second-box, .third-box {
    min-height: 180px;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .first-box .services-info, 
  .second-box .services-info, 
  .third-box .services-info {
    flex: 1;
    padding: 0;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .first-box .related-img, 
  .second-box .related-img, 
  .third-box .related-img {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #f9f2e8, #e9edc9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .services-info .tooth-care-img1,
  .services-info #tooth-care-img2,
  .services-info #tooth-care-img3,
  .services-info #tooth-care-img4,
  .services-info #tooth-care-img5,
  .services-info #tooth-care-img6,
  .services-info #tooth-care-img7,
  .services-info #tooth-care-img8,
  .services-info #tooth-care-img9 {
    font-size: clamp(0.85rem, 3vw, 1rem);
    padding: 0;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .special-services-section {
    padding: 1.5rem 0;
  }
  
  .special-services-section .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .special-services-section .service-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1rem;
    max-width: 500px;
  }
  
  .first-box, .second-box, .third-box {
    min-height: 160px;
    padding: 1.2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  }
  
  .first-box .services-info, 
  .second-box .services-info, 
  .third-box .services-info {
    flex: 1;
    text-align: center;
    margin-bottom: 0.8rem;
  }
  
  .first-box .related-img, 
  .second-box .related-img, 
  .third-box .related-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
  }
  
  .services-info .tooth-care-img1,
  .services-info #tooth-care-img2,
  .services-info #tooth-care-img3,
  .services-info #tooth-care-img4,
  .services-info #tooth-care-img5,
  .services-info #tooth-care-img6,
  .services-info #tooth-care-img7,
  .services-info #tooth-care-img8,
  .services-info #tooth-care-img9 {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    padding: 0;
    line-height: 1.4;
  }
}

/* Extra small mobile screens */
@media (max-width: 360px) {
  .special-services-section {
    padding: 1rem 0;
  }
  
  .special-services-section .section-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
    margin-bottom: 1rem;
  }
  
  .special-services-section .service-container {
    padding: 0 0.5rem;
    gap: 0.8rem;
  }
  
  .first-box, .second-box, .third-box {
    min-height: 140px;
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    align-items: center;
  }
  
  .first-box .services-info, 
  .second-box .services-info, 
  .third-box .services-info {
    flex: 1;
    text-align: center;
    margin-bottom: 0.6rem;
  }
  
  .first-box .related-img, 
  .second-box .related-img, 
  .third-box .related-img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
  }
  
  .services-info .tooth-care-img1,
  .services-info #tooth-care-img2,
  .services-info #tooth-care-img3,
  .services-info #tooth-care-img4,
  .services-info #tooth-care-img5,
  .services-info #tooth-care-img6,
  .services-info #tooth-care-img7,
  .services-info #tooth-care-img8,
  .services-info #tooth-care-img9 {
    font-size: clamp(0.7rem, 4vw, 0.8rem);
    padding: 0;
    line-height: 1.4;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------------details-section------------------------------------------------------------------- */

.details-section{
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 60px 0;
  /* display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; */
  /* background-color: #BEB2A6; */
  background-color:  #ded4ca;
  border: 2px solid transparent;
}

.details-section .details-section-container{
  height: auto;
  min-height: 40vh;
  width: 85%;
  margin: 40px auto;
  padding: 40px 20px;
  /* margin-top: 3%; */
  /* border: 2px solid green; */
  /* border: 2px solid black; */
}

.details-section .details-slider-wrapper{
  overflow: hidden;
  margin: 0 60x 50px;
}

.details-section-container p{
  text-align: center;
  /* font-size: 1.5rem; */
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 25px;
  /* text-align: start; */
  /* letter-spacing: 0.1rem; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.details-section .section-title{
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  /* color: rgb(76, 76, 7); */
  color: #2c3e50;
  margin: 40px 0 60px 0;
  font-family: 'Open Sans', sans-serif;
  /* border: 2px solid black; */
  /* margin-top: 20px; */
}

.details-section .celebrity {
  display: flex;
  /* padding: 35px; */
  padding-top: 15px;
  padding-bottom: 50px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 4%;
  /* border: 2px solid black; */
}

.details-section .celebrity .celeb-img{
  width: 300px;
  height: 220px;
  background-size: cover;
  /* border-radius: 50%; */
  margin-bottom: 50px;
  border: 10px solid #f9f2e8;
}



.details-section .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  opacity: 1;
  margin-bottom: 5%;
  /* border: 2px solid black; */
}

/* .details-section .lines-for-users{
  height: 30vh;
    width: 80%;
    margin-left: 10%;
margin-top: 5%;
}

.details-section .lines-for-users p{
  text-align: center;
    font-size: 1.2rem;
    font-weight: normal;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  } */

  /* .details-section .slider-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .details-section .slider-wrapper .slider {
    display: flex;
    width: fit-content;
    animation: scrollEffect 15s linear infinite;
  }
  
  .details-section .slider-wrapper.slider img {
    width: 250px; 
    height: 200px;
    background-size: cover;
    margin-right: 20px; 
  } */

  @keyframes scrollEffect {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  

@media (max-width:1060px) {
  .details-section{
    height: auto;
    min-height: 100vh;
    padding: 40px 0;
  }

  .details-section .details-section-container{
    height: auto;
    min-height: 50vh;
    width: 90%;
    margin: 30px auto;
    padding: 30px 15px;
  }

  .details-section-container p, 
  .details-section .lines-for-users p{
    font-size: 1.1rem;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width:500px) and (min-width:400px) {
  .details-section .section-title{
    margin: 30px 0 40px 0;
    font-size: 1.8rem;
  }
  .details-section .lines-for-users{
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .details-section .details-section-container{
    width: 95%;
    margin: 20px auto;
    padding: 20px 10px;
  }
}

@media (max-width:400px) and (min-width:300px) {
    .details-section{
      height: auto;
      min-height: 100vh;
      padding: 30px 0;
      /* border: 2px solid red; */
    }

    .details-section .details-section-container{
      /* border: 2px solid red; */
      width: 95%;
      margin: 20px auto;
      padding: 20px 10px;
    }
    .details-section .details-section-container p{
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .details-section .section-title{
      font-size: 1.5rem;
      margin: 20px 0 30px 0;
    }

    .details-slider-wrapper .swiper-button-prev, .details-slider-wrapper .swiper-button-next{
      display: none;
    }

    .details-section .lines-for-users{
      width: 95%;
      margin: 0 auto;
    }

    .details-section .lines-for-users p{
      font-size: 0.9rem;
    }
  }

  @media(max-width:365px) and (min-width:300px){
    .details-section{
      height: auto;
      min-height: 100vh;
      background-color:  #ded4ca;
      padding: 20px 0;
    }

    .details-section .section-title{
      font-size: 1.4rem;
      margin: 15px 0 25px 0;
    }
  }

  /* -----------------------------------------------------------------------people-main-section----------------------------------------------------------------------------- */

  

 





/* Remove all animations from people slider arrows */
.people-slider-wrapper .swiper-button-next,
.people-slider-wrapper .swiper-button-prev {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}


.people-slider-wrapper .swiper-button-next:hover,
.people-slider-wrapper .swiper-button-prev:hover,
.people-slider-wrapper .swiper-button-next:active,
.people-slider-wrapper .swiper-button-prev:active {
    background-color: #8B4513;
    color: white;
    transform: none !important;
    animation: none !important;
}