/* Header logos: equal size for logo-w.png / logo-b.webp swap */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
}
#site-logo,
.brand img {
  height: 84px !important;
  width: 84px !important;
  max-width: 84px !important;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 991.98px) {
  .brand {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
  }
  #site-logo,
  .brand img {
    height: 68px !important;
    width: 68px !important;
    max-width: 68px !important;
  }
}

/* Nav dropdown triggers: kill native/Bootstrap button chrome */
.header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2000 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.header.scrolled {
  position: fixed !important;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08) !important;
}
.header button.dropdown-toggle,
.header button.dropdown-toggle.menu-link {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  color: #fff !important;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  pointer-events: auto !important;
}
.header button.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}
.header button.dropdown-toggle i.bx {
  font-size: 1rem !important;
  line-height: 1;
  color: inherit;
}
.header .menu-link {
  color: #fff !important;
}
.header.scrolled button.dropdown-toggle,
.header.scrolled button.dropdown-toggle.menu-link,
.header.scrolled .menu-link {
  color: #576a5a !important;
}
.header .burger-line {
  background: #fff;
}
.header.scrolled .burger-line {
  background: #576a5a;
}

/* Desktop: About submenu + Treatments mega menu on hover */
@media (min-width: 992px) {
  /* Restore centered nav strip */
  .header .navbar-block {
    display: flex !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: calc(100% - 420px) !important;
    overflow: visible !important;
    height: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
  }
  .header .menu {
    overflow: visible !important;
  }
  .header .navbar.container {
    position: relative;
    overflow: visible !important;
  }
  .header {
    overflow: visible !important;
  }
  /* About: anchor submenu under the link */
  .header .menu-item.dropdown:has(> .submenu) {
    position: relative !important;
  }
  .header .submenu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: auto;
    min-width: 200px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2100;
  }
  .header .submenu li a {
    display: block;
    padding: 8px 16px;
    color: #222 !important;
    text-decoration: none;
  }
  .header .submenu li a:hover {
    background: #f5f0e8;
    color: #db8f2a !important;
  }
  .header .menu-item.dropdown:hover > .submenu,
  .header .menu-item.dropdown.dropdown-show > .submenu {
    display: block;
  }

  /* Treatments mega: fixed full-width panel under header (escapes absolute nav) */
  .header .dropdown-content.treatments-mega {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    /* Start overlapping header so mouse never hits a dead gap */
    top: 64px !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: min(78vh, 640px);
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 2100;
    padding-top: 28px; /* invisible hover bridge to Treatments link */
    transform: none !important;
    transition: opacity 0.15s ease, visibility 0.15s ease;
  }
  .header .dropdown-content.treatments-mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 28px;
  }
  .header .dropdown:hover > .dropdown-content.treatments-mega,
  .header .dropdown.dropdown-show > .dropdown-content.treatments-mega,
  .header .dropdown.is-mega-open > .dropdown-content.treatments-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.scrolled .dropdown-content.treatments-mega {
    top: 56px !important;
  }
  .header .treatments-mega .treatments-mega-inner,
  .header .treatments-mega .treatments-mega-foot {
    max-height: min(70vh, 560px);
  }
  .header .treatments-mega .treatments-mega-inner {
    overflow: auto;
  }

  /* Treatments mega menu — split rail redesign */
  .header .treatments-mega-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    max-width: 1140px;
    margin: 0 auto;
    background:
      linear-gradient(180deg, #faf7f2 0%, #ffffff 48%),
      #fff;
    border-top: 3px solid #db8f2a;
    box-shadow: 0 18px 40px rgba(33, 28, 22, 0.14);
  }
  .header .treatments-mega-rail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 1.35rem 0.85rem 1.35rem 1.1rem;
    background: #576a5a;
    color: #fff;
  }
  .header .treatments-mega-kicker {
    margin: 0 0 0.75rem 0.55rem;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
  }
  .header .treatments-cat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.75rem;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .header .treatments-cat i {
    font-size: 1.15rem;
    color: #db8f2a;
  }
  .header .treatments-cat:hover,
  .header .treatments-cat.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    transform: translateX(2px);
  }
  .header .treatments-cat.is-active {
    background: rgba(219, 143, 42, 0.22);
  }
  .header .treatments-mega-panels {
    padding: 1.4rem 1.6rem 1.2rem;
    min-height: 280px;
  }
  .header .treatments-panel[hidden] {
    display: none !important;
  }
  .header .treatments-panel.is-active {
    display: block;
    animation: treatmentsPanelIn 0.28s ease;
  }
  @keyframes treatmentsPanelIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .header .treatments-panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #e6ddd0;
  }
  .header .treatments-panel-head h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: #2f3a32;
    line-height: 1.2;
  }
  .header .treatments-view-all {
    font-size: 13px;
    font-weight: 600;
    color: #db8f2a !important;
    text-decoration: none !important;
    white-space: nowrap;
  }
  .header .treatments-view-all:hover {
    color: #b8731a !important;
  }
  .header .treatments-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem 1.5rem;
  }
  .header .treatments-panel-list a {
    display: block;
    padding: 0.55rem 0.35rem;
    color: #3a3a3a !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.35;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
  }
  .header .treatments-panel-list a:hover {
    color: #db8f2a !important;
    padding-left: 0.55rem;
    border-bottom-color: #f0e4d4;
  }
  .header .treatments-mega-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.85rem 1.4rem;
    background: #dacebe;
    box-shadow: 0 18px 40px rgba(33, 28, 22, 0.14);
  }
  .header .treatments-mega-foot p {
    margin: 0;
    font-size: 13px;
    color: #3f463f;
  }
  .header .treatments-mega-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
    background: #db8f2a !important;
    border-color: #db8f2a !important;
    color: #fff !important;
    padding: 0.55rem 1rem !important;
    font-size: 13px !important;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    white-space: nowrap;
  }
  .header .treatments-mega-cta:hover {
    background: #c47d20 !important;
  }
}

