h1,h2,h3,h4,h5,h6,p,span,div{
    font-family: "Roboto", sans-serif;
}
:root{
    --primary-gradient-yellow:linear-gradient(122deg, #FBCA29 1.67%, #E1A128 97.34%);
}

p{font-size:20px;}
.hd-1{font-size: 40px !important}
.sub{font-size:28px !important}
.hd-2{font-size:70px !important }
.h2{font-size:32px !important}
.ribbon-heading{font-size: 40px !important; font-weight: 700 !important;}
.ribbon-text{font-size:20px !important; font-weight: 300 !important;}


@media (max-width:1024px) {
    p {font-size: 18px; }
    .hd-1{font-size: 28px !important}
.sub{font-size:24px !important}
.hd-2{font-size:50px !important }
.h2{font-size:24px !important}
.custom-pad-160{
    padding-bottom:80px !important;
}
.ribbon-heading{font-size: 30px !important; font-weight: 700 !important;}
.ribbon-text{font-size:18px !important; font-weight: 300 !important;}
    
}

@media (max-width:480px) {
    p {font-size: 16px; }
    .hd-1{font-size: 24px !important}
.sub{font-size:20px !important}
.hd-2{font-size:40px !important }
.h2{font-size:24px !important}
.custom-pad-160{
    padding-bottom:80px !important;
}
.ribbon-heading{font-size: 24px !important; font-weight: 700 !important;}
.ribbon-text{font-size:16px !important; font-weight: 300 !important;}
    
}

.custom-padding{
    padding: 80px 10px;
}

.custom-pad-160{
    padding-bottom:160px;
}

/* header css */

  /* Custom logo/text */
  .logo-icon {
    font-size: 2rem;
    color: #dbb42c;
    margin-right: 5px;
    vertical-align: middle;
  }
  .navbar-brand span:last-child {
    color: #dbb42c;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
  }
  /* Navigation links */
  .navbar-nav .nav-link {
    font-weight: 600;
    color: #222;
    transition: color 0.2s;
    padding-left:15px !important;
    padding-right: 15px !important;
  }

  .nav-item .nav-link{
    padding-top:20px;
    padding-bottom: 20px;
  }
  

  .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus, .navbar-nav .show>.nav-link {
    color: #222066;
    background: transparent;
  }
  /* Buttons */
  .btn-yellow {
    background: var(--primary-gradient-yellow);
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }
  .btn-yellow:hover {
    background: #dbb42c;
    color: #fff;
  }
  /* Dropdown background and style */
  .custom-dropdown, .mega-menu {
    background: #241F61 !important;
    min-width: 260px;
    border: none;
    box-shadow: none;
    color: #fff;
    margin-top: 3px;
    padding: 18px 24px;
    border-radius: 0;
  }
  .custom-dropdown a, .mega-menu a {
    color: #fff;
    font-size: 1.13rem;
    padding-left: 0;
    transition: color 0.2s;
    font-weight: 500;
    margin-bottom: 8px;
    white-space: normal;
  }
  .custom-dropdown a:hover, .mega-menu a:hover {
    color: #ffd34e;
    background: none;
  }
  /* Mega menu specific */
  .mega-menu {
    width: 95vw;
    left: 2.5vw !important;
    right: 2.5vw !important;
  }
  .mega-menu .col-lg-2 {
    margin-bottom: 18px;
  }
  .mega-menu h6 {
    color: #ffd34e;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 1.13rem;
  }
  /* Remove default dropdown header styling */
  .dropdown-menu {
    border-radius: 0;
    border: none;
  }
  /* Hover functionality for dropdowns and mega menu */
  @media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown:focus-within .dropdown-menu {
      display: block;
      margin-top: 3px;
    }
    .navbar .dropdown .dropdown-toggle::after {
      margin-left: 5px;
    }
  }
  /* Screen overlay for full mega menu look (optional, for extra effect) */
  /* .mega-menu::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(66,76,102,0.8);
    z-index: -1;
  } */

/* header css ends */

/* Hero css Starts */

.hero-bg {
    background: radial-gradient(circle at 0 0, #f5f6f7 60%, #ebecf0 100%);
    position: relative;
    overflow: hidden;
    min-height: 330px;
  }

  .hero-image {
    width: 100%;
    margin-right: 0;
  }
  .shadow-after::after{
    content: "";
    position: absolute;
    background-image: url(../images/shadow.png);
    width: 100%;
    height: 583px;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
  }
  .hero-btn {
    background-color: #ffc43a;
    color: #222;
    border: none;
    font-weight: 500;
    font-size: 24px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 18px;
    transition: background 0.2s;
  }
  .hero-btn:hover {
    background: #ffae00;
    color: #fff;
  }
  .vertical-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: #ffc43a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    z-index: 2;
    font-size: 1rem;
    box-shadow: 2px 4px 16px rgb(0 0 0 / 12%);
  }

