:root {
  --brand: #6C2196;
  --sub: #E94E77;
  --body: #D4AF37;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --background:#FDF7FF;
}
/* ── UCF FEATURES ── */
/* Feature Grid Wrapper */
/* .ucf-grid-container {
    display: grid;
   
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.ucf-card {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 0.5px solid #e8ddd6;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    height: 100%; 
    transition: all 0.3s ease;
}

.ucf-card:hover {
    border-color: #d4a98a;
    box-shadow: 0 10px 30px rgba(180, 120, 80, 0.1);
    transform: translateY(-5px);
}


.ucf-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}


.ucf-card:nth-child(1) .ucf-icon-wrap { background: #fdf0e8; color: #c9956a; }
.ucf-card:nth-child(2) .ucf-icon-wrap { background: #f6eef8; color: #b07faa; }
.ucf-card:nth-child(3) .ucf-icon-wrap { background: #eaf4ee; color: #7aab8e; }

.ucf-card:nth-child(1) { border-left: 4px solid #c9956a; }
.ucf-card:nth-child(2) { border-left: 4px solid #b07faa; }
.ucf-card:nth-child(3) { border-left: 4px solid #7aab8e; }


.ucf-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.ucf-card:nth-child(1) .ucf-tag { background: #fdf0e8; color: #a0622a; }
.ucf-card:nth-child(2) .ucf-tag { background: #f6eef8; color: #8a4f9a; }
.ucf-card:nth-child(3) .ucf-tag { background: #eaf4ee; color: #3a7a56; }

.ucf-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ucf-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}


.uc-image-layout {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
    align-items: center;
}

.uc-img-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.uc-img-box.main { grid-column: 1 / 7; position: relative; }
.uc-img-box.sub { grid-column: 7 / 11; }

.uc-glass-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


@media (max-width: 991px) {
    .ucf-grid-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 767px) {
    .ucf-grid-container {
        grid-template-columns: 1fr; 
    }
    
    .uc-image-layout {
        grid-template-columns: 1fr; 
    }
    .uc-img-box.main, .uc-img-box.sub {
        grid-column: span 1;
    }
} */
/* ============================================================= */
/* Animation for the Rating Badge */
    @keyframes floatAnim {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    .about_thumb{gap: 20px;}
    .floating-badge {
        animation: floatAnim 3s ease-in-out infinite;
    }

    /* Mobile Responsive Logic */
    @media (max-width: 450px) {
        .about_thumb {
            flex-direction: column !important;
        }
        .img_2 {
            margin-top: 60px !important; /* Extra space for the floating badges */
            margin-left: 0 !important;
        }
        .img_1, .img_2 {
            width: 100% !important;
            max-width: 100% !important;
        }
       .about_thumb{gap: 0px;}
    }
    /* ===========================
    slider start 07
    ============================== */
  .bs-section{
  width:100%;
  max-width:100%;
  margin:0 auto;
  padding:2rem 0;
  overflow: hidden;
  background-color: black;
  padding: 10px 40px;
}

/* IMPORTANT FIX */
.bs-swiper-container{
  position:relative;
  width:100%;
  height:77vh;
  overflow:visible; /* FIXED */
}

.swiper-slide{
  height:77vh;
  position:relative;
  overflow:hidden;
  border-radius:16px;
  transition:all 300ms ease;
  transform:scale(0.82);
  /* opacity:0.55; */
}

.swiper-slide.swiper-slide-active{
  transform:scale(1);
  opacity:1;
}

.bs-slide-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:16px;
  object-position: top center;
}

.bs-caption{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:1.5rem 1.2rem 1rem;
  background:linear-gradient(0deg,rgba(0,0,0,0.72) 0%,transparent 100%);
  border-radius:0 0 16px 16px;
  transform:translateY(100%);
  opacity:0;
  transition:all 0.45s ease;
}

.swiper-slide-active .bs-caption{
  transform:translateY(0);
  opacity:1;
}

.bs-caption-title{
  color:#fff;
  font-size:1.8rem;
  font-weight:600;
  margin: 0;
}

