/* Scroll Behavior */
/* html {
  scroll-behavior: smooth;

  scroll-snap-type: y mandatory;
  height: 100%;
} */

/* body {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
  height: 100%;
} */


:root{
    --button-background:rgba(132, 31, 39, 1);
    --button-text:rgba(255, 255, 255, 1);
    --button-border-color:rgba(132, 31, 39, 1);
    --button-border-radius:10px;


    --background-accent:#fff7f0;
    --background-accent-secondary:#FBF4FF;

    --text-primary:#111111;
    --black:#1e1e1e;
    --text-secondary:#777777;


    --primary-color:rgba(132, 31, 39, 1);
    --secondary-color:rgba(97, 31, 105, 1);

    --border-primary:#E0E0E0;
    --border-secondary:#F0F0F0;

    --background-gradient:rgba(97, 31, 105, 0.5);

    --header-height:9vh;

    font-size: 16px;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    color: var(--black);
}

body{
    font-family: 'Inter', sans-serif;
}


.container{
    max-width: 1440px;
}

.link{
    color: var(--black);
}


.text-left{
    text-align: left;
}

h2{
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
}
h3{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}
h4{
    font-weight: 600;
    font-size: 1.5rem;
}
h6{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    opacity: 0.8;
    letter-spacing: 0.1rem;
}


section {
    /* scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-behavior: smooth; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-bottom: 8rem;   

    &:first-of-type{
        scroll-margin-top: var(--header-height);
        height: calc(100vh - var(--header-height));
        min-height:unset;
        padding:2rem 0rem;

    }
    @media screen and (max-width: 768px) {
        padding-top: 2rem;

        &:first-of-type .container{
            justify-content: start;
        }
    }
    .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        
    }
}

/* Navbar Styles */
.navbar {
  display:flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  max-height: var(--header-height);
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0) !important;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.2s;
}

.reveal-delay-2 {
  transition-delay: 0.4s;
}

.reveal-delay-3 {
  transition-delay: 0.6s;
}