/* Hero css ends */

/* Main CSS Start */

.section-title { font-size: 32px; color: #e6a900; font-weight: 700; }
.section-subtitle { color: #e6a900; font-size: 32px; font-weight: 700; }
.highlight-text { color: #e6a900; font-weight: 700; font-size: 24px !important;}
.benefit-box {
  background: var(--primary-gradient-yellow);
  color: #fff;
  border-radius: .6rem;
  padding: 1.1rem;
  text-align: start;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 1rem;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.sticky-sidebar {
  position: sticky;
  top: 1rem;
  z-index: 3;
}
.custom-top{top:700px; transition:0.5s;}

.side-form {
  background: linear-gradient(140deg,#ffd34e 0%,#fdbb37 100%);
  border-radius: 18px;
  padding: 1.5rem 1.3rem 1rem 1.3rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  color: #fff;
}
.side-form label { color: #201829; font-weight: 400; font-size:1rem;}
.side-form .form-control { border-radius: 5px; }
.side-form .form-check-label { font-size: .85rem; font-weight:400;}
.side-form .btn { font-weight: 600; letter-spacing:.5px; }
.form-title-main { font-size:2rem; font-weight:700; margin:0 0 .5rem 0; color:#fff;}
.carousel-caption { position: static; padding:0;}
/* Before/After styles */
.before-after-imgs { display:flex; gap:12px; align-items:flex-end; flex: 1;}
.before-after-imgs img { border-radius: 16px; height:190px; width:auto; object-fit:cover; }
.ba-label {position:relative; margin-top:8px;}
.ba-label span {font-size:1rem; background: #ffc43a;color:#222; padding:3px 10px; border-radius:5px;}
.video-carousel {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,32,102,.10);
  padding: 0.8rem 0.5rem;
  transition:0.5s;
  height:750px;
}
.video-carousel .carousel-item {
  text-align: center;
  padding: 0.2rem 0;
}
.video-title {
  color: #e6a900;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: .8rem;
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #ffd34e;
}
.award-img {
  max-width: 95px;
  margin-right: 16px;
  vertical-align: middle;
}

#carouselVideo1, #carouselVideo2, #carouselVideo3, #carouselVideo4, #carouselVideo5{
    height:730px
}

/* Sticky sidebar */





/* Main CSS End */

/* Testimonial Slider Css */

.testimonials-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 10px;
}

.testimonials-header {
    margin-bottom: 30px;
}

.testimonials-header h2 {
    color: #e6a400;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonials-header h3 {
    color: #e6a400;
    font-size: 32px;
    font-weight: normal;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 400px;
    margin: 0 10px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    width: 400px;
    height: 550px;
    background-color: #fff;
}

.testimonial-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.testimonial-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button::after {
    content: '';
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #e6a400;
    margin-left: 3px;
}

.testimonial-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background-color: #e6a400;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.carousel-btn:hover {
    background-color: #d69500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #e6a400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-slide {
        min-width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    
    .testimonial-content {
        width: 100%;
        max-width: 400px;
        height: 550px;
    }
    
    .testimonials-carousel {
        overflow: hidden;
    }
}

.testimonial-slide {
    min-width: 350px;
    max-width: 400px;
    width: 100%;
    margin: 0 10px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #fff;
    flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-content {
    width: 100%;
    height: 520px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
@media (max-width: 1100px) {
  .testimonials-section { padding: 50px 5px;}
  .testimonial-slide { min-width: 270px; max-width: 350px;}
  .testimonial-content { height: 430px;}
}
@media (max-width: 768px) {
    .testimonial-slide {
        min-width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .testimonial-content {
        width: 100%;
        height: 410px;
        max-width: 480px;
    }
}


  
/* Testimonial Slider Css end */

/* Consultation Css */

.image-wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
  }

  body {
    overflow-x: hidden;
  }
  

/* Footer Css */

.footer-link {
    color:#fff;
    text-decoration:none;
    font-size:1rem;
    transition:color 0.15s;
    font-weight:500;
    opacity:.96;
    display: block;
    margin-bottom: 3px;
  }
  .footer-link:hover, .footer-link:focus {
    color: #fffbe5;
    text-decoration:underline;
    opacity:1;
  }
  @media (max-width: 991.98px) {
    .col-md-4, .col-md-2, .col-md-3 {
      margin-bottom: 24px;
    }
  }
  @media (max-width: 767.98px) {
    .container-xl { padding-left: 1rem; padding-right: 1rem; }
  }

/* Footer Css End */

@media (max-width: 1199.98px) {
    .d-flex.align-items-center.flex-wrap[style*="min-width"] { min-width:0!important; flex-direction:column!important; align-items:start!important;}
    .d-flex.align-items-center.flex-wrap > img { width:100%!important; height:auto!important; max-width:unset!important; margin-bottom:30px;}
    .position-absolute.bg-white.rounded-4 { 
      position:static!important; 
      transform:none!important; 
      left:auto!important; 
      top:auto!important; 
      margin-left:0!important;
      width:100%!important; min-width:0!important; max-width:100%!important; box-shadow:0 8px 48px 0 rgba(33,46,70,0.10)!important;
    }
  }

/* Consultation Css */


/* Consultation Css end */

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1280px;
    }
  }

  @media (max-width: 991.98px) {
    .hero-bg {
      min-height: 470px;
      padding-bottom: 60px;
      padding-top: 3rem;
    padding-bottom: 3rem;
    }
    .vertical-btn {
      right: 16px;
    }
    .hero-image {
      margin: 0 auto;
      display: block;
      margin-top: 24px;
    }
  }
  @media (max-width: 575.98px) {
    .hero-bg {
      padding-top: 2rem;
      padding-bottom: 3rem;
    }
    .vertical-btn {
      font-size: 0.88rem;
      padding: 7px 11px;
      right: 15px;
    }
    .heading-1{font-size: 28px;}
    .heading-2{font-size: 35px;}
  }
  @media (max-width: 991.98px) {
    .sticky-sidebar { position: static; top:auto; }
  }
  @media (max-width: 767.98px) {
    .before-after-imgs { flex-direction: column; align-items: center;}
    .before-after-imgs img { height:130px;}
    .side-form {padding: 1.25rem 1rem;}
  }

  @media screen and (min-width:768px) and (max-width:1023px) {
    .ipad-half-width{width:50%;} 
  }
  
  /* Example sticky styling */
.sticky {
    position: sticky;
    top: 30px;
    z-index: 11;
  }

  .freeze{height: 200px;}
  .emcurve{height: 226px;}
  .sculptor{height: 254px;}
  .calysta{height: 200px;}
  .pd-right{padding-right: 20px;}
  .hifu{height: 144px;}

  .skin{flex-direction: row;}

  /* Scroll on top */

  #scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 32px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border: none;
    background: #e6a400;
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 6px 20px #0002;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.4s, background 0.2s;
  }
  #scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
  }
  #scrollToTopBtn:hover {
    background: #d69500;
  }

  /* hair-build css */

  .hair-section {
    background: #f6f6f6;
    padding: 0 0 0px 0;
  }
  .hair-section .container-xxl {
    max-width: 1600px;
  }
  .hair-section h2 {
    color: #e6a400;
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 16px;
  }
  .hair-section h3 {
    color: #e6a400;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .hair-btn {
    background: linear-gradient(122deg, #FBCA29 1.67%, #E1A128 97.34%);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    padding: 10px 28px;
    margin-top: 16px;
    font-size: 24px;
  }
  .hair-btn:hover {
    background: #d29700;
    color: #fff;
  }
  @media (max-width: 991px) {
    .hair-section .order-lg-1,
    .hair-section .order-lg-2 {
      order: unset !important;
    }
    .hair-section .row { row-gap: 36px; }
    .hair-section h2{font-size:24px;}
    .hair-section h3{font-size:18px;}
    .hair-section{padding-bottom: 50px;}
    .hair-btn{font-size: 18px;}
  }

  @media(min-width:1280px){
    .pad-left{padding-left: 150px;}
  }

 /* love section */

 .feature-section {
    background: linear-gradient(122deg, #FBCA29 1.67%, #E1A128 97.34%);
    color: white;
    padding: 60px 20px;
    margin-bottom: 40px;
  }

  .feature-section h2 {
    font-weight: 700;
    font-size: 48px;
  }

  .feature-box p {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
  }

  @media (max-width: 768px) {
    .feature-box {
      margin-bottom: 30px;
    }
    .feature-section h2 {
        font-weight: 700;
        font-size: 24px;
      }
      .feature-box p {
        margin: 0;
        font-weight: 700;
        font-size: 18px;
      }  
  }


  /* Gallery */

  .before-after-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #F5F5F5;
  }

  .before-after-section h2 {
    color: #c97d12;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 32px;
    text-align: left;
  }

  .image-grid img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
  }

  .image-col {
    padding: 15px;
  }

  @media(max-width:1024px){
    .before-after-section h2{font-size:24px;}
  }

  /* Gallery end */

  .reverse-hair{flex-direction: row-reverse;}

  


  @media(max-width:1024px){
    .reverse{flex-direction:column-reverse;}
    .hero-btn{font-size: 18px;}
}  

@media(min-width:1024px){
  .pad-0{padding:0px !important;}
}

.form-label{color:#201829 !important;}
