/* body {
  background-color: #000;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
} */

/* ===============================
   Futura PT (Cyrillic)
================================ */

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicDemi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicHeavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3 {
  font-weight: 700; /* Bold */
}

.section-title {
  font-weight: 600; /* Demi */
}

p {
  font-weight: 400; /* Book */
}

.small-text {
  font-weight: 300; /* Light */
}


body {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicHeavy.ttf') format('truetype');
  /* font-family: "Poppins", "Futura", "Century Gothic", sans-serif !important; */
  /* font-weight: 400; */
  /* color: #222; */
  background-color: #000;
  /* line-height: 1.7;
  letter-spacing: 0.2px; */
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.header-btn {
  background-color: #FF6B00;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background-color: #000;
  color: #FF6B00;
  transform: translateY(-2px);
  border: 1px solid #FF6B00;
}
.text-danger{
  color: #FF6B00!important;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.left-content h1 {
  line-height: 1.1;
}

.option-box {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.option-box:hover {
  background-color: #2a2a2a;
}

.option-box input {
  border: 2px solid #444;
}

.option-box a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

/* Scroll Animation */
.image-scroll-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.scroll-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scroll-column img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.scroll-column img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Animation keyframes */
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Apply Infinite Scroll */
.scroll-up {
  animation: scrollUp 20s linear infinite;
}

.scroll-down {
  animation: scrollDown 20s linear infinite;
}
.scroll-down {
  animation: scrollDown 22s linear infinite;
}

/* Pause on Hover */
.image-scroll-wrapper:hover .scroll-up,
.image-scroll-wrapper:hover .scroll-down {
  animation-play-state: paused;
}

/* Mobile view adjustments for image section */
@media (max-width: 991px) {
  .image-scroll-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* height: auto; */
    padding: 40px 0;
    gap: 10px;
  }

  .scroll-column {
    /* animation: none; stop auto scroll on mobile */
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
  }

  .scroll-column img {
    width: 45vw;
    height: auto;
    border-radius: 10px;
  }

  /* Enable manual scroll */
  .image-scroll-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .header-btn{
    font-size: 12px;
    padding: 10px;
    font-weight: normal;
    width: inherit;
  }
  .logo img{
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
  .site-header{
    padding-left: 0px!important;
    padding-right: 10px!important;
  }
}


/* .premium-section { */
    /* Subtle drop shadow for section */
    /* box-shadow: 0 6px 36px 0 rgba(195, 183, 204, 0.08), 0 1.5px 2px rgba(198, 184, 223, 0.04); */
    /* border-radius: 28px; */
    /* background: #fff; */
/* } */
.premium-title {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -1px;
    color: #fff;
}
.premium-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    /* Soft peach gradient text */
    background: linear-gradient(90deg, #FF6B00 30%, #dcb1ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient {
    background: linear-gradient(90deg, #FF6B00 30%, #dcb1ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-list {
    margin: 0;
    padding: 0;
}
.gradient-bg {
    display: inline-block;
    min-width: 54px;
    min-height: 54px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 54px;
    color: #fff;
    background: linear-gradient(135deg, #FF6B00 0%, #dcb1ce 100%);
    box-shadow: 0 3px 16px rgba(218, 178, 163, 0.14);
}
.step-head {
    font-size: 1.11em;
    letter-spacing: 0.02em;
    color: rgba(255, 107, 0, 0.8);
}
.step-text {
    font-size: 1em;
    color: #fff;
    margin-bottom: 0;
}
.premium-img-wrapper {
    /* padding: 18px; */
    border-radius: 22px;
    /* background: linear-gradient(140deg, #f3e9db 0%, #f7f0fa 100%); */
    display: inline-block;
    /* box-shadow: 0 8px 40px rgba(228, 181, 160, 0.11); */
    margin-top: 18px;
}
.premium-img {
    border-radius: 18px;
    /* slight filter for premium effect */
    /* box-shadow: 0 6px 28px rgba(219, 179, 216, 0.17); */
    transition: transform .3s cubic-bezier(.47,1.64,.41,.84);
    width: 100%;
}
.premium-img:hover {
    transform: scale(1.04);
}
@media (max-width: 992px) {
    .premium-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .premium-title, .premium-subtitle {
        text-align: center;
    }
    .premium-img-wrapper {
        margin-bottom: 1rem;
    }
}




:root {
  --primary-gradient: linear-gradient(135deg, #e7b874 0%, #dcb1ce 100%);
  --text-dark: #2c2c44;
  --text-muted: #8686a0;
  --card-shadow: 0 8px 32px rgba(220, 177, 206, 0.12);
  --card-shadow-hover: 0 16px 48px rgba(220, 177, 206, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.premium-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  position: relative;
}

.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.premium-card:hover .card-img-top {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 184, 116, 0.8), rgba(255, 107, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-card:hover .card-overlay {
  opacity: 1;
}

.overlay-icon {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.premium-card:hover .overlay-icon {
  transform: scale(1);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.card-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.card-features li i {
  color: #FF6B00;
  margin-right: 0.5rem;
  font-size: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .card-image-wrapper {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .premium-card {
    margin-bottom: 1.5rem;
  }
  
  .card-image-wrapper {
    height: 160px;
  }
  
  .card-body {
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  .card-features li {
    font-size: 0.8rem;
  }
  
  .card-description {
    font-size: 0.9rem;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  animation: fadeInUp 0.6s ease-out;
}

.premium-card:nth-child(1) { animation-delay: 0.1s; }
.premium-card:nth-child(2) { animation-delay: 0.2s; }
.premium-card:nth-child(3) { animation-delay: 0.3s; }
.premium-card:nth-child(4) { animation-delay: 0.4s; }







.timeline-section {
      padding: 60px 15px;
      text-align: center;
    }

    .timeline-section h5 {
      color: #23448d;
      letter-spacing: 1px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .timeline-section h2 {
      color: #fff;
      font-weight: 700;
      margin: 10px 0 20px;
      text-transform: uppercase;
    }

    .timeline-section p {
      max-width: 800px;
      margin: 0 auto 50px;
      color: #555;
      line-height: 1.6;
    }

    .timeline-container {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 60px;
      flex-wrap: nowrap;
      width: 100%;
      /* overflow-x: auto; */
      padding: 0 20px;
      perspective: 1000px;
    }

    .timeline-item {
      text-align: center;
      flex: 0 0 auto;
      transition: transform 0.3s ease;
    }
    .timeline-item a{
      text-decoration: none;
    }

    .timeline-item img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      display: block;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      /* border-radius: 6px; */
    }

    /* .timeline-item span {
      display: block;
      margin-top: 15px;
      color: #fff;
      font-weight: 500;
    } */

    /* Leftmost image - larger, tilted */
    .timeline-item:nth-child(1) img {
      transform: scale(1.15) rotateY(-20deg);
    }

    /* Second left image - slightly less */
    .timeline-item:nth-child(2) img {
      transform: scale(1.02) rotateY(-12deg);
    }

    /* Center images - normal */
    .timeline-item:nth-child(3) img,
    .timeline-item:nth-child(4) img {
      transform: scale(0.88);
    }

    /* Second right image - slightly less */
    .timeline-item:nth-child(5) img {
      transform: scale(1.02) rotateY(-12deg);
    }

    /* Rightmost image - larger, tilted */
    .timeline-item:nth-child(6) img {
      transform: scale(1.15) rotateY(-20deg);
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .timeline-item img {
        /* width: 160px; */
        /* height: 160px; */
      }
    }

    @media (max-width: 768px) {
      .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
      }
      .timeline-item img {
        /* width: 140px; */
        /* height: 140px; */
        transform: scale(1) rotateY(0deg) !important;
      }
    }




.testimonials-section {
  background-color: #000;
  /* font-family: 'Poppins', sans-serif; */
  overflow: hidden;
}

.text-brown {
  color: #FF6B00;
}

/* Testimonial box styling */
.testimonial-box {
  background: #fff;
  padding: 60px;
  border-radius: 10px;
  /* max-width: 550px; */
  position: absolute;
  left: -80px; /* overlap onto image */
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF6B00;
  opacity: 0.3;
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #FF6B00;
}

.blockquote::after {
  content: "”";
  /* font-family: "Georgia", serif; */
  font-size: 90px;
  color: #eee;
  position: absolute;
  right: 40px;
  bottom: -10px;
  opacity: 0.5;
  line-height: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-box {
    position: static;
    transform: none;
    margin: 40px auto;
    padding: 40px 25px;
    left: 0;
    max-width: 90%;
  }
}








.why-kenisha-section {
  background-color: #000;
  overflow: hidden;
}

/* Title */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

/* Cards */
.why-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 25px 25px 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.why-card h5 {
  font-weight: 700;
  color: #FF6B00;
  margin-bottom: 10px;
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  color: #000;
  font-size: 15px;
}

.why-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FF6B00;
  font-weight: bold;
}

.image-col,
.leaf-image-wrapper,
.leaf-image {
  height: 100%;
  border-radius: 100px 10px 100px 10px;
}

.why-kenisha-section .row {
  min-height: 100vh; /* makes the entire section full height of viewport */
}

.leaf-image {
  width: 100%;
  object-fit: cover; /* ensures image fills the shape area neatly */
}


@media (max-width: 991px) {
  .image-curve {
    clip-path: none;
    border-radius: 0;
    height: 350px;
  }
  .section-title {
    text-align: center;
  }
}







.appointment-bg-section {
  position: relative;
  min-height: 700px;
  width: 100vw;
  overflow: hidden;
}
.appointment-bg {
  background: url('../images/banner.png') center center/cover no-repeat;
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.54) blur(0.5px);
}
.appointment-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(112deg,rgba(0,0,0,0.38) 66%,rgba(50,40,33,0.11) 100%);
}
.appointment-section-content { z-index:2; position:relative; }
.appointment-desc {
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicHeavy.ttf') format('truetype');
  font-size: 1.43rem;
  font-style: italic;
  line-height: 1.57;
  text-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.appointment-get { color: #FF6B00; font-size: .99rem; }
.appointment-phone {
  color: #fff;
  /* font-family:'Playfair Display',serif; */
  text-shadow: 0 2px 20px rgba(0,0,0,0.08);
  font-size: 2.1rem;
  font-weight: 700;
}
.appointment-form {
  background: rgba(249,246,240,0.98);
  border-radius: 2rem;
  min-width: 370px;
  max-width: 540px;
  box-shadow: 0 12px 34px rgba(177,162,132,.15);
}
.glass-card {
  backdrop-filter: blur(2px);
}
.appointment-input {
  background: #f6f4ee !important;
  border-radius:14px;
  border: 1.6px solid #ede7df;
  font-size: 1.12rem;
  padding:0.7em 1em;
  color: #2d2924!important;
  transition: box-shadow .24s, border-color .24s;
}
.appointment-input:focus {
  border-color: #FF6B00;
  box-shadow: 0 2px 14px #eeddcc21;
  background: rgba(255, 188, 45, 0.2)!important;
}
.appointment-btn {
  background: #000;
  color: #FF6B00;
  font-weight: 700;
  font-size:1.08rem;
  border-radius:14px;
  letter-spacing: .03em;
  box-shadow: 0 6px 18px #ad947129;
  border: none;
  padding: .7em 2em;
  transition: background .22s, box-shadow .22s;
}
.appointment-btn:hover,.appointment-btn:focus {
  background: #FF6B00;
  /* box-shadow: 0 12px 32px #c4aa832b; */
  color: #000;
}

@media (max-width:1199px) {
  .appointment-desc { font-size:1.21rem;}
  .appointment-form { min-width:unset; max-width:99vw; }
  .appointment-bg-section { min-height:400px;}
}
@media (max-width:991px) {
  .appointment-form { padding:2em; }
}
@media (max-width:767px) {
  .appointment-form { padding:1em;}
  .appointment-desc { font-size:1rem; }
}




.about-who-we-are {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 80px 5%;
      gap: 40px;
    }

    .about-content {
      flex: 1 1 45%;
      max-width: 500px;
    }

    .about-content h5 {
      font-weight: 500;
      color: #ff6f00;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .about-content h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .about-content h1 span {
      color: #ff6f00;
    }

    .about-content p {
      color: #bbb;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .about-brands {
      display: flex;
      gap: 30px;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0.8;
    }

    .about-brands img {
      height: 25px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    /* Puzzle Grid */
    .about-puzzle {
      flex: 1 1 50%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 12px;
      max-width: 100%;
      aspect-ratio: 1 / 1;
      position: relative;
      margin: 0 auto;
    }

    .puzzle-tile {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      background-image: url('../images/website/founder.jpg');
      background-size: 300% 300%;
      background-repeat: no-repeat;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    /* Assign proper slice positions (3x3 grid) */
    .puzzle-tile:nth-child(1) { background-position: 0% 0%; }
    .puzzle-tile:nth-child(2) { background-position: 50% 0%; }
    .puzzle-tile:nth-child(3) { background-position: 100% 0%; }
    .puzzle-tile:nth-child(4) { background-position: 0% 50%; }
    .puzzle-tile:nth-child(5) { background-position: 50% 50%; }
    .puzzle-tile:nth-child(6) { background-position: 100% 50%; }
    .puzzle-tile:nth-child(7) { background-position: 0% 100%; }
    .puzzle-tile:nth-child(8) { background-position: 50% 100%; }
    .puzzle-tile:nth-child(9) { background-position: 100% 100%; }

    /* Slight rotation for organic look */
    .puzzle-tile:nth-child(odd) { transform: rotate(-2deg); }
    .puzzle-tile:nth-child(even) { transform: rotate(2deg); }

    .puzzle-tile:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
      z-index: 2;
    }

    @media (max-width: 992px) {
      .about-who-we-are {
        flex-direction: column;
        text-align: center;
      }
      .about-content {
        max-width: 100%;
      }
      .about-puzzle {
        max-width: 340px;
      }
    }






.faq-section {
      padding: 80px 0;
    }

    .faq-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-weight: 600;
      color: #fff;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .accordion-item {
  border: none;
  background: #f7f5f2;
  border-radius: 6px;
  margin-bottom: 16px; /* adds spacing between FAQ items */
  /* overflow: hidden; prevents content overlap */
}

.accordion-button {
  background-color: #f7f5f2 !important;
  color: #000 !important;
  font-size: 1.05rem;
  font-weight: 500;
  /* font-family: "Playfair Display", serif; */
  box-shadow: none !important;
  border-radius: 6px !important;
  padding: 18px 22px;
  transition: background-color 0.2s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f1efe9 !important; /* subtle active state */
}

.accordion-body {
  background: #f7f5f2;
  color: #444;
  /* font-family: "Poppins", sans-serif; */
  font-size: 0.95rem;
  padding: 0 20px 20px 20px; /* bottom padding ensures spacing */
  line-height: 1.7;
}

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
      transform: rotate(0deg);
    }

    @media (max-width: 992px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }


.highlight-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
}

.oval-highlight {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  margin: 0 6px;
  z-index: 1;
}

/* Triple-handdrawn highlight rings */
.oval-highlight::before,
.oval-highlight::after,
.oval-highlight span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2.5px solid #FF6B00;
  border-radius: 50%;
  width: 110%;
  height: 1.3em;
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}

/* Second ring */
.oval-highlight::after {
  border-width: 2px;
  width: 110%;
  height: 1.35em;
  transform: translate(-50%, -50%) rotate(3deg);
  opacity: 0.6;
}

/* Third ring using inner span pseudo (for variety) */
.oval-highlight span::before {
  border-width: 1.8px;
  width: 125%;
  height: 1.25em;
  transform: translate(-50%, -50%) rotate(1deg);
  opacity: 0.5;
}

.oval-highlight:hover::before,
.oval-highlight:hover::after,
.oval-highlight span:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}






.footer {
    position: relative;
    z-index: 1;
    /* faint white shadow as fallback */
    box-shadow: 0 -2px 10px rgba(255,255,255,0.03);
  }

  /* top glow: a blurred white gradient above the footer */
  .footer::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -28px;            /* how far above the footer the glow starts */
    height: 56px;          /* vertical size of the glow */
    pointer-events: none;
    background: linear-gradient(180deg,
                rgba(255,255,255,0.14) 0%,
                rgba(255,255,255,0.06) 35%,
                rgba(255,255,255,0) 100%);
    filter: blur(10px);
    opacity: 0.95;
    z-index: 0;
  }

  /* ensure content sits above the glow */
  .footer .container { position: relative; z-index: 2; }

  .footer p { margin: 0; color: #d1d1d1; font-size: 0.95rem; }

  .social-link {
    display: inline-block;
    color: #d1d1d1;
    margin-left: 16px;
    font-size: 1.05rem;
    transition: color .2s ease, transform .15s ease;
  }

  .social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
  }

  /* small screens: smaller spacing */
  @media (max-width:576px){
    .social-link { margin-left: 10px; font-size: 0.95rem; }
  }


  /* about page style */
.about-h{
  font-family: 'futura-pt';
  src: url('../futura-pt/FuturaCyrillicHeavy.ttf') format('truetype');
  font-size: 100px;
  line-height: 1.5 !important;
  letter-spacing: 7px;
  color: #fff;
}
.about-p{
  color: #fff;
}
.story-title  {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  /* position: relative; */
  /* display: inline-block; */
  text-align: left;
}
.about-content p{
  text-align: justify;
  hyphens: auto;
  color: #fff;
}
.founder-img-section{
  height: -webkit-fill-available;
}
/* Mission & Vision Section */
.mission-vision-section {
  position: relative;
  /* background: url('../images/m-v-bg.jpg') */
    /* center/cover no-repeat; */
  color: #fff;
  padding: 100px 0;
  /* font-family: 'Poppins', sans-serif; */
}

.mission-vision-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.mission-vision-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* .section-title span {
  color: #d5b981;
} */

.mission-vision-section p {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* Achievements Section */
/* .achievements-section {
  background-color: #f8f7f4;
  font-family: 'Poppins', sans-serif;
} */

.achievement-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-box i {
  font-size: 40px;
  color: #FF6B00;
  margin-bottom: 20px;
}

.achievement-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.achievement-box p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
}

.achievement-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .mission-vision-section {
    padding: 70px 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .achievement-box {
    margin-bottom: 20px;
  }
}





.team-section {
  /* font-family: 'Poppins', sans-serif; */
  color: #fff;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

/* --- Note Section --- */
.note-section {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 0px;
}

.note-section h5 {
  /* font-family: 'Playfair Display', serif; */
  /* color: #d5b981; */
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.note-section p {
  color: #fff;
  line-height: 1.8;
  font-size: 1rem;
}

/* --- Team Area --- */
.team-area {
  position: relative;
  background: linear-gradient(to bottom, #000 60%, #000 60%);
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}

/* Heading */
.team-heading {
  margin-bottom: 100px;
}

.team-heading h6 {
  /* color: #d5b981; */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.team-heading h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.4rem;
  color: #fff;
}

.team-heading h2 span {
  /* color: #d5b981; */
  font-style: italic;
}

/* --- Team Cards --- */
.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* overlap effect */
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image img {
  width: 100%;
  display: block;
}

.team-info {
  padding: 25px 20px;
  text-align: center;
  color: #222;
}

.team-icon i {
  font-size: 28px;
  color: #d5b981;
  margin-bottom: 15px;
}

.team-info h4 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info h6 {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.team-info p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .team-heading h2 {
    font-size: 2rem;
  }
  .team-card {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .note-section {
    padding: 60px 15px;
  }
  .team-card {
    margin-top: -40px;
  }
}


/* personla stylist page */
.process-p{
  color: #fff;
  text-align: center;
  font-weight: 800;
}
.process-section {
  padding: 80px 20px;
  background: #000;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
}


/* Timeline wrapper */
.process-box {
  position: relative;
  /* max-width: 1100px; */
  margin: 0 auto;
}

/* Vertical center line */
.process-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #ccc;
  transform: translateX(-50%);
  z-index: 0;
}

/* Each process item */
.process-item {
  position: relative;
  display: flex;
  align-items: center;
  /* margin: 60px 0; */
}

/* Number circles - centered on the vertical line */
.process-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Content boxes */
.process-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 45%;
  z-index: 1;
}

/* Left and right positioning */
.process-item.left .process-content {
  margin-right: auto;
  /* text-align: right; */
}
.process-item.right .process-content {
  margin-left: auto;
  /* text-align: left; */
}

/* Connector lines from the center line to boxes */
.process-item.left .process-content::before,
.process-item.right .process-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: #ccc;
  transform: translateY(-50%);
}
.process-item.left .process-content::before {
  right: -60px;
}
.process-item.right .process-content::before {
  left: -60px;
}

/* Typography inside boxes */
.process-content h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.process-content p {
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}
.process-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-content ul li {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}
.process-content ul li::before {
  content: "•";
  color: #f49c8a;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* =========== RESPONSIVE STYLES =========== */

/* Tablet */
@media (max-width: 992px) {
  .process-content {
    width: 75%;
    padding: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .process-box::before {
    display: none; /* remove vertical line */
  }

  .process-item {
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 0;
  }

  .process-number {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 15px;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .process-content {
    width: 100%;
    text-align: left !important;
    border-radius: 20px;
    margin-left: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Remove connecting lines on mobile */
  .process-content::before {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .process-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .process-content {
    padding: 18px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}


.package-hero {
  min-height: 100vh;
}

.premium-label {
  color: #FF6B00;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 6px;
}

.package-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.package-subtext {
  color: #fff;
  font-size: 1.13rem;
  /* max-width: 740px; */
  margin: 0 auto 18px auto;
  line-height: 1.6;
}

.package-card {
  background: linear-gradient(135deg, #FF6B00 3%, #FF6B00 60%, #FF6B00 100%);
  border-radius: 22px;
  box-shadow: 0 20px 60px 0 rgba(205,88,150,0.07), 0 1.5px 14px rgba(62,20,39,0.04);
  /* max-width: 630px; */
  /* min-width: 300px; */
  margin-top: 20px;
  margin-bottom: 30px;
}

.package-card-title {
  color: #23222e;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.package-list {
  font-size: 1.11rem;
  color: #fff;
  padding-left: 0;
  list-style: none;
}

.package-list li {
  margin-bottom: 16px;
  /* display: flex; */
  align-items: flex-start;
}

.package-list .star {
  color: #fff;
  font-size: 1.13em;
  margin-right: 12px;
  vertical-align: top;
  line-height: 1;
  margin-top: 2px;
  font-weight: bold;
}

.get-started-btn {
  display: inline-block;
  background: linear-gradient(90deg, #000 18%, #000 65%);
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  border-radius: 11px;
  padding: .72em 2.2em;
  letter-spacing: .01em;
  box-shadow: 0 4px 18px #c084ae23;
  border: none;
  margin-top: 10px;
  transition: background .19s, box-shadow .19s;
}

.get-started-btn:hover,
.get-started-btn:focus {
  background: linear-gradient(90deg, #000 18%, #000 65%);
  color: #fff;
  box-shadow: 0 8px 24px #c084ae35;
}

@media (max-width:767px) {
  .package-card { max-width:97vw; min-width:unset; padding: 1em;}
  .package-heading { font-size:1.34rem;}
}




.packages-section {
  min-height: 100vh;
}
.packages-label {
  color: #c084ae;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.packages-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.16;
  margin-bottom: 6px;
}

.packages-desc {
  color: #fff;
  font-size: 1.08rem;
  /* max-width: 760px; */
  margin: 0 auto 20px auto;
  line-height: 1.55;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 25px 0 rgba(205,88,150,0.06), 0 1.5px 6px rgba(62,20,39,0.04);
  border: 1.8px solid #f3eaea;
  transition: box-shadow .15s;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  box-shadow: 0 8px 34px 0 rgba(205,88,150,0.12), 0 1.5px 14px rgba(62,20,39,0.07);
}

.service-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: #23222e;
  margin-bottom: 1px;
}

.service-sub {
  font-size: 1.03rem;
  color: #6e7680;
  margin-bottom: 6px;
}

.service-list {
  font-size: 1rem;
  color: #45414c;
  margin-bottom: 17px;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.packages-section .star {
  color: #FF6B00;
  font-size: 1em;
  margin-right: 9px;
  vertical-align: top;
  font-weight: bold;
}

.know-more {
  color: #FF6B00;
  font-weight: 600;
  font-size: 1.07rem;
  text-decoration: none;
  transition: color .17s;
}
.know-more:hover {
  color: #000;
  text-decoration: underline;
}
.arrow {
  font-size: 1.1em;
  margin-left: 2px;
  font-weight: bold;
}

@media (max-width:991px) {
  .service-card { min-height: unset; }
}
@media (max-width:767px) {
  .packages-heading { font-size:1.33rem;}
  .service-title { font-size:1.01rem;}
  .packages-desc { font-size:.97rem; }
}



.concerns-section {
  background: #000;
  font-family: 'Poppins', sans-serif;
}

.concerns-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.intro-text {
  color: #fff;
  /* max-width: 750px; */
  margin: 0 auto;
  line-height: 1.7;
}

/* Flip Box */
.flip-box {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 220px;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-box:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-front {
  background: #fff;
  color: #000;
  font-weight: 500;
}

.flip-back {
  background: #FF6B00;
  color: #fff;
  transform: rotateY(180deg);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .flip-inner {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  .flip-inner {
    height: 180px;
  }
}


/* Background section */
.cta-section {
  position: relative;
  background: url('../images/banner.png') center/cover no-repeat fixed;
  /* 👆 fixed background for parallax feel */
  padding: 140px 20px;
  color: #fff;
  overflow: hidden;
}
.wardrobe-cta-section {
  position: relative !important;
  background: url('../images/wardrobe-bg.jpg') center/cover no-repeat fixed !important;
  /* 👆 fixed background for parallax feel */
  padding: 140px 20px !important;
  color: #fff !important;
  overflow: hidden !important;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.wardrobe-cta-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.8) !important;
  z-index: 1 !important;
}

/* Content container */
.cta-section .container-fluid {
  position: relative;
  z-index: 2;
  /* max-width: 720px; */
}
.wardrobe-cta-section .container-fluid {
  position: relative;
  z-index: 2;
  /* max-width: 720px; */
}

/* Heading */
.cta-heading {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* Text */
.cta-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #eee;
  margin-bottom: 40px;
}

/* Button styling */
.btn-cta {
  display: inline-block;
  padding: 14px 42px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  background: linear-gradient(90deg, #FF6B00, #FF6B00);
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: linear-gradient(90deg, #FF6B00, #FF6B00);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-heading {
    font-size: 2.2rem;
  }
  .cta-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 1.9rem;
  }
  .cta-text {
    font-size: 0.95rem;
  }
  .btn-cta {
    padding: 12px 34px;
  }
}




/* WhatsApp Floating Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;   /* moved to right */
  z-index: 9999;
  display: flex;
  align-items: center;
  animation: slideIn 0.8s ease;
}

.whatsapp-chat a {
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* icon on right, text on left */
  gap: 10px;
  text-decoration: none;
}

/* Icon */
.whatsapp-icon {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Text bubble */
.whatsapp-text {
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(15px); /* animate from right */
  white-space: nowrap;
}

/* Show text on hover */
.whatsapp-chat:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

/* Arrow pointer (now pointing RIGHT to icon) */
.whatsapp-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: #fff;
}

/* Entry Animation */
@keyframes slideIn {
  from {
    transform: translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .whatsapp-chat {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-text {
    display: none;
  }
}