.bs-caption-sub{
  color:rgba(255,255,255,0.82);
  font-size:0.8rem;
}

.bs-dot-bar{
  width:32px;
  height:3px;
  background:#fff;
  margin-top:6px;
}

/* NAV */
.bs-btn-prev,.bs-btn-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:36px;
  height:36px;
  background:var(--brand);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.bs-btn-prev{left:10px;}
.bs-btn-next{right:10px;}

.bs-btn-prev svg,.bs-btn-next svg{
  width:16px;
  stroke:#fff;
  fill: white;
}

/* PAGINATION */
.bs-pagination{
  text-align:center;
  margin-top:14px;
}

.bs-pagination .swiper-pagination-bullet{
  background:#bbb;
}

.bs-pagination .swiper-pagination-bullet-active{
  background: #D4AF37;
  width:22px;
  border-radius:4px;
}

/* MOBILE FIX */
@media(max-width:768px){
  .bs-swiper-container{height:75vh;}
}

/* Large desktop */
@media (min-width: 1400px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 75vh;
  }
}

/* Laptop / small desktop */
@media (max-width: 1200px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 75vh;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 75vh;
  }
  .bs-caption {
    padding: 1.5rem 1rem 1rem;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 75vh;
  }
  .swiper-slide {
    border-radius: 12px;
  }
  .bs-caption {
    padding: 1.2rem 0.9rem 0.8rem;
  }
  .bs-btn-prev { left: 6px; }
  .bs-btn-next { right: 6px; }
}

/* Large mobile */
@media (max-width: 600px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 52vh;
  }
  .swiper-slide {
    border-radius: 10px;
  }
  .bs-section {
    padding: 1rem 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 68vh;
  }
  .bs-btn-prev,
  .bs-btn-next {
    width: 30px;
    height: 30px;
  }
  .bs-btn-prev svg,
  .bs-btn-next svg {
    width: 11px;
    height: 11px;
  }
  .bs-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .bs-pagination .swiper-pagination-bullet-active {
    width: 18px;
  }
  .bs-caption-title{
  
  font-size:18px;
  
}

.bs-caption-sub{
  
  font-size:15px;
  line-height: 20px;
}
}

/* Extra small mobile */
@media (max-width: 360px) {
  .bs-swiper-container,
  .swiper-slide {
    height: 62vw;
  }
}
/* Main big heading — ghost + gradient clip via ::after */
.beauty-ghost {
  display: block;
  text-align: center; /* CENTER TEXT */
  font-size: clamp(1rem, 5vw, 3rem); /* REDUCED SIZE */
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,180,200,0.12);
  line-height: 1;
  position: relative;
  user-select: none;

  filter:
    drop-shadow(0 0 25px rgba(230,100,150,0.25))
    drop-shadow(0 0 60px rgba(200,80,130,0.12));
    padding: 30px 20px;
}

/* Gradient Text Overlay */
.beauty-ghost::after {
  content: attr(data-t);
  position: absolute;
  inset: 0;
  text-align: center;

  background: linear-gradient(180deg,
    #fff0f3 0%,
    #f7c5d2 30%,
    #d4957a 60%,
    rgba(8,4,10,0) 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  z-index: 2;
  padding: 25px 18px;
}

/* MOBILE FIX */
@media (max-width: 480px) {
  .beauty-ghost {
    font-size: 2rem; /* SMALLER FOR MOBILE */
    letter-spacing: 0.03em;
    -webkit-text-stroke: 0.6px rgba(255,180,200,0.12);
  }
}
/* ===== */
.ucare-video-top video {
    transform: rotate(180deg);
    
  }

  /* .ucare-video-bottom video {
    transform: rotate(90deg);
    max-height: 120px;
    object-fit: contain;
  } */

/* MOBILE ONLY */
.ucare-video{
  z-index: 1;
}
@media (max-width: 768px) {

  .ucare-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ucare-video-top video {
    transform: rotate(-90deg);
    max-height: 120px;
    object-fit: contain;
    display: none;
  }

  .ucare-video-bottom video {
    transform: rotate(90deg);
    max-height: 120px;
    object-fit: contain;
  }

  .ucare-text {
    margin: 15px 0;
  }

}

/* product section start  */
/* SECTION */
.snest-hero {
  background: #000;
  padding: 60px 15px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 17px;
}
.snest-hero .container {
  position: relative;
}

/* HEADING */
.snest-h1 {
  font-size: clamp(30px, 9vw, 60px);
  color: #fff;
  font-weight: bold;
  /* line-height: 1; */
  margin: 0;
  letter-spacing: 0px;
}
.snest-sub {
  display: block;
  color: #ff4da6;
  font-size: clamp(30px, 7vw, 80px);
  /* margin-top: -10px;  */
  /* font-weight: bold; */
}

/* IMAGE */
.snest-img-wrap img {
  width: 720px;
  max-width: 100%;
  display: block;
  margin: 30px auto 10px; 
}

/* HEARTS */
.snest-hearts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.snest-hearts span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: pink;
  transform: rotate(45deg);
  animation: float 6s linear infinite;
  opacity: 0;
}