@media (max-width: 991.98px) {
  .header {
    background: transparent !important;
  }
  .header.scrolled {
    background: #fff !important;
  }
  .header .treatments-mega {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    background: #e8dcc3;
  }
  .header .dropdown:not(.dropdown-show) > .treatments-mega {
    display: none !important;
  }
  .header .dropdown.dropdown-show > .treatments-mega {
    display: block !important;
  }
  .header .treatments-mega-inner {
    display: block;
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }
  .header .treatments-mega-rail {
    background: transparent;
    padding: 0.5rem 0;
    gap: 0;
  }
  .header .treatments-mega-kicker {
    color: #576a5a;
    margin-left: 0;
  }
  .header .treatments-cat {
    color: #222 !important;
    padding: 0.65rem 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
  }
  .header .treatments-cat i {
    color: #db8f2a;
  }
  .header .treatments-cat.is-active,
  .header .treatments-cat:hover {
    background: transparent;
    transform: none;
  }
  .header .treatments-mega-panels {
    padding: 0.75rem 0 0.25rem;
    min-height: 0;
  }
  .header .treatments-panel-head h3 {
    font-size: 1.15rem;
  }
  .header .treatments-panel-list {
    grid-template-columns: 1fr;
  }
  .header .treatments-mega-foot {
    flex-direction: column;
    align-items: flex-start;
    box-shadow: none;
    margin-top: 0.75rem;
    padding: 0.85rem;
  }
}