.button{
    font-weight: 500;
    font-size: 1rem;
    min-width: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5rem;
    border:none;
    text-decoration: none;
    transition: all 0.2s;
}
.button-light{
    background-color: #fff;
    color: var(--secondary-color);
}
.button-light-outline{
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.button-primary{
    background-color: var(--primary-color);
    color: #fff;
}
.button-primary-outline{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.button-secondary{
    background-color: var(--secondary-color);
    color: #fff;
}
.button-secondary-outline{
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.bd-primary{
    border: 1px solid rgb(231, 203, 203);
}
.bd-secondary{
    border: 1px solid #d6cbe7;
}

.highlight-primary{
    color: var(--primary-color);
}

.highlight-secondary{
    color: var(--secondary-color);
}
.hero-bg {
    background:url(./hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border-radius: 2rem;
    margin:0px auto;
    aspect-ratio: 16/8.8;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    &:before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--background-gradient);
        border-radius: 2rem;
        z-index: 1;
    }

    & *{
        z-index: 2;
    }

    @media (max-width: 768px) {
        aspect-ratio: 5/8;
        height:unset;
        width:100%;
    }
}


.text-sm{
    font-size: 0.8rem;
}

.text-md{
    font-size: 1.5rem;
}

.sticky-top{
    position: sticky;
    top: 25vh;
}
@media screen and (max-width: 768px) {
    .sticky-top{
        position: relative;
        top: 0;
    }
}

/* absolute image */
.absolute-image{
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.absolute-image img{
    width: 100%;
    height: 100%;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
}

.category-pill {
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0.3rem 0.5rem 0.3rem;
    transition: all 0.2s;
    cursor: pointer;
}

.category-pill.active, .category-pill:focus {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Navigation Styles */
nav {
    height: var(--header-height);
    margin-bottom: 0px;
}

.navbar-brand img { 
    height: 38px; 
}

.hero-btns .btn {
    min-width: 160px;
    font-weight: 500;
    font-size: 1rem;
}

.shadow-card {
    box-shadow: 0 8px 32px rgba(44, 0, 44, 0.10);
    border-radius: 2rem;
}

.nav-link.active {
    color: #7c2c8e !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-size: 1.05rem;
    margin-right: 0.5rem;
}

.navbar .btn {
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
}

/* Product Cards */
.category-card img, .product-card img { 
    width: 100%; 
    height: 120px; 
    object-fit: cover; 
}

.faq-question { 
    cursor: pointer; 
}

.testimonial-card { 
    background: #fff; 
    border-radius: 1rem; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
}

.footer-bg { 
    background:var(--background-accent); 
    color:var(--text-primary); 
}

/* Process Steps */
.step-circle {
    min-width: 48px;
    height: 48px;
    background: #8a2633;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2px;
    margin-right: 2px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.metric-card {
    background:var(--background-accent-secondary);
    border: 1.5px solid #d6cbe7;
    flex:1;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;

    @media screen and (max-width: 768px) {
        aspect-ratio: 1/1;
    }
}

.metric-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.metric-underline {
    border-bottom: 2px solid #222;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
}

.metric-desc {
    color: #888;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* CTA Card */
.cta-card {
    background: var(--secondary-color);
    color: var(--background-accent-secondary);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 200px;
    position: relative!important;

    @media screen and (max-width: 768px) {
        aspect-ratio: 1/1;
    }

}

.cta-content {
    z-index: 2;
    position: relative;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    align-self: flex-start;
    color: var(--secondary-color);
    border-radius: 2rem;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}


.cta-img {
    height: 30vh;
    position: absolute;
    right: -10%;
    bottom: 0;
    width: auto;
    z-index: 1;
}

/* CTA Banner */
.cta-banner {
    background: var(--secondary-color);
    padding: 3rem;
    color: #fff;
    border-radius: 20px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--secondary-color);
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: var(--secondary-color);
}

.cta-banner-img {
    height: 400px;
    width: auto;
    position: absolute;
    right: -5%;
    bottom: -10%;
    z-index: 1;
}

/* FAQ Styles */
.faq-pill {
    border: 2px solid #6d2380;
    background: #fff;
    color: #6d2380;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.faq-pill.active, .faq-pill:focus {
    background: #6d2380;
    color: #fff;
    border-color: #6d2380;
}

.faq-list { 
    width: 100%; 
}

.faq-card {
    background: var(--background-accent);
    border-radius: 2rem;
    padding:  1.5rem;
    font-size: 1.15rem;
    color: #222;
    box-shadow: none;
    border: none;
}

.faq-q { 
    font-size: 1.15rem; 
    cursor: pointer; 
}

.faq-a { 
    color: #666; 
    font-size: 1.05rem; 
    margin-top: 0.7rem; 
}

.faq-toggle { 
    font-size: 2rem; 
    color: var(--primary-color); 
    margin-left: 1rem; 
}

/* Review Slider */
.review-slider-wrapper { 
    max-width: 100vw; 
}

.review-slider { 
    margin: 0 auto; 
}

.review-card {
    background: #fff7f0;
    border-radius: 2rem;
    padding: 2.2rem 2rem 1.5rem 2rem;
    min-height: 260px;
    box-shadow: none;
    border: none;
    font-size: 1.15rem;
    color: #222;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-style: italic;
    color: #222;
    font-size: 1.15rem;
}

.review-user {
    margin-top: 1.5rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-profession {
    color: #222;
    font-size: 1rem;
    font-weight: 500;
}

.custom-arrow-outline {
    border: 2px solid #222;
    background: #fff;
    color: #222;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s;
}

.custom-arrow-outline:hover {
    background: #f3e6ff;
    color: #6d2380;
    border-color: #6d2380;
}

/* Product Slider */
.slider-wrapper {
    position: relative;
    padding: 0 2.5rem;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: 2px solid #7c2c8e;
    color: #7c2c8e;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s;
}

.custom-arrow:hover {
    background: #7c2c8e;
    color: #fff;
}

.slick-prev { 
    left: 0; 
}

.slick-next { 
    right: 0; 
}

.product-card {
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(44, 0, 44, 0.10);
    border: none;
    margin: 0 0.5rem;
}

.btn-maroon {
    background: #7c2c8e;
    color: #fff;
    border: none;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-maroon:hover {
    background: #5a206a;
    color: #fff;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-bg { 
        min-height: 320px; 
    }
    .sticky-top { 
        position: static !important; 
    }
    .slider-wrapper { 
        padding: 0 1rem; 
    }
    .cta-banner {
        padding: 2rem;
        min-height: auto;
    }
    .cta-banner-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .cta-banner-img {
        position: relative;
        right: auto;
        bottom: auto;
        height: 300px;
        margin-top: 2rem;
    }
    .review-card { 
        padding: 1.2rem 1rem; 
        font-size: 1rem; 
    }
    .faq-card { 
        padding: 1.2rem 1rem; 
        font-size: 1rem; 
    }
    .faq-q { 
        font-size: 1rem; 
    }
}

@media (max-width: 1200px) {
    .metrics-grid { 
        grid-template-columns: 1fr 1fr; 
        grid-template-rows: repeat(3, 1fr); 
    }
    .cta-card { 
        grid-column: 1 / span 2; 
        grid-row: 3 / span 1; 
    }
}

@media (max-width: 767px) {
    .metrics-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: none; 
        gap: 1.2rem; 
    }
    .cta-card { 
        grid-column: 1; 
        grid-row: auto; 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 1.5rem; 
    }
    .cta-img { 
        margin: 1.2rem 0 0 0; 
        right:-15%;
        height: 30vh; 
    }
    .cta-title { 
        font-size: 1.1rem; 
    }
    .product-card img { 
        height: 100px; 
    }
    .slider-wrapper { 
        padding: 0; 
    }
    .cta-banner {
        padding: 1.5rem;
    }
    .cta-banner-title {
        font-size: 1.5rem;
    }
    .cta-banner-img {
        height: 250px;
    }
}

/* CTA Hero Banner (Reference Style) */
.cta-hero-section {
  width: 100vw;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.cta-hero-bg {
  width: 100vw;
  min-height: 70vh;
  background: url('./Banner\ 1.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(97, 31, 105, 0.85);
  z-index: 1;
}

.cta-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem 2rem;
}

.cta-hero-title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.cta-hero-desc {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-hero-btns .btn {
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 2.5rem;
  padding: 0.8rem 2.5rem;
  min-width: 170px;
  box-shadow: 0 2px 12px rgba(44,0,44,0.10);
  transition: all 0.2s;
}
.cta-btn-main {
  background: #fff !important;
  color: var(--secondary-color) !important;
  border: none !important;
}
.cta-btn-main:hover {
  background: #f3e6ff !important;
  color: var(--secondary-color) !important;
}
.cta-btn-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}
.cta-btn-outline:hover {
  background: #fff !important;
  color: var(--secondary-color) !important;
}

.cta-hero-info {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 2.5rem;
  opacity: 0.95;
}

.cta-avatars {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
.cta-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(44,0,44,0.10);
  position: absolute;
  background: #fff;
}
.avatar-1 { left: 12%; top: 18%; }
.avatar-2 { left: 5%; top: 55%; }
.avatar-3 { left: 50%; top: 7%; transform: translateX(-50%); }
.avatar-4 { right: 12%; top: 20%; }
.avatar-5 { right: 7%; top: 60%; }

@media (max-width: 991px) {
  .cta-hero-title { font-size: 2rem; }
  .cta-hero-content { padding: 3rem 1rem 2rem 1rem; }
  .cta-avatar { width: 48px; height: 48px; }
}
@media (max-width: 767px) {
:root{
    font-size: 14px;
}
.review-card{
    display: flex!important;
    flex-direction: column;
    aspect-ratio: 3/2;
    padding: 1rem;
    justify-content: space-between;
}
  .cta-hero-bg { min-height: 60vh; }
  .cta-hero-content { padding: 2rem 0.5rem 1.5rem 0.5rem; }
  .cta-hero-title { font-size: 1.3rem; }
  .cta-hero-desc { font-size: 1rem; }
  .cta-hero-btns .btn { font-size: 1rem; padding: 0.6rem 1.2rem; min-width: 120px; }
  .cta-avatar { width: 36px; height: 36px; }
}


.slick-track{
    display: flex!important;
    align-items: stretch!important;
}

.review-card{
    display: flex!important;
    height:unset!important;
}