/* heart shape */
.snest-hearts span::before,
.snest-hearts span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: inherit;
  border-radius: 50%;
}
.snest-hearts span::before { top: -8px; left: 0; }
.snest-hearts span::after  { left: -8px; top: 0; }

/* RANDOM COLORS + POSITIONS */
.snest-hearts span:nth-child(1){ left:10%; background:#ff4da6; animation-duration:6s;}
.snest-hearts span:nth-child(2){ left:25%; background:#ff66cc; animation-duration:8s;}
.snest-hearts span:nth-child(3){ left:40%; background:#ff85c1; animation-duration:7s;}
.snest-hearts span:nth-child(4){ left:55%; background:#ff99dd; animation-duration:9s;}
.snest-hearts span:nth-child(5){ left:70%; background:#ff4da6; animation-duration:6.5s;}
.snest-hearts span:nth-child(6){ left:85%; background:#ff66cc; animation-duration:8.5s;}
.snest-hearts span:nth-child(7){ left:35%; background:#ff85c1; animation-duration:7.5s;}
.snest-hearts span:nth-child(8){ left:60%; background:#ff99dd; animation-duration:9.5s;}

/* ANIMATION */
@keyframes float {
  0% {
    bottom: -40px;
    opacity: 0;
    transform: translateY(0) rotate(45deg);
  }
  20% { opacity: 0.8; }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateY(-600px) rotate(45deg);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .snest-img-wrap img {
    width: 300px;
    margin-top: -10px;
  }
}

/* academy course start  */
/* ===== TABLE CONTAINER ===== */
/* ===== TABLE CONTAINER ===== */
.ucare-wecare-table-container {
    margin: 40px auto;
    width: 95%;
    max-width: 1200px;
    overflow-x: auto; /* Enables horizontal scroll */
    -webkit-overflow-scrolling: touch; /* Smooth swipe on mobile */
  
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Adds a professional lift */
}

/* ===== TABLE ===== */
.ucare-wecare-pricing-table {
    width: 100%;
    border-collapse: collapse;
    color: #333;
    min-width: 750px; /* Increased min-width to ensure space for all 3 columns */
    margin: 0 auto;
    background-color: #fff;
}

.ucare-wecare-pricing-table th {
    background-color: #6C2196;
    color: #fff;
    padding: 18px 15px;
    text-align: left;
    font-size: 1.1rem;
    border-bottom: 3px solid #E94E77;
    white-space: nowrap; /* Prevents header from wrapping */
}

.ucare-wecare-pricing-table td {
    padding: 16px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* ===== COURSE INFO ===== */
.ucare-wecare-course-name {
    font-weight: bold;
    color: #6C2196;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 6px;
}

.ucare-wecare-course-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    max-width: 400px; /* Keeps text from stretching too wide */
}

/* ===== TYPE & DURATION ===== */
.ucare-wecare-category {
    color: #E94E77;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.ucare-wecare-time {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    display: block;
    margin-bottom: 7px;
}

/* ===== WHATSAPP BUTTON ===== */
.ucare-wecare-whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.ucare-wecare-whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

/* ===== HEADING ===== */
.beauty-heading {
    text-align: center;
    color: #000;
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .beauty-heading {
        font-size: 1.8rem;
    }
    
    /* Ensure the user knows they can scroll if the table is cut off */
    .ucare-wecare-table-container::after {
        content: "← Scroll to view more →";
        display: block;
        text-align: center;
        font-size: 0.7rem;
        color: #999;
        padding: 10px 0;
        text-transform: uppercase;
    }
}
/* = margquee -  */
/* Gradient Fade (Black) */
    .ucare-marquee-wrapper::before,
    .ucare-marquee-wrapper::after {
      content: "";
      position: absolute;
      top: 0;
      width: 120px;
      height: 100%;
      z-index: 2;
    }

    .ucare-marquee-wrapper::before {
      left: 0;
      background: linear-gradient(to right, #000, transparent);
    }

    .ucare-marquee-wrapper::after {
      right: 0;
      background: linear-gradient(to left, #000, transparent);
    }

    @keyframes ucareScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .ucare-scroll-container {
      display: flex;
      width: fit-content;
      animation: ucareScroll 35s linear infinite;
    }

    .ucare-scroll-item {
      display: flex;
      align-items: center;
      white-space: nowrap;
      color: #ffffff;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .ucare-icon {
      margin: 0 30px;
      color: #ffd23d; /* Brand Primary */
      font-size: 20px;
    }

    /* Pause on hover */
    .ucare-marquee-wrapper:hover .ucare-scroll-container {
      animation-play-state: paused;
    }
    /* ============================== our services ================================= / */
    /* GRID FIX FOR EQUAL HEIGHT */
.ser {
    display: flex;
    flex-wrap: wrap;
}

.ser > div {
    display: flex;
}

/* CARD */
.single_course {
    background: #f7f7f7;
    border-radius: 3px; 
    padding: 18px 15px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: .7px solid #e8ddd6;
}

/* IMAGE */
.single_c_img {
    margin-bottom: 15px;
}

.single_c_img img {
    width: 100%;
    height: 320px; /* increased height */
    object-fit: cover;
    border-radius: 10px; /* reduced */
}

/* TITLE */
.single_course h4 a {
    /* font-family: 'Pacifico', cursive; */
    font-size: 20px;
    color: #3a2f2a;
    text-transform: none;
    margin-bottom: 6px;
    display: block;
    font-weight: bold;
}

/* DESCRIPTION */
.ser-p {
    font-family: 'Montserrat', sans-serif;
    color: #5a4d46;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* READ MORE (LIKE IMAGE) */
.Explore {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #3a2f2a !important;
    font-weight: 500;
    text-transform: none;
    display: inline-block;
}

/* Arrow */
.Explore::after {
    content: " →";
}

/* REMOVE OLD BUTTON EFFECTS */
.Explore:hover {
    color: #000 !important;
    transform: none;
}

/* REMOVE UNUSED OLD ELEMENTS */
.single_course .price,
.single_course i,
.single_c_img span {
    display: none;
}
/* ================== why coose us============= */

:root {
  --brand: #6c2196;
  --sub: #e94e77;
  --body: #d4af37;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --background: #fdf7ff;
}

/* SECTION */
.b-service-section {
  background: var(--background);
  padding: 80px 0;
}

/* HEADINGS */
.b-sub {
  color: var(--sub);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.b-main {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

/* LAYOUT */
.b-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* SIDE COLUMNS */
.b-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CENTER IMAGE */
.b-center {
  flex: 1;
  text-align: center;
}

.b-center img {
  max-width: 100%;
  height: auto;
}

/* ITEM */
.b-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* ICON */
.b-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TEXT */
.b-item h4 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #000;
}

.b-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .b-flex {
    flex-direction: column;
    text-align: center;
  }

  .b-item {
    justify-content: center;
    text-align: left;
  }

  .b-col {
    gap: 25px;
  }

  .b-main {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .b-icon {
    width: 45px;
    height: 45px;
  }

  .b-item h4 {
    font-size: 18px;
  }

  .b-item p {
    font-size: 14px;
  }
}