/*Before and after image*/
.comparison-card {
      max-width: 400px;
      background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .comparison-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .highlight {
      color: #f29500;
      font-weight: bold;
    }

    .image-container {
      display: flex;
      gap: 12px;
      justify-content: center;
    }

    .image-box {
      position: relative;
      flex: 1;
      overflow: hidden;
      border-radius: 12px;
      transition: transform 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .image-box:hover {
      transform: scale(1.02);
    }

    .image-box img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

    .label {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 12px;
    }

    

html {
  scroll-behavior: smooth;
}

/* Equal vertical rhythm across homepage sections (hero excluded) */
.dr-section,
.main-section,
.services-section,
section.about-02,
.featured-in-section,
.consultation-section,
#clinic-counter,
.media-carousel,
.testimonial-section,
.instagram-video-gallery,
.container.blogs,
.band {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 767.98px) {
  .dr-section,
  .main-section,
  .services-section,
  section.about-02,
  .featured-in-section,
  .consultation-section,
  #clinic-counter,
  .media-carousel,
  .testimonial-section,
  .instagram-video-gallery,
  .container.blogs,
  .band {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

/* Alternating section bands after hero */
.band-white {
  background: #ffffff !important;
  color: #44403a;
}
.band-beige {
  background: #dacebe !important;
  color: #3d3429;
}

.band-white .section-title,
.band-white h1,
.band-white h2,
.band-white h3,
.band-white .feature-title,
.band-white .featured-in-title,
.band-white .post-title,
.band-white .post-title a {
  color: #1f1a14 !important;
}
.band-beige .section-title,
.band-beige h1,
.band-beige h2,
.band-beige h3,
.band-beige .feature-title,
.band-beige .featured-in-title,
.band-beige .post-title,
.band-beige .post-title a {
  color: #1f1a14 !important;
}

.band-white .sub-title,
.band-white .featured-in-eyebrow {
  color: #8a7355 !important;
}
.band-beige .sub-title,
.band-beige .featured-in-eyebrow {
  color: #6b5340 !important;
}

.band-white p,
.band-white .subtitle,
.band-white .feature-description,
.band-white .featured-in-sub,
.band-white .usp-card div,
.band-white .description,
.band-white .list li {
  color: #555048 !important;
}
.band-beige p,
.band-beige .subtitle,
.band-beige .feature-description,
.band-beige .featured-in-sub,
.band-beige .usp-card div,
.band-beige .description,
.band-beige .list li,
.band-beige .counter-box p.mb-0 {
  color: #3d3429 !important;
}

.band-white .services-all,
.band-beige .services-all {
  color: #db8f2a !important;
}

/* Nested containers shouldn't double-pad */
.band > .container.dr-section,
.band > .container.blogs {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.testimonial-content img {
    width: 100px;
    margin-right: 10px;
}
.testimonial-content .rating-text img {
    width: auto;
    height: 36px;
    max-width: 140px;
    margin-right: 0;
    object-fit: contain;
    flex-shrink: 0;
}

/* Testimonial avatars: kill Owl width:100% stretch */
.testimonials-section-about .testimonial-avatar,
.testimonials-carousel .testimonial-avatar,
img.testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  min-width: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  flex-shrink: 0 !important;
  display: block !important;
  margin-right: 12px !important;
}
.testimonials-section-about .testimonial-author,
.testimonials-carousel .testimonial-author {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px;
  width: 100%;
}
.owl-carousel .owl-item img.testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
}

/* WhatsApp float — consistent circle + white icon */
a.whatsapp-float {
  position: fixed !important;
  width: 56px !important;
  height: 56px !important;
  bottom: 22px !important;
  right: 16px !important;
  background: #25d366 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28) !important;
  z-index: 9999 !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
}
a.whatsapp-float svg {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  fill: #fff !important;
  flex-shrink: 0;
}
a.whatsapp-float svg path {
  fill: #fff !important;
}
a.whatsapp-float img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  display: block !important;
}
.dropdown, .dropend, .dropstart, .dropup {
    position: static!important;
}
.header .menu-item.dropdown:has(> .submenu) {
    position: relative !important;
}
     
section.about-02 {
    background: #dacebe;
}
section.category-section .section-title {
    text-align: left;
}
.section-title .section-description {
    font-weight: 400;
    font-size: 16px;
}
.services-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}
#animated-image {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

    .about_custom_height
    {
        min-height:600px;
    }
       .main-section {
            background-image: none;
            background-color: #dacebe;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            padding-left: 40px;
            padding-right: 40px;
        }
        
        .content-column {
            width: 43%;
        }
        
        .image-column {
    width: 55%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}
img.main-image{
    width: 80%;
    text-align: right;
}
        
        .feature-box {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }
        
      .feature-icon {
    margin-bottom: 15px;
    height: 100px;
    width: 100px;
}
        .feature-icon img {
            height: 100%;
        }
        
        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-description {
            color: #666;
            line-height: 1.5;
        }
        
        .main-title {
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn-visit {
            background-color: #576a5a;;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 40px;
            display: inline-block;
        }
        
        .main-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
        }
        
.secondary-image {
    position: absolute;
    width: 44%;
    bottom: -100px;
    LEFT: 0%;
    border-radius: 20px;
}
        
        .lazyloaded {
            opacity: 1;
            filter: blur(0);
        }
.consultation-section {
    position: relative;
    background: url("/images/home-3-7.webp") no-repeat center center/cover;
    z-index: 1;
    background-position: top;
}
.consultation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000045;
    z-index: 0;
    pointer-events: none;
}
.consultation-section > .container {
    position: relative;
    z-index: 1;
}
        
        .featured-box {
            /*display: flex;*/
            /*flex-direction: column;*/
            /*align-items: center;*/
            /*text-align: center;*/
            max-width: 800px;
            /*margin: 0 auto;*/
        }
        
        .featured-icon {
            margin-bottom: 30px;
        }
        
        .featured-icon svg {
            width: 80px;
            height: 80px;
            fill: #fff;
        }
        
        .featured-title {
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .featured-description {
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
    .consultation-btn {
    background-color: #576a5a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}
        
        .consultation-btn:hover {
            background-color: #333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 768px) {
            .featured-title {
                font-size: 1.5rem;
            }
            
            .featured-description {
                font-size: 1rem;
            }
            
            .featured-icon svg {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 992px) {
            .content-column, .image-column {
                width: 100%;
            }
            
            .main-section {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .secondary-image {
                position: relative;
                bottom: 0;
                margin-top: 30px;
            }
        }
          .media-carousel {
            /* padding from equal-section rhythm */
        }
        
        .media-carousel-container {
            position: relative;
            overflow: hidden;
        }

        .media-carousel .results-swiper {
            overflow: hidden;
            width: 100%;
            padding: 10px 0 20px;
        }
        
        .media-carousel-slide {
            width: 341px !important;
            height: auto;
            box-sizing: border-box;
        }

        .media-carousel .comparison-card {
            max-width: 400px;
            width: 100%;
            margin: 0 auto;
        }
        
        .media-carousel-item {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .media-carousel-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
       .media-carousel-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
        
        .media-carousel-item:hover .media-carousel-image {
            transform: scale(1.03);
        }
        
        .media-carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .media-carousel-item:hover .media-carousel-overlay {
            opacity: 1;
        }
        
        .media-carousel-text {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            padding: 20px;
            width: 100%;
        }
        
        /* Navigation arrows */
        .media-carousel .swiper-button-next,
        .media-carousel .swiper-button-prev {
            color: #000 !important;
            background: rgba(255,255,255,0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            top: 50%;
            margin-top: -20px;
            transform: none;
        }

        .media-carousel .swiper-button-prev { left: 4px; }
        .media-carousel .swiper-button-next { right: 4px; }
        
        .media-carousel .swiper-button-next::after,
        .media-carousel .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
            transform: none;
        }
        
        @media (max-width: 768px) {
            .media-carousel-slide {
                width: 280px !important;
            }
        }
          .testimonial-section {
            /* background from band-beige */
        }
        
        .testimonial-card {
            border-radius: 10px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
       .testimonial-title {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}
        
        /*.testimonial-title:before,*/
        /*.testimonial-title:after {*/
        /*    content: '"';*/
        /*    font-size: 3rem;*/
        /*    color: rgba(0,0,0,0.1);*/
        /*    position: absolute;*/
        /*}*/
        
        /*.testimonial-title:before {*/
        /*    top: -20px;*/
        /*    left: -30px;*/
        /*}*/
        
        .testimonial-title:after {
            bottom: -40px;
            right: -30px;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .rating-container {
            margin-bottom: 30px;
        }
        
        .rating-stars {
            position: relative;
            display: inline-block;
            font-size: 1.5rem;
        }
        
        .rating-stars-empty {
            color: #ddd;
        }
        
        .rating-stars-filled {
            position: absolute;
            top: 0;
            left: 0;
            white-space: nowrap;
            overflow: hidden;
            color: #db8f2a;
        }
        
      .rating-text {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rating-text img {
    height: 36px;
    width: auto !important;
    max-width: 140px;
    object-fit: contain;
}
        
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 30px 20px;
            }
            
            .testimonial-title {
                font-size: 1.2rem;
            }
        }

    .container {
      /* max-width: 1200px; */
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .section-title {
      /*text-align: center;*/
      margin-bottom: 40px;
      font-size: 54px;
      color: #333;
    }
    
.services-section {
  background: #ffffff;
  position: relative;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.services-head .section-title {
  margin: 0;
  color: #222;
}

.services-head .services-all {
  color: #db8f2a !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
}

.service_arrow {
  display: none !important;
}

.service-card {
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fff !important;
  border: 1px solid #ece8e1;
  box-shadow: none !important;
  display: block !important;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: #db8f2a;
  transform: translateY(-3px);
}

.service-card-link {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  color: #222 !important;
  text-decoration: none !important;
}

.service-card-link:hover,
.service-card-link:focus {
  color: #222 !important;
  text-decoration: none !important;
}

.service-media {
  display: block !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden;
  background: #e8e4de;
  line-height: 0;
}

.service-media img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: cover !important;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-image {
  display: none !important;
}

.service-content {
  display: block !important;
  position: static !important;
  inset: auto !important;
  padding: 16px 18px 18px !important;
  background: #fff !important;
  height: auto !important;
  width: 100%;
  box-sizing: border-box;
}

.service-category {
  display: none;
}

.service-title {
  display: block;
  margin: 0 0 12px !important;
  font-size: 1.15rem !important;
  line-height: 1.3 !important;
  font-weight: 600;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f1a14 !important;
}

.service-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.service-button {
  display: inline-block;
  padding: 8px 14px;
  background: #db8f2a;
  color: #fff !important;
  border-radius: 4px;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card:hover .service-button {
  background: #c47d1f;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-content {
    padding: 14px !important;
  }

  .service-title {
    font-size: 1.05rem !important;
  }
}

/* Featured In — light band + original logos on dark plates */
.featured-in-section {
  background: #ffffff;
  overflow: hidden;
}

.featured-in-head {
  text-align: center;
  margin-bottom: 36px;
}

.featured-in-eyebrow {
  display: inline-block;
  color: #db8f2a;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.featured-in-title {
  margin: 0 0 10px;
  color: #1f1a14;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.featured-in-sub {
  margin: 0;
  color: #6b635a;
  font-size: 0.95rem;
}

.featured-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.featured-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: featured-scroll 28s linear infinite;
}

.featured-marquee:hover .featured-marquee-track {
  animation-play-state: paused;
}

.featured-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 84px;
  padding: 12px 28px;
  background: #fff;
  border: 1px solid #e6dfd4;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(28, 24, 20, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.featured-logo-item:hover {
  border-color: #db8f2a;
  transform: translateY(-2px);
}

.featured-logo-item img {
  display: block;
  width: auto;
  max-width: 150px;
  height: 36px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  
  border-radius: 4px;
  padding: 8px 10px;
  box-sizing: content-box;
}

.logo-mark {
  display: none;
}

@keyframes featured-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 575.98px) {
  .featured-logo-item {
    min-width: 150px;
    height: 72px;
    padding: 10px 16px;
  }

  .featured-logo-item img {
    max-width: 120px;
    height: 28px;
    padding: 6px 8px;
  }
}

      .instagram-gallery {
            padding: 40px 0;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            width: 100%;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            aspect-ratio: 1/1;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            background-size: cover;
            background-position: center;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }
        
        @media (max-width: 992px) {
            .gallery-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
          /* Animated Headline Styles */
    .animated-headline {
        position: relative;
        display: inline-block;
        line-height: 1.3;
    }
    
    .dynamic-wrapper {
        position: relative;
        display: inline-block;
    }
    
    .dynamic-wrapper svg {
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 8px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2px;
        stroke-linecap: round;
    }
    
    /* Animation for the headline */
    @keyframes underline-expand {
        0% { transform: scaleX(0); }
        100% { transform: scaleX(1); }
    }
    
    .dynamic-text {
        position: relative;
        display: inline-block;
    }
    
    .dynamic-text.active {
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .dr-section img
    {
        border-radius:25px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .animated-headline {
            font-size: 1.8rem;
        }
    }
    
    @media (max-width: 576px) {
        .animated-headline {
            font-size: 1.5rem;
        }
    }
    .counter-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.counter-box p {
  font-size: 1rem;
  color: #555;
}
.counter-box h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter {
    font-family: 'Montserrat';
    font-weight: 500;
    align-items: center;
}
.usp-card img,
.usp-card .usp-icon {
    width: 88px !important;
    height: 88px !important;
    margin: 0 auto 6px;
    background: #f0f0f0;
    padding: 6px;
    border-radius: 50%;
    object-fit: contain;
    /* Sage stroke on light circle was too faint â€” darken for clarity */
    filter: brightness(0.38) contrast(1.2);
}
.dr-section {
    /* padding from equal-section rhythm */
}
.usp-card {
    text-align: center;
    align-items: center !important;
}
.usp-card div {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 6px;
    color: #333;
    font-weight: 500;
}
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 9/16;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.video-lightbox.d-none {
  display: none;
}

.video-lightbox video {
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.close-lightbox,
.lightbox-arrow {
  position: absolute;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s;
}

.close-lightbox {
  top: 10px;
  right: 20px;
}

.lightbox-arrow.prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow.next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .video-thumb {
    margin-bottom: 15px;
  }
  .usp-card div{
        margin: 7px auto;
  }

  .video-lightbox video {
    max-width: 95vw;
    max-height: 75vh;
  }

  .lightbox-arrow {
    font-size: 1.8rem;
  }

  .close-lightbox {
    font-size: 2rem;
  }
}
.card.blog-post img {
    border-radius: 20px;
    height: 300px;
    object-fit: cover;
}
h5.post-title a {
    font-size: 29px;
    font-weight: 300;
    margin: 0;
    text-align: left;
}
/* .blogs {
    padding: 60px 0px 0px 0px;
} */
section.instagram-video-gallery {
    /* padding from equal-section rhythm */
}
.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(87 106 90 / 71%);
  color: #fff;
  font-size: 28px;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.custom-play-btn svg {
  display: block;
  margin-left: 3px;
}

.custom-play-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


.video-wrapper:hover .video-play-btn {
  display: flex;
}

.video-wrapper:hover video {
  pointer-events: auto;
}
.offer-section
{
    padding:60px 0px;
}
.offer-section h4 {
    font-size: 46px;
}
.offer-section img {
   border-radius:20px;
}
#drVideo
{
 height:650px;
 width:100%;
}
#pre-loader {
  position: fixed;
  z-index: 9999;
  background: #fff;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#pre-loader .preloader-inner {
  position: relative;
  width: 110px;
  height: 110px;
}

#pre-loader img {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 2;
  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  object-fit: contain;
  animation: logo-spin 2.2s linear infinite;
}

/* Circle wave animation */
#pre-loader .wave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: 0;
  border: 3px solid #A1C183;
  border-radius: 50%;
  animation: ripple 1.5s infinite ease-out;
  z-index: 1;
  pointer-events: none;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes logo-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
