/* -------------- VARIABLES & TOKENS -------------- */
:root {
    --primary-color: rgb(227, 129, 95);
    --secondary-color: rgb(214, 112, 76);
    --tertiary-color: #6B7280;
    --bg-color: #FAFAFA;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --site-gutter-desktop: 40px;
    --site-gutter-tablet: 32px;
    --site-gutter-mobile: 20px;
    --site-gutter-mobile-sm: 16px;

    /* ── Typography Scale ───────────────────────────────────────── */
    /* Section titles  — fluid from 1.6rem (mobile) → 2.5rem (desktop) */
    --section-title-size:   clamp(1.6rem, 4vw, 2.5rem);
    --section-title-weight: 600;
    --section-title-lh:     1.1;
    --section-title-ls:     -0.02em;

    /* Body / description copy */
    --body-size:            clamp(0.95rem, 1.5vw, 1.05rem);

    /* Eyebrow labels (small caps row) */
    --eyebrow-size:         0.65rem;
    --eyebrow-ls:           0.35em;
}

/* -------------- UNIFIED CONTAINER SYSTEM -------------- */
/* All sections use the same width structure as footer */
.header-container,
.bhavya-footer,
.bhavya-product-slider-inner,
.bhavya-categories-inner,
.about-inner,
.bhavya-why-choose-inner,
.reference-gallery-inner,
.bhavya-certificates-inner,
.bhavya-faq-inner,
.bhavya-about-story-section,
.bhavya-about-container,
.bhavya-products-inner {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .header-container,
    .bhavya-footer,
    .bhavya-product-slider-inner,
    .bhavya-categories-inner,
    .about-inner,
    .bhavya-why-choose-inner,
    .reference-gallery-inner,
    .bhavya-certificates-inner,
    .bhavya-faq-inner,
    .bhavya-about-story-section,
    .bhavya-about-container,
    .bhavya-products-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .header-container,
    .bhavya-footer,
    .bhavya-product-slider-inner,
    .bhavya-categories-inner,
    .about-inner,
    .bhavya-why-choose-inner,
    .reference-gallery-inner,
    .bhavya-certificates-inner,
    .bhavya-faq-inner,
    .bhavya-about-story-section,
    .bhavya-about-container,
    .bhavya-products-inner {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }
}

@media (max-width: 480px) {
    .header-container,
    .bhavya-footer,
    .bhavya-product-slider-inner,
    .bhavya-categories-inner,
    .about-inner,
    .bhavya-why-choose-inner,
    .reference-gallery-inner,
    .bhavya-certificates-inner,
    .bhavya-faq-inner,
    .bhavya-about-story-section,
    .bhavya-about-container,
    .bhavya-products-inner {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }
}

/* ── Lenis smooth scroll ────────────────────────────────────── */
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* -------------- GLOBAL STYLES -------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* Push footer to bottom on short pages */
.site-content {
    flex-grow: 1;
    width: 100%;
}

 
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* -------------- FOOTER -------------- */
.site-footer {
    margin: 0;
    padding: 0;
}

.bhavya-footer {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 60px 40px 40px;
    margin: 0;
}

/* Top row: branding left + links group right */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(32px, 6vw, 80px);
    width: 100%;
    margin: 0 0 40px;
}

.footer-links-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: clamp(32px, 5vw, 64px);
}

/* Bottom row: subscribe + copyright */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 20px;
}

.footer-copyright {
    width: 100%;
    text-align: center;
}

.footer-branding .site-title {
    color: white;
    font-size: 1.8rem;
    margin: 0;
}

.footer-branding img {
    max-height: 60px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-branding-description {
    margin: 0;
    max-width: 300px;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-branding-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-branding-socials a,
.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: 0.2s;
    flex-shrink: 0;
}

.footer-branding-socials a:hover,
.footer-socials a:hover {
    background: #FFF;
    color: var(--primary-color);
    border-color: #FFF;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-accordion-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.footer-accordion-toggle-label {
    text-align: left;
}

.footer-accordion-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    transition: transform 0.3s ease;
}

.footer-accordion-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-accordion-line-vertical {
    transform: translate(-50%, -50%) rotate(90deg);
}

.footer-accordion.is-open .footer-accordion-line-vertical {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.footer-column-body {
    display: block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column li a:hover {
    color: #FFF;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-contact-label {
    color: #FFF;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.subscribe-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    width: 100%;
    max-width: 380px;
    padding-bottom: 5px;
}

.subscribe-form input {
    background: transparent;
    border: none;
    color: #FFF;
    flex-grow: 1;
    padding: 8px 0;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-form button {
    background: #FFF;
    color: var(--primary-color);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.2s;
}

.subscribe-form button:hover {
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
}

.footer-copyright p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

/* Hide old desktop/mobile split — replaced by footer-top/bottom */
.footer-desktop,
.footer-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .bhavya-footer {
        padding: 40px var(--site-gutter-mobile) 40px !important;
    }
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    .footer-links-group {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        text-align: left;
    }
    .footer-column,
    .footer-accordion {
        width: 100%;
    }
    .footer-accordion {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.14);
    }
    .footer-accordion:first-child {
        border-top: 1px solid rgba(255,255,255,0.14);
    }
    .footer-accordion-toggle {
        width: 100%;
    }
    .footer-column ul,
    .footer-contact-list,
    .footer-contact-item {
        align-items: flex-start;
    }
    .footer-contact-item a,
    .footer-contact-item span {
        text-align: left;
    }
    .footer-accordion-toggle {
        display: flex;
    }
    .footer-title {
        display: none;
    }
    .footer-column-body {
        display: none;
    }
    .footer-accordion.is-open .footer-column-body {
        display: block;
    }
}

/* -------------- HEADER -------------- */
.site-header {
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1200;
    isolation: isolate;
}

.header-container {
    width: 100%;
    margin: 0;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img {
    max-height: 60px;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

/* Every nav item sits at full header height so dropdown aligns to bottom */
.main-navigation ul > li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.main-navigation ul > li > a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.main-navigation ul > li > a:hover,
.main-navigation ul > li > a.active,
.main-navigation .mega-menu-trigger.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
}

.mobile-menu-header {
    display: none !important;
}

.mobile-nav-overlay {
    display: none;
}

/* -------------- HERO SLIDER -------------- */
.site-main {
    width: 100%;
    max-width: 100%;
    padding: 0; /* No padding — sections control their own spacing */
}

.site-main > article,
.site-main .entry-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body.home .site-main .elementor-container {
    width: 100%;
    max-width: 1360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--site-gutter-desktop) !important;
    padding-right: var(--site-gutter-desktop) !important;
}

body.home .site-main .elementor-section.elementor-section-boxed > .elementor-container,
body.home .site-main .elementor-section.elementor-section-stretched > .elementor-container,
body.home .site-main .elementor-section.elementor-section-full_width > .elementor-container {
    width: 100% !important;
    max-width: 1360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.home .site-main .elementor-top-section {
    width: 96%;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

body.home .site-main .elementor-top-section > .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: var(--site-gutter-desktop) !important;
    padding-right: var(--site-gutter-desktop) !important;
}

.bhavya-hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

.bhavya-hero-slider .swiper-slide {
    position: relative;
    display: block;
    width: 100%;
}

.hero-slide-link {
    display: block;
    width: 100%;
    outline: none;
}

.hero-bg-picture {
    display: block;
    width: 100%;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Bhavya Spices Auto Slider Pagination Dots */
.bhavya-hero-slider .swiper-pagination {
    bottom: 30px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.bhavya-hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 9999px;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.bhavya-hero-slider .swiper-pagination-bullet-active {
    width: 32px;
    background: #FFFFFF;
}

 

 

.hero-content h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.hero-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

/* -------------- MEGA MENU REDESIGN - BHAVYA LAYOUT -------------- */
.main-navigation .bhavya-mega-menu {
    position: static;
}

/* Products trigger — same height/style as regular <a> links */
.main-navigation .mega-menu-trigger {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    line-height: 1;
}

.main-navigation .mega-menu-trigger .chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.main-navigation .bhavya-mega-menu:hover .mega-menu-trigger .chevron,
.main-navigation .bhavya-mega-menu:focus-within .mega-menu-trigger .chevron {
    transform: rotate(180deg);
}

.main-navigation .mega-menu-trigger:hover {
    color: var(--primary-color);
}

.main-navigation .mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    background: var(--white);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
    border-top: 1px solid #EAEAEA;
    border-radius: 0 0 14px 14px;
    padding: 26px var(--site-gutter-desktop) 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 20;
}

.mega-menu-close,
.mega-menu-mobile-list {
    display: none;
}

.main-navigation .bhavya-mega-menu:hover .mega-menu-dropdown,
.main-navigation .bhavya-mega-menu:focus-within .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.main-navigation .mega-dropdown-title {
    margin: 0 0 18px;
    color: #4B5563;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.main-navigation .bhavya-mega-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.main-navigation .mega-product-card {
    border: 0;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: none;
    min-height: 240px;
}

.main-navigation .mega-product-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.main-navigation .mega-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    background: #F3F4F6;
    border-radius: 12px;
}

.main-navigation .mega-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    border-radius: 12px;
}

.main-navigation .mega-product-card:hover .mega-product-image img {
    transform: scale(1.06);
}

.main-navigation .mega-product-details {
    padding: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
}

.main-navigation .mega-product-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

.main-navigation .mega-product-subtitle {
    color: #6B7280;
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
    text-align: left;
}

/* -------------- HOME CATEGORIES SECTION -------------- */
.bhavya-categories-section {
    width: 100%;
    margin: 0;
    padding: 8px 0 0;
    background: transparent;
}

.bhavya-categories-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.bhavya-categories-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.bhavya-categories-eyebrow {
    margin: 0;
    color: #8D6A2A;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bhavya-categories-title {
    margin: 0;
    color: #111827;
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
    max-width: 600px;
    min-width: 0;
}

.bhavya-categories-description {
    display: none;
}

.bhavya-categories-head-link {
    width: auto;
    height: 40px;
    padding: 0 16px;
    border-radius: 9999px;
    background: #111827;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.bhavya-categories-header-actions {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.bhavya-categories-head-link:hover {
    background: var(--primary-color);
    transform: translateX(2px);
    color: #FFF;
}

.bhavya-categories-head-link-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.bhavya-categories-head-link-text {
    font-size: 0.82rem;
    line-height: 1;
}

.bhavya-categories-slider-wrap {
    position: relative;
    display: none;
}

.bhavya-categories-slider {
    width: 100%;
    overflow: hidden;
    padding-top: 4px;
    padding-bottom: 8px;
    transform: translateZ(0);
}

.bhavya-categories-slider .swiper-wrapper {
    align-items: flex-start;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bhavya-categories-slider .swiper-slide {
    height: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.bhavya-category-slide:nth-child(odd) .bhavya-category-card {
    margin-top: 0;
}

.bhavya-category-slide:nth-child(even) .bhavya-category-card {
    margin-top: 56px;
}

.bhavya-category-card {
    min-width: 0;
    background: transparent;
    box-shadow: none;
}

.bhavya-category-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    background: #F3F4F6;
}

.bhavya-category-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.bhavya-category-card:hover .bhavya-category-card-image {
    transform: scale(1.04);
}

.bhavya-category-card-content {
    padding-top: 14px;
}

.bhavya-category-card-title {
    margin: 0;
    color: #111827;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 700;
    line-height: 1.32;
}

.bhavya-category-card-link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-size: clamp(0.9rem, 0.95vw, 0.98rem);
    font-weight: 600;
}

.bhavya-category-card-link:hover {
    color: var(--primary-color);
}

.bhavya-category-card-link-icon {
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background: #111827;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1;
}

.bhavya-category-card-link:hover .bhavya-category-card-link-icon {
    background: var(--primary-color);
}

.bhavya-categories-slider-nav {
    margin-top: 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.bhavya-categories-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid #D1D5DB;
    background: #FFF;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bhavya-categories-slider-btn:hover {
    background: #111827;
    border-color: #111827;
    color: #FFF;
}

.bhavya-categories-slider-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bhavya-categories-bento {
    display: none;
}

@media (min-width: 769px) {
    .bhavya-categories-slider-wrap {
        display: none;
    }

    .bhavya-categories-slider-nav {
        display: none;
    }

    .bhavya-categories-bento {
        display: grid;
        gap: 18px;
    }

    .bhavya-categories-bento-row {
        display: grid;
        grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
        gap: 18px;
        align-items: stretch;
    }

    .bhavya-categories-bento-col {
        min-width: 0;
        display: grid;
        gap: 18px;
    }

    .bhavya-categories-bento-col-stack {
        grid-template-rows: repeat(2, minmax(180px, 1fr));
    }

    .bhavya-category-bento-card {
        position: relative;
        min-height: 240px;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    }

    .bhavya-category-bento-link {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        color: #FFF;
    }

    .bhavya-category-bento-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.01);
        transition: transform 0.7s ease;
    }

    .bhavya-category-bento-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(7, 10, 18, 0.06) 0%, rgba(7, 10, 18, 0.34) 45%, rgba(7, 10, 18, 0.84) 100%);
        transition: opacity 0.45s ease;
        z-index: 1;
    }

    .bhavya-category-bento-number {
        position: absolute;
        top: 18px;
        left: 18px;
        z-index: 2;
        color: rgba(255, 255, 255, 0.42);
        font-size: 0.72rem;
        letter-spacing: 0.32em;
        text-transform: uppercase;
    }

    .bhavya-category-bento-content {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 18px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .bhavya-category-bento-title {
        margin: 0;
        color: #FFF;
        font-size: clamp(1.1rem, 1.5vw, 1.75rem);
        font-weight: 600;
        line-height: 1.1;
    }

    .bhavya-category-bento-cta {
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .bhavya-category-bento-link:hover .bhavya-category-bento-image {
        transform: scale(1.06);
    }

    .bhavya-category-bento-link:hover .bhavya-category-bento-overlay {
        opacity: 0.9;
    }

    .bhavya-categories-bento-row:first-child .bhavya-category-bento-card:first-child,
    .bhavya-categories-bento-row:last-child .bhavya-category-bento-card:first-child {
        min-height: 398px;
    }
}

/* -------------- CATEGORIES SECTION (SAPHALYA-STYLE) -------------- */
.bhavya-categories-section {
    background: #fff;
    overflow: hidden;
    padding: 14px 0 80px;
}

.bhavya-categories-inner {
    width: 100%;
}

.bhavya-categories-head {
    width: 100%;
    margin: 0 0 34px;
}

.bhavya-categories-top-head {
    margin-bottom: 28px;
}

.bhavya-categories-label {
    margin: 0 0 14px;
    color: #1a1a1a;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.35em;
}

.bhavya-categories-title {
    margin: 0 0 18px;
    color: #212529;
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

.bhavya-categories-title-accent {
    font-style: normal;
    color: inherit;
}

.bhavya-categories-label-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.bhavya-categories-label-row-text {
    flex: 0 0 auto;
    color: #1a1a1a;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.35em;
}

.bhavya-categories-label-row-line {
    flex: 1 1 auto;
    height: 1px;
    background: #d5d5d5;
}

.bhavya-categories-bento {
    width: 100%;
    margin: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 240px 190px 190px;
}

.bhavya-categories-bento-row,
.bhavya-categories-bento-col,
.bhavya-categories-bento-col-stack {
    display: contents;
}

.bhavya-category-bento-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: none;
    min-width: 0;
    height: 100%;
}

.bhavya-category-bento-card-hero {
    grid-column: 1 / 3;
    grid-row: 1;
}

.bhavya-category-bento-card-wide {
    grid-column: 1 / 3;
    grid-row: 2;
}

.bhavya-category-bento-card-small-left {
    grid-column: 1;
    grid-row: 3;
}

.bhavya-category-bento-card-small-right {
    grid-column: 2;
    grid-row: 3;
}

.bhavya-category-bento-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
}

.bhavya-category-bento-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.7s ease;
}

.bhavya-category-bento-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.bhavya-category-bento-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 80%;
}

.bhavya-category-bento-title {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
}

.bhavya-category-bento-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
}

.bhavya-category-bento-link:hover .bhavya-category-bento-overlay {
    opacity: 0.92;
}

.categories-expertise {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    height: 620px;
}

.top-left {
    display: flex;
    min-width: 0;
}

.top-right {
    display: grid;
    gap: 20px;
    grid-template-rows: 1fr 1fr;
    min-width: 0;
}

.right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 0;
}

.bottom-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 20px;
    width: 100%;
    height: 420px;
}

.bottom-left,
.bottom-right {
    display: flex;
    min-width: 0;
}

.bottom-row,
.bottom-row > .bottom-left,
.bottom-row > .bottom-right,
.bottom-row .bhavya-category-bento-card,
.bottom-row .card {
    min-width: 0;
    max-width: 100%;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    display: flex;
    width: 100%;
    align-items: stretch;
}

.right-bottom > div {
    display: flex;
    min-width: 0;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
    z-index: 1;
    pointer-events: none;
}

.content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    max-width: 80%;
}

.content h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.card-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: #f5f5f5;
    min-height: 100%;
}

.card-horizontal h3 {
    margin: 0;
    color: #111;
    font-size: 20px;
    font-weight: 400;
}

.card-horizontal .bhavya-categories-button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    text-transform: none;
    font-size: 13px;
}

@media (min-width: 769px) {
    .bhavya-categories-slider-wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    .bhavya-categories-section {
        padding-bottom: 64px;
    }

    .bhavya-categories-inner {
    }

    .bhavya-categories-slider-wrap {
        display: block;
    }

    .categories-expertise {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .categories-expertise > .top-row,
    .categories-expertise > .bottom-row {
        display: none;
    }

    .bhavya-categories-slider {
        padding-top: 6px;
        padding-bottom: 10px;
    }

    .bhavya-categories-slider .swiper-slide {
        width: auto;
    }

    .bhavya-categories-slider .card {
        height: auto;
        aspect-ratio: 4 / 5;
        min-height: 0;
    }

    .bhavya-categories-slider .content {
        left: 18px;
        bottom: 18px;
        max-width: calc(100% - 36px);
    }

    .bhavya-categories-slider .content h3 {
        font-size: 18px;
    }

    .bhavya-categories-slider .content p {
        font-size: 13px;
    }

    .bhavya-categories-slider-nav {
        margin-top: 16px;
    }
}

/* Product card design - clean white cards with proper spacing, no shadows */
.reference-product-slider-section,
body.home .reference-product-slider-section {
    background: #ffffff;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
    height: auto !important;
}

.reference-product-slider-section .bhavya-product-card,
body.home .reference-product-slider-section .bhavya-product-card {
    height: 100% !important;
    width: 100% !important;
}

.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    color: inherit;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: none !important;
    overflow: visible;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-4px);
}

.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #e8e8e8;
    overflow: hidden;
    margin-bottom: 20px;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
}

.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    display: block;
    margin: 0 0 12px;
    color: #2d2d2d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    display: block;
    margin: 0 0 24px;
    color: #6d6d6d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    flex: 1;
}

.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #2d2d2d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #4a6b52;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot {
    transform: translateX(4px);
}

/* === Unified product-card override (site-wide) ===
   Makes reference-card, why-choose, mega and product cards visually match.
   Apply only when you want a consistent product-card look across the site.
*/
.reference-card,
.bhavya-why-choose-card,
.bhavya-product-card,
.mega-product-card,
.about-content-card,
.reference-card-large,
.reference-card-small,
.reference-card-wide {
    background: #f3f4f2;
    border-radius: 22px;
    overflow: hidden;
    color: inherit;
    min-height: auto;
}

.reference-card .reference-card-image,
.reference-card .reference-card-link img,
.bhavya-why-choose-card .bhavya-why-choose-image,
.bhavya-product-card .bhavya-product-card-image,
.mega-product-image img {
    position: static !important;
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    transform: none !important;
}

.reference-card-overlay,
.reference-card .reference-card-overlay {
    display: none !important;
}

.reference-card .reference-card-copy,
.bhavya-why-choose-card .bhavya-why-choose-card-copy,
.bhavya-product-card .bhavya-product-card-copy {
    position: static !important;
    display: block;
    padding: 20px 8px 10px;
}

.reference-card .reference-card-title,
.bhavya-product-card .bhavya-product-card-title,
.bhavya-why-choose-card .bhavya-why-choose-card-title,
.mega-product-title {
    color: #2e4d36;
    font-weight: 700;
    font-size: 26px;
    margin: 0 0 12px;
}

.reference-card .reference-card-description,
.bhavya-product-card .bhavya-product-card-description,
.bhavya-why-choose-card .bhavya-why-choose-card-desc,
.mega-product-subtitle {
    color: #6d6d6d;
    font-size: 16px;
    margin: 0 0 22px;
}

.reference-card .reference-card-link,
.bhavya-product-card .bhavya-product-card-link,
.bhavya-why-choose-card .bhavya-why-choose-card-copy a {
    display: block;
    text-decoration: none;
    color: #2e4d36;
}

.reference-card .reference-card-cta-dot,
.bhavya-product-card .bhavya-product-card-cta-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #2e4d36;
    color: #ffffff;
}

@media (max-width: 768px) {
    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
        max-width: none;
    }

    .reference-product-slider-section .bhavya-product-card-title,
    body.home .reference-product-slider-section .bhavya-product-card-title {
        font-size: 24px;
    }
}

/* Final corrective pass: enforce 50/50 columns and clean 4-card product slider */
@media (min-width: 1025px) {
    .about-inner:not(.reference-about-inner),
    .reference-about-inner,
    body.home .reference-about-inner,
    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        align-items: center !important;
        gap: 40px !important;
    }

    .about-inner:not(.reference-about-inner) .about-content,
    .reference-about-section .about-content,
    body.home .reference-about-section .about-content,
    .reference-why-section .bhavya-why-choose-content,
    body.home .reference-why-section .bhavya-why-choose-content {
        width: 100% !important;
        max-width: none !important;
    }

    .about-image-wrap,
    .reference-about-media,
    body.home .reference-about-media,
    .bhavya-why-choose-image-wrap,
    .reference-why-section .bhavya-why-choose-image-wrap,
    body.home .reference-why-section .bhavya-why-choose-image-wrap {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .reference-product-slider-section,
    body.home .reference-product-slider-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 56px 0 72px !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        height: auto !important;
        padding: 0 var(--site-gutter-mobile) !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-title,
    .reference-product-slider-section .bhavya-product-slider-label,
    .reference-product-slider-section .bhavya-product-slider-actions,
    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-title,
    body.home .reference-product-slider-section .bhavya-product-slider-label,
    body.home .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .reference-product-slider-section .bhavya-product-slider-head-copy::after,
    body.home .reference-product-slider-section .bhavya-product-slider-head-copy::after {
        display: none !important;
    }

    .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-actions {
        margin: 0 0 12px !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        width: 100% !important;
        margin-top: 20px !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
        height: auto !important;
        display: flex !important;
    }

    .reference-product-slider-section .bhavya-product-card,
    body.home .reference-product-slider-section .bhavya-product-card {
        width: 100% !important;
        height: 100% !important;
    }

    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        padding: 14px !important;
    }

    .reference-product-slider-section .bhavya-product-card-media,
    body.home .reference-product-slider-section .bhavya-product-card-media {
    }

    .reference-product-slider-section .bhavya-product-card-copy,
    body.home .reference-product-slider-section .bhavya-product-card-copy {
        padding: 16px 6px 8px !important;
    }
}

/* Final override: 50/50 About + Why, larger/sparser marquee, full 4-up product cards */
@media (min-width: 1025px) {
    .about-inner:not(.reference-about-inner),
    .reference-about-inner,
    body.home .reference-about-inner,
    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        align-items: center !important;
    }

    .reference-gallery-section,
    body.home .reference-gallery-section {
        --reference-marquee-duration: 42s !important;
    }

    .reference-gallery-item,
    body.home .reference-gallery-item {
        padding: 0 60px !important;
    }

    .reference-gallery-image,
    body.home .reference-gallery-image {
        height: 120px !important;
    }

    .bhavya-certificates-section {
        --certificate-image-height: 132px !important;
    }

    .bhavya-certificates-track {
        gap: 34px !important;
        animation-duration: 38s !important;
    }

    .bhavya-certificate-item {
        width: clamp(150px, 16vw, 220px) !important;
    }

    .reference-product-slider-section,
    body.home .reference-product-slider-section {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        padding: 56px 0 72px !important;
    }

    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        height: auto !important;
        padding: 0 40px !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-head,
    body.home .reference-product-slider-section .bhavya-product-slider-head {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        gap: 24px !important;
        margin: 0 !important;
    }

    .reference-product-slider-section .bhavya-product-slider-head-copy,
    body.home .reference-product-slider-section .bhavya-product-slider-head-copy {
        flex: 1 1 auto !important;
        max-width: none !important;
    }

    .reference-product-slider-section .bhavya-product-slider-head-copy::after,
    body.home .reference-product-slider-section .bhavya-product-slider-head-copy::after {
        display: none !important;
    }

    .reference-product-slider-section .bhavya-product-slider-label,
    .reference-product-slider-section .bhavya-product-slider-title,
    .reference-product-slider-section .bhavya-product-slider-actions,
    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-label,
    body.home .reference-product-slider-section .bhavya-product-slider-title,
    body.home .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .reference-product-slider-section .bhavya-product-slider-label,
    body.home .reference-product-slider-section .bhavya-product-slider-label {
        margin: 0 0 12px !important;
    }

    .reference-product-slider-section .bhavya-product-slider-title,
    body.home .reference-product-slider-section .bhavya-product-slider-title {
        margin: 0 !important;
        font-size: clamp(2.4rem, 4vw, 4rem) !important;
        line-height: 1.02 !important;
    }

    .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-actions {
        margin: 0 0 6px !important;
        flex-shrink: 0 !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        width: 100% !important;
        margin-top: 28px !important;
        overflow: hidden !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper {
        align-items: stretch !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
        height: auto !important;
    }

    .reference-product-slider-section .bhavya-product-card,
    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card,
    body.home .reference-product-slider-section .bhavya-product-card-link {
        height: 100% !important;
        min-height: 0 !important;
    }

    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
    }
}

/* Client-requested refinements: 40/60 layouts, white icons, mobile title-only cards, and extra nav spacing. */
@media (min-width: 1025px) {
    .about-inner:not(.reference-about-inner) {
        grid-template-columns: 60% 40% !important;
        align-items: center !important;
    }

    .reference-about-inner,
    body.home .reference-about-inner {
        grid-template-columns: 40% 60% !important;
        align-items: center !important;
    }

    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: 40% 60% !important;
        align-items: center !important;
    }

    .about-image-wrap,
    .reference-about-media,
    body.home .reference-about-media,
    .bhavya-why-choose-image-wrap,
    .reference-why-section .bhavya-why-choose-image-wrap,
    body.home .reference-why-section .bhavya-why-choose-image-wrap {
        width: 100% !important;
        max-width: none !important;
    }

    .about-inner:not(.reference-about-inner) .about-content,
    .reference-about-section .about-content,
    body.home .reference-about-section .about-content,
    .reference-why-section .bhavya-why-choose-content,
    body.home .reference-why-section .bhavya-why-choose-content {
        width: 100% !important;
        max-width: none !important;
    }

    .reference-why-section .bhavya-why-choose-content,
    body.home .reference-why-section .bhavya-why-choose-content {
        padding-top: 0 !important;
    }
}

.bhavya-why-choose-icon,
body.home .reference-why-section .bhavya-why-choose-icon {
    color: #ffffff !important;
}

.bhavya-why-choose-card:hover .bhavya-why-choose-icon,
body.home .reference-why-section .bhavya-why-choose-card:hover .bhavya-why-choose-icon {
    color: #ffffff !important;
}

@media (min-width: 769px) {
    .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-actions {
        top: 36px !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        top: 164px !important;
    }
}

@media (max-width: 768px) {
    .bhavya-categories-slider-nav {
        margin-top: 28px !important;
    }

    .bhavya-categories-slider .bhavya-category-bento-description,
    .bhavya-categories-slider .content p,
    .reference-card-description {
        display: none !important;
    }

    .bhavya-categories-slider .bhavya-category-bento-content,
    .reference-card-copy {
        gap: 0 !important;
    }

    .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-actions {
        margin-bottom: 30px !important;
    }

    .about-inner:not(.reference-about-inner),
    .reference-about-inner,
    body.home .reference-about-inner,
    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: 1fr !important;
    }
}

/* Final no-shadow pass: remove shadows from sections, cards, and images. */
:root {
    --box-shadow: none;
}

/* ── Product Slider: No Partial Cards, Proper Overflow ────────── */
.bhavya-product-slider-carousel,
body.home .bhavya-product-slider-carousel {
    overflow: hidden !important;
    width: 100% !important;
}

.bhavya-product-slider-carousel .swiper-wrapper,
body.home .bhavya-product-slider-carousel .swiper-wrapper {
    align-items: stretch !important;
}

.bhavya-product-slider-carousel .swiper-slide,
body.home .bhavya-product-slider-carousel .swiper-slide {
    flex-shrink: 0 !important;
    height: auto !important;
    box-sizing: border-box !important;
}

/* Mobile: 1 card visible — full width */
@media (max-width: 479px) {
    .bhavya-product-slider-carousel .swiper-slide,
    body.home .bhavya-product-slider-carousel .swiper-slide {
        width: 100% !important;
    }
}

/* Small tablet: 2 cards visible with 16px gap */
@media (min-width: 480px) and (max-width: 767px) {
    .bhavya-product-slider-carousel .swiper-slide,
    body.home .bhavya-product-slider-carousel .swiper-slide {
        width: calc((100% - 16px) / 2) !important;
    }
}

/* Tablet: 3 cards visible with 18px gaps (2 gaps = 36px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .bhavya-product-slider-carousel .swiper-slide,
    body.home .bhavya-product-slider-carousel .swiper-slide {
        width: calc((100% - 36px) / 3) !important;
    }
}

/* Laptop: 4 cards visible with 20px gaps (3 gaps = 60px) */
@media (min-width: 1024px) and (max-width: 1919px) {
    .bhavya-product-slider-carousel .swiper-slide,
    body.home .bhavya-product-slider-carousel .swiper-slide {
        width: calc((100% - 60px) / 4) !important;
    }
}

/* 2K/Large screens: 5 cards visible with 24px gaps (4 gaps = 96px) */
@media (min-width: 1920px) {
    .bhavya-product-slider-carousel .swiper-slide,
    body.home .bhavya-product-slider-carousel .swiper-slide {
        width: calc((100% - 96px) / 5) !important;
    }
}

.bhavya-product-card,
body.home .bhavya-product-card {
    width: 100% !important;
    height: 100% !important;
}

.bhavya-product-card-link,
body.home .bhavya-product-card-link {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}
}

body section,
body section *,
body article,
body article *,
body img,
body picture,
body figure,
body .site-header,
body .mega-menu-dropdown,
body .footer-accordion,
body [class*="card"],
body [class*="image-wrap"],
body [class*="media"] {
    box-shadow: none !important;
    text-shadow: none !important;
}

body img,
body picture,
body figure {
    filter: none !important;
}

/* Product slider and gallery sections */
body.home .reference-product-slider-section,
.reference-product-slider-section {
    width: 100%;
    max-width: 100%;
}

body.home .bhavya-product-slider-inner,
.bhavya-product-slider-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

body.home .reference-gallery-section,
.reference-gallery-section {
    padding: 40px;
}

body.home .reference-gallery-wrapper,
.reference-gallery-wrapper {
    width: 100%;
    overflow: hidden;
}

body.home .reference-gallery-track,
.reference-gallery-track {
    display: flex;
    width: max-content;
    max-width: none;
    margin: 0;
    animation-name: bhavya-reference-marquee;
    animation-duration: var(--reference-marquee-duration, 35s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    will-change: transform;
}

body.home .reference-gallery-wrapper:hover .reference-gallery-track,
.reference-gallery-wrapper:hover .reference-gallery-track {
    animation-play-state: running;
}

@keyframes bhavya-reference-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    body.home .bhavya-product-slider-inner,
    .bhavya-product-slider-inner,
    body.home .reference-about-section,
    .reference-about-section,
    body.home .reference-gallery-section,
    .reference-gallery-section,
    body.home .reference-why-section,
    .reference-why-section,
    body.home .reference-faq-section,
    .reference-faq-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* User request: Force product cards flat (no shadow, no background) */
.bhavya-product-card-link,
.reference-product-slider-section .bhavya-product-card-link,
body.home .bhavya-product-card-link,
.reference-card,
.reference-card .reference-card-link,
.reference-card-large,
.reference-card-small,
.reference-card-wide,
.bhavya-product-card,
.bhavya-category-card,
.bhavya-category-card-media,
.bhavya-product-card-media,
.mega-product-card,
.main-navigation .mega-product-card,
.main-navigation .mega-product-image,
.card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: inherit !important;
}

.bhavya-product-card-media,
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media,
.bhavya-category-card-media,
.mega-product-image {
    background: transparent !important;
}

.card::after,
.reference-card-overlay,
.reference-card .reference-card-overlay,
.bhavya-category-bento-overlay,
.bhavya-category-bento-card::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Also remove any inline-ish shadow helpers globally for card-like elements */
body [class*="card"]:not(.no-override),
body [class*="card"] * {
    box-shadow: none !important;
    text-shadow: none !important;
}

/* End of product-card overrides */

/* Final Marquee Section override: matches the supplied marquee CSS. */
.reference-gallery-section,
body.home .reference-gallery-section {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
    --reference-marquee-duration: 35s;
}

.reference-gallery-wrapper,
body.home .reference-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reference-gallery-track,
body.home .reference-gallery-track {
    display: flex;
    width: max-content;
    max-width: none;
    margin: 0;
    animation: bhavya-reference-marquee var(--reference-marquee-duration) linear infinite;
}

.reference-gallery-item,
body.home .reference-gallery-item {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    padding: 0 40px;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
}

.reference-gallery-image,
body.home .reference-gallery-image {
    display: block;
    width: auto;
    max-width: none;
    height: 90px;
    object-fit: contain;
    transition: 0.3s ease;
}

.reference-gallery-image:hover,
body.home .reference-gallery-image:hover {
    transform: scale(1.05);
}

@keyframes bhavya-reference-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .reference-gallery-item,
    body.home .reference-gallery-item {
        padding: 0 20px;
    }

    .reference-gallery-image,
    body.home .reference-gallery-image {
        height: 60px;
    }
}

/* Final Marquee Section override: matches the supplied marquee CSS. */
.reference-gallery-section,
body.home .reference-gallery-section {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
    --reference-marquee-duration: 35s;
}

.reference-gallery-wrapper,
body.home .reference-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reference-gallery-track,
body.home .reference-gallery-track {
    display: flex;
    width: max-content;
    max-width: none;
    margin: 0;
    animation: bhavya-reference-marquee var(--reference-marquee-duration) linear infinite;
}

.reference-gallery-item,
body.home .reference-gallery-item {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    padding: 0 40px;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
}

.reference-gallery-image,
body.home .reference-gallery-image {
    display: block;
    width: auto;
    max-width: none;
    height: 90px;
    object-fit: contain;
    transition: 0.3s ease;
}

.reference-gallery-image:hover,
body.home .reference-gallery-image:hover {
    transform: scale(1.05);
}

@keyframes bhavya-reference-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .reference-gallery-item,
    body.home .reference-gallery-item {
        padding: 0 20px;
    }

    .reference-gallery-image,
    body.home .reference-gallery-image {
        height: 60px;
    }
}

/* Final About Us override: matches the supplied About section CSS. */
.reference-about-section,
body.home .reference-about-section {
    height: auto;
    min-height: 0;
    padding: 80px 40px;
    background: #eef2ef;
    overflow: visible;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.reference-about-inner,
body.home .reference-about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

.reference-about-media,
body.home .reference-about-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    padding: 0;
    border-radius: 32px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.reference-about-media::before,
body.home .reference-about-media::before {
    display: none;
}

.reference-about-image,
body.home .reference-about-image {
    position: static;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: none;
}

.reference-about-section .about-content,
body.home .reference-about-section .about-content {
    width: 100%;
    max-width: none;
    padding-top: 0;
    justify-self: auto;
    text-align: left;
}

.reference-about-section .about-heading,
body.home .reference-about-section .about-heading {
    margin: 0 0 20px;
    color: #111111;
    font-family: var(--font-heading);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

.reference-about-section .about-label-row,
body.home .reference-about-section .about-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
}

.reference-about-section .about-label-row-text,
body.home .reference-about-section .about-label-row-text {
    flex: 0 0 auto;
    color: #777777;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.reference-about-section .about-label-row-line,
body.home .reference-about-section .about-label-row-line,
.reference-about-section .story-line::after,
body.home .reference-about-section .story-line::after {
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: #bbbbbb;
}

.reference-about-section .about-description,
body.home .reference-about-section .about-description {
    max-width: none;
    margin: 0;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.reference-about-section .about-description p,
body.home .reference-about-section .about-description p {
    margin: 0 0 22px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.reference-about-section .about-description p:last-child,
body.home .reference-about-section .about-description p:last-child {
    margin-bottom: 22px;
}

.reference-about-section .about-btn,
body.home .reference-about-section .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 14px 28px;
    border-radius: 28px;
    background: #e3815f;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
    box-shadow: none;
    transition: 0.3s;
    transform: none;
}

.reference-about-section .about-btn:hover,
body.home .reference-about-section .about-btn:hover {
    background: #cf6f4e;
    color: #ffffff;
    transform: none;
}

@media (max-width: 900px) {
    .reference-about-inner,
    body.home .reference-about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reference-about-section .about-heading,
    body.home .reference-about-section .about-heading {
        font-size: var(--section-title-size);
    }

    .reference-about-media,
    body.home .reference-about-media,
    .reference-about-image,
    body.home .reference-about-image {
        min-height: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .reference-about-section,
    body.home .reference-about-section {
        padding: 56px 20px;
    }
}

/* Final About Us override: matches the supplied About section CSS. */
.reference-about-section,
body.home .reference-about-section {
    height: auto;
    min-height: 0;
    padding: 80px 40px;
    background: #eef2ef;
    overflow: visible;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.reference-about-inner,
body.home .reference-about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

.reference-about-media,
body.home .reference-about-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    padding: 0;
    border-radius: 32px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.reference-about-media::before,
body.home .reference-about-media::before {
    display: none;
}

.reference-about-image,
body.home .reference-about-image {
    position: static;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: none;
}

.reference-about-section .about-content,
body.home .reference-about-section .about-content {
    width: 100%;
    max-width: none;
    padding-top: 0;
    justify-self: auto;
    text-align: left;
}

.reference-about-section .about-heading,
body.home .reference-about-section .about-heading {
    margin: 0 0 20px;
    color: #111111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.reference-about-section .about-label-row,
body.home .reference-about-section .about-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
}

.reference-about-section .about-label-row-text,
body.home .reference-about-section .about-label-row-text {
    flex: 0 0 auto;
    color: #777777;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.reference-about-section .about-label-row-line,
body.home .reference-about-section .about-label-row-line,
.reference-about-section .story-line::after,
body.home .reference-about-section .story-line::after {
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: #bbbbbb;
}

.reference-about-section .about-description,
body.home .reference-about-section .about-description {
    max-width: none;
    margin: 0;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.reference-about-section .about-description p,
body.home .reference-about-section .about-description p {
    margin: 0 0 22px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.reference-about-section .about-description p:last-child,
body.home .reference-about-section .about-description p:last-child {
    margin-bottom: 22px;
}

.reference-about-section .about-btn,
body.home .reference-about-section .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 14px 28px;
    border-radius: 28px;
    background: #e3815f;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
    box-shadow: none;
    transition: 0.3s;
    transform: none;
}

.reference-about-section .about-btn:hover,
body.home .reference-about-section .about-btn:hover {
    background: #cf6f4e;
    color: #ffffff;
    transform: none;
}

@media (max-width: 900px) {
    .reference-about-inner,
    body.home .reference-about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reference-about-section .about-heading,
    body.home .reference-about-section .about-heading {
        font-size: 42px;
    }

    .reference-about-media,
    body.home .reference-about-media,
    .reference-about-image,
    body.home .reference-about-image {
        min-height: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .reference-about-section,
    body.home .reference-about-section {
        padding: 56px 20px;
    }
}

/* Product Slider exact-match baseline for both front-end and Elementor editor. */
.reference-product-slider-section {
    background: #ffffff;
    height: 843.48px;
    padding: 0;
    overflow: hidden;
}

.reference-product-slider-section .bhavya-product-slider-inner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.reference-product-slider-section .bhavya-product-slider-head {
    display: block;
    margin: 0;
}

.reference-product-slider-section .bhavya-product-slider-head-copy {
    max-width: none;
}

.reference-product-slider-section .bhavya-product-slider-label {
    position: absolute;
    left: 40px;
    top: 85.02px;
    margin: 0;
    color: #1a1a1a;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10.105px;
    font-weight: 400;
    line-height: 10.105px;
    letter-spacing: 3.5368px;
    text-transform: uppercase;
}

.reference-product-slider-section .bhavya-product-slider-title {
    position: absolute;
    left: 40px;
    top: 0;
    margin: 0;
    color: #212529;
    font-family: var(--font-heading);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

.reference-product-slider-section .bhavya-product-slider-description {
    display: none;
}

.reference-product-slider-section .bhavya-product-slider-head-copy::after {
    content: "";
    position: absolute;
    left: 156.17px;
    right: 40px;
    top: 88.51px;
    height: 1.011px;
    background: #d5d5d5;
}

.reference-product-slider-section .bhavya-product-slider-actions {
    position: absolute;
    top: 21px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 17px;
}

.reference-product-slider-section .bhavya-product-slider-nav {
    display: inline-flex;
    align-items: center;
    gap: 26px;
}

.reference-product-slider-section .bhavya-product-slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #666666;
    font-size: 24px;
    line-height: 18px;
    opacity: 1;
    transform: none;
}

.reference-product-slider-section .bhavya-product-slider-prev {
    opacity: 0.5;
}

.reference-product-slider-section .bhavya-product-slider-btn:hover {
    background: transparent;
    color: #666666;
    transform: none;
}

.reference-product-slider-section .bhavya-product-slider-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 98.41px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 8px;
    background: #e3815f;
    color: #ffffff;
    font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    letter-spacing: -0.42px;
    text-transform: none;
    transform: none;
}

.reference-product-slider-section .bhavya-product-slider-view-all:hover {
    background: #e3815f;
    color: #ffffff;
    transform: none;
}

.reference-product-slider-section .bhavya-product-slider-carousel {
    position: absolute;
    left: 40.48px;
    right: 43.52px;
    top: 138.07px;
    overflow: hidden;
    padding: 0;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper {
    align-items: stretch;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
    height: 565.405px;
}

.reference-product-slider-section .bhavya-product-card {
    height: 100%;
    min-width: 0;
}

.reference-product-slider-section .bhavya-product-card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 565.405px;
    min-height: 565.405px;
    border-radius: 22.95px;
    background: #eef2ef;
    color: inherit;
    box-shadow: none;
    overflow: hidden;
    text-decoration: none;
    transform: none;
}

.reference-product-slider-section .bhavya-product-card-link:hover {
    transform: none;
    box-shadow: none;
}

.reference-product-slider-section .bhavya-product-card-media {
    position: absolute;
    left: 16.69px;
    right: 16.69px;
    top: 16.69px;
    display: block;
    width: auto;
    height: 309.5px;
    aspect-ratio: auto;
    border-radius: 12.518px;
    background: #dfe6df;
    overflow: hidden;
}

.reference-product-slider-section .bhavya-product-card-image {
    display: block;
    width: 100%;
    max-width: none;
    height: 126.02%;
    object-fit: cover;
    object-position: center -10.13%;
    transition: none;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: none;
}

.reference-product-slider-section .bhavya-product-card-copy {
    position: absolute;
    left: 16.69px;
    right: 16.69px;
    top: 355px;
    display: block;
    padding: 0;
}

.reference-product-slider-section .bhavya-product-card-title {
    display: block;
    color: #2f4f2f;
    font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
    font-size: 20.864px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
}

.reference-product-slider-section .bhavya-product-card-description {
    display: block;
    margin-top: 18px;
    max-width: 410px;
    color: #6b6b6b;
    font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
    font-size: 18.777px;
    font-weight: 400;
    line-height: 23.367px;
    letter-spacing: 0;
}

.reference-product-slider-section .bhavya-product-card-cta {
    position: absolute;
    left: 0;
    top: 159px;
    display: inline-flex;
    align-items: center;
    gap: 8.27px;
    margin: 0;
    color: #2f4f2f;
    font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
    font-size: 14.605px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    text-transform: none;
}

.reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31.295px;
    height: 31.295px;
    border-radius: 10.432px;
    background: #4f6f5f;
    color: #ffffff;
    font-size: 16.691px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .reference-product-slider-section {
        height: auto;
        padding: 56px 0 72px;
    }

    .reference-product-slider-section .bhavya-product-slider-inner {
        height: auto;
        padding: 0 var(--site-gutter-mobile);
    }

    .reference-product-slider-section .bhavya-product-slider-title,
    .reference-product-slider-section .bhavya-product-slider-label,
    .reference-product-slider-section .bhavya-product-slider-actions,
    .reference-product-slider-section .bhavya-product-slider-carousel {
        position: static;
    }

    .reference-product-slider-section .bhavya-product-slider-title {
        margin-bottom: 16px;
        font-size: var(--section-title-size);
        line-height: var(--section-title-lh);
        letter-spacing: var(--section-title-ls);
    }

    .reference-product-slider-section .bhavya-product-slider-label {
        margin-bottom: 24px;
    }

    .reference-product-slider-section .bhavya-product-slider-head-copy::after {
        display: none;
    }

    .reference-product-slider-section .bhavya-product-slider-actions {
        margin: 0 0 24px;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
    .reference-product-slider-section .bhavya-product-card-link {
        height: 500px;
        min-height: 500px;
    }

    .reference-product-slider-section .bhavya-product-card-media {
        left: 14px;
        right: 14px;
        top: 14px;
        height: 270px;
    }

    .reference-product-slider-section .bhavya-product-card-copy {
        left: 18px;
        right: 18px;
        top: 306px;
    }

    .reference-product-slider-section .bhavya-product-card-description {
        max-width: none;
        font-size: 16px;
        line-height: 22px;
    }

    .reference-product-slider-section .bhavya-product-card-cta {
        top: 142px;
    }
}

/* -------------- WHY CHOOSE US SECTION -------------- */
.bhavya-why-choose-section {
    background: #fff;
    padding: 84px 0;
}

.bhavya-why-choose-inner {
    width: 100%;
    margin: 0 auto;
    padding-left: var(--site-gutter-desktop);
    padding-right: var(--site-gutter-desktop);
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.bhavya-why-choose-image-wrap {
    position: relative;
    aspect-ratio: 0.93 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: #f3f1ec;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.bhavya-why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bhavya-why-choose-title {
    margin: 0 0 10px;
    color: #1f2937;
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

.bhavya-why-choose-subtitle {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.bhavya-why-choose-intro {
    margin: 0 0 28px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 760px;
}

.bhavya-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.bhavya-why-choose-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bhavya-why-choose-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 129, 95, 0.12);
    color: var(--primary-color);
    transition: none;
}

.bhavya-why-choose-icon svg {
    width: 26px;
    height: 26px;
}

.bhavya-why-choose-card:hover .bhavya-why-choose-icon {
    transform: none;
    background: rgba(227, 129, 95, 0.12);
    color: var(--primary-color);
}

.bhavya-why-choose-card-title {
    margin: 0 0 6px;
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 700;
}

.bhavya-why-choose-card-desc {
    margin: 0;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.45;
}

.bhavya-why-choose-bottom {
    margin: 30px 0 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 760px;
}

@media (max-width: 1024px) {
    .bhavya-why-choose-section {
        padding: 72px 0;
    }

    .bhavya-why-choose-inner {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bhavya-why-choose-image-wrap {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .bhavya-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bhavya-why-choose-card {
        gap: 14px;
    }

    .bhavya-why-choose-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
    }

    .bhavya-why-choose-title {
        font-size: var(--section-title-size);
    }
}

@media (max-width: 480px) {
    .bhavya-why-choose-inner {
        padding-left: var(--site-gutter-mobile-sm);
        padding-right: var(--site-gutter-mobile-sm);
    }
}

/* -------------- FAQ SECTION -------------- */
.bhavya-faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 24%),
        linear-gradient(180deg, var(--primary-color) 0%, rgb(214, 112, 76) 100%);
    color: #fff;
    padding: 100px 0;
}

.bhavya-faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px;
}

.bhavya-faq-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.bhavya-faq-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin-bottom: 56px;
}

.bhavya-faq-eyebrow {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.bhavya-faq-title {
    margin: 0;
    color: #fff;
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

.bhavya-faq-title-accent {
    color: rgba(255,255,255,0.92);
    font-style: italic;
}

.bhavya-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 64px;
}

.bhavya-faq-column {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bhavya-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bhavya-faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 0;
    background: transparent;
    border: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.bhavya-faq-number {
    flex: 0 0 auto;
    width: 34px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.bhavya-faq-question {
    flex: 1 1 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.45;
    font-weight: 300;
    transition: color 0.25s ease;
}

.bhavya-faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.bhavya-faq-icon span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1.5px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.bhavya-faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.bhavya-faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.22s ease;
}

.bhavya-faq-answer-inner {
    padding: 0 0 22px 48px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.94rem;
    line-height: 1.75;
}

.bhavya-faq-item.is-open .bhavya-faq-number,
.bhavya-faq-item.is-open .bhavya-faq-question {
    color: #fff;
}

.bhavya-faq-item.is-open .bhavya-faq-icon {
    transform: rotate(45deg);
    border-color: rgba(255, 255, 255, 0.68);
}

.bhavya-faq-item.is-open .bhavya-faq-answer {
    opacity: 1;
}

@media (max-width: 1024px) {
    .bhavya-faq-section {
        padding: 84px var(--site-gutter-mobile);
    }

    .bhavya-faq-grid {
        gap: 0 32px;
    }
}

@media (max-width: 767px) {
    .bhavya-faq-header {
        margin-bottom: 34px;
    }

    .bhavya-faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bhavya-faq-toggle {
        gap: 12px;
        padding: 18px 0;
    }

    .bhavya-faq-number {
        width: 28px;
    }

    .bhavya-faq-answer-inner {
        padding-left: 40px;
        padding-bottom: 18px;
    }
}

/* -------------- ABOUT US SECTION -------------- */
.bhavya-about-section {
    padding: clamp(44px, 5vw, 72px) 0;
    background: #eef2ec;
}

.about-content {
    width: 100%;
    max-width: 760px;
    justify-self: end;
    text-align: left;
}

.about-content .about-description,
.about-content .about-description p {
    text-align: left;
}

.about-content .about-btn {
    margin-left: 0;
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 76px);
    align-items: center;
    width: min(100%, 1900px);
    margin: 0 auto;
    padding-left: clamp(20px, 3vw, 56px);
    padding-right: clamp(20px, 3vw, 56px);
}

.about-label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
}

.about-label-row-text {
    flex: 0 0 auto;
    color: #111111;
    font-size: 0.76rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.48em;
}

.about-label-row-line {
    flex: 1 1 auto;
    height: 1px;
    background: rgba(17, 17, 17, 0.38);
}

.about-heading {
    font-family: var(--font-heading);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    color: #111111;
    line-height: var(--section-title-lh);
    margin: 0 0 18px;
    letter-spacing: var(--section-title-ls);
}

.about-description {
    font-size: clamp(1.05rem, 1.1vw, 1.32rem);
    color: #202020;
    line-height: 1.45;
    margin-bottom: 36px;
    max-width: 760px;
}

.about-description p {
    margin: 0 0 28px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    background: var(--primary-color);
    color: #FFF;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 26px rgba(232, 132, 94, 0.22);
}

.about-btn:hover {
    background: #dc7a54;
    color: #FFF;
    transform: translateY(-2px);
}

.about-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(540px, 42vw, 760px);
    padding: clamp(22px, 2.4vw, 38px);
    background: #FFFFFF;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(17, 24, 20, 0.05);
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFB 100%);
    pointer-events: none;
}

.about-img {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.06));
}

@media (max-width: 1100px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-content {
        max-width: 900px;
        justify-self: start;
    }

    .about-image-wrap {
        min-height: 0;
        order: -1;
    }

    .about-img {
        width: min(100%, 700px);
    }

    .bhavya-about-section {
        padding: 44px 0;
    }

    .about-heading {
        font-size: var(--section-title-size);
    }
}

@media (max-width: 768px) {
    .about-inner {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
        gap: 22px;
    }

    .about-image-wrap {
        padding: 18px;
        border-radius: 28px;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.55;
    }

    .about-label-row {
        margin-bottom: 22px;
    }
}

@media (max-width: 480px) {
    .bhavya-about-section {
        padding: 34px 0;
    }

    .about-inner {
        padding-left: var(--site-gutter-mobile-sm);
        padding-right: var(--site-gutter-mobile-sm);
    }

    .about-heading {
        font-size: var(--section-title-size);
    }

    .about-label-row-text {
        letter-spacing: 0.36em;
    }

    .about-description {
        font-size: 0.96rem;
    }

    .about-btn {
        width: 100%;
        max-width: 180px;
    }
}

/* -------------- CERTIFICATES SECTION -------------- */
.bhavya-certificates-section {
    --certificate-image-height: 110px;
    --certificate-marquee-duration: 28s;
    padding: 72px 0;
    background:
        radial-gradient(circle at top left, rgba(211, 84, 0, 0.08), transparent 24%),
        linear-gradient(180deg, #FFFFFF 0%, #FFFDF8 100%);
}

.bhavya-certificates-inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
}

.bhavya-certificates-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.bhavya-certificates-eyebrow {
    margin: 0 0 12px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bhavya-certificates-title {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

.bhavya-certificates-description {
    margin: 14px auto 0;
    color: #5B5B5B;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 650px;
}

.bhavya-certificates-carousel {
    position: relative;
}

.bhavya-certificates-marquee {
    overflow: hidden;
    padding: 10px 0;
}

.bhavya-certificates-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    min-width: 100%;
    animation: certificates-marquee var(--certificate-marquee-duration) linear infinite;
    will-change: transform;
}

.bhavya-certificates-marquee:hover .bhavya-certificates-track {
    animation-play-state: paused;
}

.bhavya-certificate-item {
    flex: 0 0 auto;
    width: clamp(120px, 14vw, 170px);
    display: flex;
    align-items: center;
}

.bhavya-certificate-card {
    width: 100%;
    height: 100%;
}

.bhavya-certificate-media {
    width: 100%;
    height: clamp(72px, var(--certificate-image-height), 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.bhavya-certificate-card:hover .bhavya-certificate-media {
    transform: none;
    box-shadow: none;
}

.bhavya-certificate-image {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes certificates-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 10px var(--site-gutter-tablet);
        height: auto;
        min-height: 68px;
    }

    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-branding img {
        max-height: 52px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        margin-left: auto;
        border: 1px solid rgba(17, 24, 39, 0.12);
        border-radius: 999px;
        background: #FFFFFF;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .menu-toggle:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
    }

    .menu-toggle-icon {
        position: relative;
        display: block;
        width: 18px;
        height: 14px;
    }

    .menu-toggle-icon span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 999px;
        background: var(--text-dark);
        transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
    }

    .menu-toggle-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 24px !important;
        height: 24px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
    
    .menu-toggle-icon:hover {
        background-color: transparent !important;
    }
    
    .menu-toggle-icon svg {
        position: absolute;
        width: 24px;
        height: 24px;
        color: #000;
    }

    .main-navigation {
        position: static;
    }

    .main-navigation ul {
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100vh;
        padding: 0 18px 24px;
        background: #FFFFFF;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        box-shadow: -20px 0 50px rgba(17, 24, 39, 0.18);
        transform: translateX(102%);
        transition: transform 0.35s ease;
        z-index: 1202;
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 24px 0 16px !important;
        border-bottom: 1px solid #EEF0F3 !important;
        margin-bottom: 8px;
    }

    .mobile-menu-title {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 700;
        color: #111;
        letter-spacing: -0.01em;
    }

    .mobile-menu-close {
        background: transparent;
        border: none;
        padding: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        transition: color 0.2s ease;
    }

    .mobile-menu-close:hover {
        color: #000;
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    .main-navigation ul.toggled {
        transform: translateX(0);
    }

    .main-navigation ul > li {
        height: auto;
        padding: 0;
        border-bottom: 1px solid #EEF0F3;
    }

    .main-navigation ul > li:last-child {
        border-bottom: 0;
    }

    .main-navigation ul > li > a,
    .main-navigation .mega-menu-trigger {
        width: 100%;
        justify-content: space-between;
        height: auto;
        padding: 14px 0;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(15, 23, 42, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1201;
    }

    body.mobile-nav-open .mobile-nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

        body.mobile-nav-open {
        overflow: hidden;
    }

    .bhavya-certificates-track {
        gap: 18px;
        animation-duration: 32s;
    }

    .bhavya-certificate-item {
        width: clamp(110px, 22vw, 145px);
    }

    .bhavya-certificate-media {
        height: clamp(70px, var(--certificate-image-height), 160px);
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }

    .about-image-wrap {
        order: -1;
    }
}

/* Tablet and mobile navigation spacing remains above. */

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    body { padding: 0; }
    .header-container {
        padding: 10px var(--site-gutter-mobile);
        min-height: 60px;
    }
    .site-main { padding: 0; }

    body.home .site-main .elementor-container {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    body.home .site-main .elementor-top-section > .elementor-container {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    /* Swiper pagination mobile */
    .bhavya-hero-slider .swiper-pagination { bottom: 24px !important; }
    .bhavya-hero-slider .swiper-pagination-bullet { opacity: 0.6; }
    .bhavya-hero-slider .swiper-pagination-bullet-active { width: 24px; opacity: 1; }

    /* Footer mobile */
    .bhavya-footer { padding: 40px var(--site-gutter-mobile) 30px; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 24px;
    }

    .subscribe-form { max-width: 100%; }

    .footer-socials { margin-top: 16px; }

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-column:last-child {
        border-bottom: 0;
    }

    .footer-title {
        display: none;
    }

    .footer-accordion-toggle {
        display: flex;
        padding: 18px 0;
    }

    .footer-column-body {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .footer-accordion.is-open .footer-column-body {
        max-height: 520px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding-bottom: 18px;
    }

    .footer-accordion.is-open .footer-accordion-icon {
        transform: rotate(180deg);
    }

    .site-branding img { max-height: 48px; }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        margin-left: auto;
        border: 1px solid rgba(17, 24, 39, 0.12);
        border-radius: 999px;
        background: #FFFFFF;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .menu-toggle:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
    }

    .menu-toggle-icon {
        position: relative;
        display: block;
        width: 18px;
        height: 14px;
    }

    .menu-toggle-icon span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 999px;
        background: var(--text-dark);
        transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
    }

    .menu-toggle-icon span:nth-child(1) { top: 0; }
    .menu-toggle-icon span:nth-child(2) { top: 6px; }
    .menu-toggle-icon span:nth-child(3) { top: 12px; }

    .main-navigation {
        position: static;
    }

    .main-navigation ul {
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100vh;
        padding: 88px 18px 24px;
        background: #FFFFFF;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        box-shadow: -20px 0 50px rgba(17, 24, 39, 0.18);
        transform: translateX(102%);
        transition: transform 0.35s ease;
        z-index: 1202;
    }

    .main-navigation ul.toggled {
        transform: translateX(0);
    }

    .main-navigation ul > li {
        height: auto;
        padding: 0;
        border-bottom: 1px solid #EEF0F3;
    }

    .main-navigation ul > li:last-child {
        border-bottom: 0;
    }

    .main-navigation ul > li > a,
    .main-navigation .mega-menu-trigger {
        width: 100%;
        justify-content: space-between;
        height: auto;
        padding: 14px 0;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(15, 23, 42, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1201;
    }

    body.mobile-nav-open .mobile-nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .main-navigation.toggled .menu-toggle-icon span:nth-child(1) {
        top: 6px;
        transform: rotate(45deg);
    }

    .main-navigation.toggled .menu-toggle-icon span:nth-child(2) {
        opacity: 0;
    }

    .main-navigation.toggled .menu-toggle-icon span:nth-child(3) {
        top: 6px;
        transform: rotate(-45deg);
    }

    .main-navigation .mega-dropdown-title {
        margin: 0 0 12px;
    }

    .main-navigation .bhavya-mega-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .main-navigation .mega-product-card {
        min-height: 0;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .main-navigation .mega-product-image {
        width: 76px;
        min-width: 76px;
        aspect-ratio: 1 / 1;
    }

    .main-navigation .mega-product-details {
        padding: 0;
        gap: 3px;
    }

    .main-navigation .mega-menu-dropdown {
        width: 100%;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        transform: none;
        padding: 14px 0 0;
        background: transparent;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-navigation .mega-dropdown-title {
        display: none;
    }

    .mega-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 8px;
        right: 0;
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
    }

    .mega-menu-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 4px 0 10px;
    }

    .mega-menu-mobile-list li {
        border-bottom: none !important;
    }

    .mega-menu-mobile-list a {
        display: flex !important;
        align-items: center;
        padding: 12px 16px !important;
        background: transparent;
        color: #555 !important;
        font-size: 0.95rem;
        font-weight: 500 !important;
        line-height: 1.3;
        border-radius: 8px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mega-menu-mobile-list a:hover {
        background: #f5f5f5;
        color: var(--primary-color) !important;
    }

    .mega-menu-mobile-list .view-all-item {
        margin-top: 8px;
    }

    .mega-menu-mobile-list .mega-menu-view-all {
        background: #f0f0f0;
        color: #111 !important;
        font-weight: 600 !important;
        text-align: center;
        justify-content: center;
    }

    .main-navigation .bhavya-mega-grid {
        display: none;
    }

    .main-navigation .bhavya-mega-menu:hover .mega-menu-dropdown,
    .main-navigation .bhavya-mega-menu:focus-within .mega-menu-dropdown {
        display: none;
    }

    .main-navigation .bhavya-mega-menu.is-open .mega-menu-dropdown {
        display: block;
    }

    .bhavya-categories-section {
        padding-top: 2px;
    }

    .bhavya-categories-title {
        font-size: var(--section-title-size);
    }

    .bhavya-categories-title-row {
        gap: 12px;
    }

    .bhavya-categories-header-actions {
        gap: 8px;
    }

    .bhavya-categories-head-link {
        height: 36px;
        padding: 0 12px;
    }

    .bhavya-categories-head-link-text {
        font-size: 0.76rem;
    }

    .bhavya-category-card-title {
        font-size: 1rem;
    }

    .bhavya-category-card-link {
        font-size: 0.9rem;
    }

    .bhavya-categories-slider-nav {
        margin-top: 0;
    }

    .bhavya-categories-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.92rem;
    }

    .bhavya-category-slide:nth-child(even) .bhavya-category-card {
        margin-top: 0;
    }

    .bhavya-category-card-media {
        aspect-ratio: 5 / 6;
    }

    .bhavya-categories-slider .swiper-slide {
        width: calc((100% - 12px) / 2) !important;
    }

    /* Certificates section */
    .bhavya-certificates-section { padding: 54px 0; }
    .bhavya-certificates-header { margin-bottom: 24px; }
    .bhavya-certificates-track { gap: 16px; animation-duration: 34s; }
    .bhavya-certificate-item { width: clamp(110px, 23vw, 150px); }
    .bhavya-certificate-media { height: clamp(68px, var(--certificate-image-height), 150px); }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-image-wrap {
        order: -1;
    }

    /* About section mobile */
    .bhavya-about-section { padding: 40px 0; }
    .about-heading { font-size: clamp(2.4rem, 14vw, 3rem); }
    .about-description { font-size: 0.96rem; }
}

/* Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .header-container {
        padding-left: var(--site-gutter-mobile-sm);
        padding-right: var(--site-gutter-mobile-sm);
    }

    .main-navigation ul {
        width: min(300px, calc(100vw - (2 * var(--site-gutter-mobile-sm))));
    }

    body.home .site-main .elementor-container,
    body.home .site-main .elementor-top-section > .elementor-container {
        padding-left: var(--site-gutter-mobile-sm) !important;
        padding-right: var(--site-gutter-mobile-sm) !important;
    }

    .bhavya-about-section {
        padding-left: 0;
        padding-right: 0;
    }

    .bhavya-footer {
        padding-left: var(--site-gutter-mobile-sm);
        padding-right: var(--site-gutter-mobile-sm);
    }

    .bhavya-categories-title {
        font-size: 1.2rem;
    }

    .bhavya-categories-title-row {
        gap: 10px;
    }

    .bhavya-categories-header-actions {
        gap: 6px;
    }

    .bhavya-categories-section {
        padding-left: 0;
        padding-right: 0;
    }

    .bhavya-categories-inner {
        padding-left: var(--site-gutter-mobile-sm);
        padding-right: var(--site-gutter-mobile-sm);
    }

    .bhavya-certificates-section {
        padding-left: var(--site-gutter-mobile-sm);
        padding-right: var(--site-gutter-mobile-sm);
    }

    .bhavya-certificates-track {
        gap: 14px;
        animation-duration: 36s;
    }

    .bhavya-certificate-item {
        width: clamp(96px, 26vw, 128px);
    }

    .bhavya-certificate-media {
        height: clamp(64px, var(--certificate-image-height), 128px);
    }

    .bhavya-category-card-title {
        font-size: 0.96rem;
    }

    .bhavya-category-card-link {
        font-size: 0.86rem;
    }

    .bhavya-categories-head-link {
        height: 34px;
        padding: 0 10px;
    }

    .bhavya-categories-head-link-text {
        font-size: 0.72rem;
    }

    .hero-content h2 { font-size: 1.7rem; }
}

/* -------------- ABOUT US PAGE -------------- */
.bhavya-about-page-section {
    --about-maroon: var(--primary-color);
    --about-maroon-dark: var(--secondary-color);
    --about-saffron: var(--primary-color);
    --about-gold: rgba(227, 129, 95, 0.85);
    --about-cream: #FFF9F4;
    --about-beige: #F5EFEA;
    --about-ink: var(--text-dark);
    --about-muted: #555555;
    --about-display-font: var(--font-heading);
    --about-body-font: var(--font-body);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-family: var(--about-body-font);
}

.bhavya-about-container {
    width: 100%;
    margin: 0 auto;
}

.bhavya-about-hero {
    position: relative;
    width: 100%;
    height: 44vh;
    min-height: 340px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 35%, rgba(216, 153, 72, 0.28), transparent 28%),
        linear-gradient(135deg, #2B100E 0%, #6F1D1B 100%);
}

.bhavya-about-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: scale(1.02);
}

.bhavya-about-hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bhavya-about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(38, 12, 10, 0.94) 0%, rgba(80, 24, 18, 0.82) 44%, rgba(80, 24, 18, 0.14) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(37, 13, 9, 0.32));
}

.bhavya-about-hero::after {
    content: "";
    position: absolute;
    left: var(--site-gutter-desktop);
    right: var(--site-gutter-desktop);
    bottom: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(215, 166, 74, 0.85), rgba(255, 247, 232, 0));
    z-index: 2;
}

.bhavya-about-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bhavya-about-hero-title {
    margin: 0;
    max-width: 820px;
    color: #FFF;
    font-family: var(--about-display-font);
    font-size: clamp(3rem, 7vw, 6.25rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.92;
}

.bhavya-about-hero-description {
    margin: 20px 0 0;
    max-width: 660px;
    color: rgba(255, 247, 232, 0.84);
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    line-height: 1.75;
}

.bhavya-global-reach-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
    color: var(--text-dark);
    padding: clamp(72px, 8vw, 118px) 0;
}

.bhavya-global-reach-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
    background-image: linear-gradient(180deg, rgba(227, 129, 95, 0.06), rgba(227, 129, 95, 0.02));
}

.bhavya-mission-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    z-index: 1;
}

.bhavya-mission-image-wrap {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(31, 8, 6, 0.34);
}

.bhavya-mission-image-wrap::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(227, 129, 95, 0.18);
    border-radius: 14px;
    pointer-events: none;
}

.bhavya-mission-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bhavya-mission-content {
    max-width: 680px;
}

.bhavya-mission-block {
    margin: 0;
}

.bhavya-mission-vision-title,
.bhavya-commitment-title,
.bhavya-values-section-title,
.bhavya-story-title {
    font-family: var(--about-display-font);
    letter-spacing: -0.025em;
}

.bhavya-mission-vision-title {
    position: relative;
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2.8rem, 5.4vw, 5.3rem);
    font-weight: 600;
    line-height: 0.94;
}

.bhavya-mission-vision-title::before {
    content: "";
    display: block;
    width: 74px;
    height: 3px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), rgba(227, 129, 95, 0));
}

.bhavya-mission-vision-description {
    margin-top: 28px;
    color: #555555;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.9;
}

.bhavya-mission-vision-description p {
    margin: 0 0 18px;
}

.bhavya-mission-vision-description p:last-child {
    margin-bottom: 0;
}

.bhavya-commitment-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: clamp(74px, 8vw, 124px) 0;
}

.bhavya-commitment-section::before,
.bhavya-commitment-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.bhavya-commitment-section::before {
    width: 220px;
    height: 220px;
    right: -80px;
    top: 42px;
    border: 1px solid rgba(227, 129, 95, 0.12);
}

.bhavya-commitment-section::after {
    width: 14px;
    height: 14px;
    left: 11%;
    bottom: 58px;
    background: var(--primary-color);
    box-shadow: 28px -18px 0 rgba(214, 112, 76, 0.72), 56px 8px 0 rgba(227, 129, 95, 0.55);
}

.bhavya-commitment-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.bhavya-commitment-title {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
}

.bhavya-commitment-description {
    margin: 28px auto 0;
    max-width: 780px;
    color: #555555;
    font-size: clamp(1rem, 1.08vw, 1.1rem);
    line-height: 1.9;
}

.bhavya-commitment-description p {
    margin: 0 0 18px;
}

.bhavya-commitment-description p:last-child {
    margin-bottom: 0;
}

.bhavya-values-section {
    background: var(--white);
    padding: clamp(74px, 8vw, 124px) 0;
}

.bhavya-values-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: end;
    margin-bottom: clamp(38px, 5vw, 62px);
}

.bhavya-values-section-title {
    margin: 0;
    max-width: 730px;
    color: var(--text-dark);
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
}

.bhavya-values-section-desc {
    margin: 0;
    color: #555555;
    font-size: clamp(1rem, 1.08vw, 1.1rem);
    line-height: 1.85;
    max-width: 680px;
}

.bhavya-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.bhavya-value-card {
    position: relative;
    overflow: hidden;
    min-height: 265px;
    background: #FFFFFF;
    border: 1px solid rgba(227, 129, 95, 0.14);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(89, 42, 18, 0.08);
    text-align: left;
    padding: 34px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bhavya-value-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), rgba(227, 129, 95, 0.55));
}

.bhavya-value-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -48px;
    width: 132px;
    height: 132px;
    border-radius: 999px;
    background: rgba(227, 129, 95, 0.08);
}

.bhavya-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 129, 95, 0.3);
    box-shadow: 0 26px 60px rgba(89, 42, 18, 0.14);
}

.bhavya-value-icon {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(227, 129, 95, 0.18), rgba(255, 247, 244, 0.82));
    box-shadow: inset 0 0 0 1px rgba(227, 129, 95, 0.12);
}

.bhavya-value-icon i,
.bhavya-value-icon svg {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.bhavya-value-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.35vw, 1.48rem);
    font-weight: 700;
    line-height: 1.24;
}

.bhavya-value-description {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.7;
}

.bhavya-story-section {
    background: var(--white);
    padding: clamp(76px, 8vw, 128px) 0;
}

.bhavya-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 76px);
    align-items: start;
}

.bhavya-story-title-col {
    position: relative;
}

.bhavya-story-title-col::before {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), rgba(227, 129, 95, 0.55));
}

.bhavya-story-title {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
}

.bhavya-story-content {
    position: relative;
    max-width: 860px;
    color: #555555;
    font-size: clamp(1rem, 1.08vw, 1.1rem);
    line-height: 1.95;
}

.bhavya-story-content::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: -28px;
    width: 1px;
    height: calc(100% - 1.44em);
    background: linear-gradient(180deg, rgba(227, 129, 95, 0.38), rgba(227, 129, 95, 0.08));
}

.bhavya-story-content p {
    margin: 0 0 24px;
}

.bhavya-story-content p:first-child {
    color: var(--text-dark);
    font-size: clamp(1.08rem, 1.25vw, 1.22rem);
}

.bhavya-story-content p:last-child {
    margin-bottom: 0;
}

.bhavya-about-parallax-section {
    position: relative;
    overflow: hidden;
    background: #0a1210;
    padding: 0;
}

.bhavya-about-parallax-frame {
    position: relative;
    min-height: clamp(420px, 82vh, 920px);
    overflow: hidden;
}

.bhavya-about-parallax-media {
    position: absolute;
    inset: 0;
    transform: translate3d(0, 0, 0) scale(1.18);
    transform-origin: center center;
    will-change: transform;
}

.bhavya-about-parallax-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bhavya-about-parallax-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 17, 15, 0.72) 0%, rgba(10, 17, 15, 0.22) 42%, rgba(10, 17, 15, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 17, 15, 0.12), rgba(10, 17, 15, 0.22));
}

.bhavya-stack-cards {
    display: block;
}

/* Scroll spacer — one full viewport per card (matches Saphalya: N × 100vh) */
.bhavya-stack-scroll {
    position: relative;
    height: calc(var(--stack-card-count, 2) * 100vh);
}

/* Sticky window that cards stack inside */
.bhavya-stack-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* Every card sits absolute, full-cover inside the viewport */
.bhavya-stack-card {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr;       /* mobile: stacked */
    overflow: hidden;
    background: #FFFFFF;
    /* start off-screen below — JS overrides card 0 to y=0 immediately */
    transform: translate3d(0, 100vh, 0) scale(1);
    transform-origin: center center;
    will-change: transform;
}

/* First card is visible before any scroll */
.bhavya-stack-card:first-child {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Left panel — image fills its cell */
.bhavya-stack-card-media {
    position: relative;
    min-height: 45vh;
    overflow: hidden;
    background: #D9D9D9;
}

.bhavya-stack-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Right panel — text content */
.bhavya-stack-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 72px);
}

/* Dark overlay — fades in as the next card rises over this one (mirrors Saphalya) */
.bhavya-stack-card-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

.bhavya-stack-card .bhavya-mission-vision-title {
    color: var(--text-dark);
}

.bhavya-stack-card .bhavya-mission-vision-title::before {
    display: none;
    content: none;
}

.bhavya-stack-card .bhavya-mission-vision-description {
    color: #555555;
}

/* Section has no background */
.bhavya-stack-cards-section {
    background: transparent;
    color: var(--text-dark);
}

/* -------------- ABOUT US PAGE ZIVA OVERRIDES -------------- */
.bhavya-about-page-section {
    font-family: var(--font-body);
}

.bhavya-about-hero-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #000;
}

.bhavya-about-hero {
    height: 35vh;
    min-height: 320px;
    background: #000;
}

.bhavya-about-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0) 100%);
}

.bhavya-about-hero-title,
.bhavya-story-title,
.bhavya-mission-vision-title,
.bhavya-values-section-title,
.bhavya-value-title {
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
}

.bhavya-about-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    max-width: 780px;
}

.bhavya-about-hero-description {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.7;
}

.bhavya-story-section,
.bhavya-values-section {
    background: var(--white);
    padding: 64px 0;
}

.bhavya-story-grid {
    gap: 32px 64px;
}

.bhavya-story-title-col::before,
.bhavya-story-content::before,
.bhavya-mission-vision-title::before {
    display: none;
    content: none;
}

.bhavya-story-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.02;
}

.bhavya-story-content {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.75;
}

.bhavya-story-content p:first-child {
    color: #6B7280;
    font-size: 1rem;
}

.bhavya-global-reach-section {
    background: #022733;
    color: #FFFFFF;
    padding: 64px 0;
}

.bhavya-global-reach-section::before {
    background: none;
}

.bhavya-mission-grid {
    gap: 48px;
}

.bhavya-mission-image-wrap {
    min-height: 360px;
    border-radius: 8px;
    box-shadow: none;
}

.bhavya-mission-image-wrap::after {
    display: none;
    content: none;
}

.bhavya-mission-vision-title {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.02;
}

.bhavya-mission-vision-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.75;
}

.bhavya-mission-vision-description p {
    margin: 0 0 16px;
}

.bhavya-values-section-title,
.bhavya-values-section-desc {
    display: none;
}

.bhavya-values-grid {
    gap: 16px;
}

.bhavya-value-card {
    min-height: 0;
    padding: 32px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid #E5E7EB;
}

.bhavya-value-card::before,
.bhavya-value-card::after {
    display: none;
    content: none;
}

.bhavya-value-icon {
    margin: 0 auto 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.bhavya-value-title {
    font-size: 1.125rem;
    font-weight: 300;
    color: #022733;
    text-align: center;
}

.bhavya-value-description {
    margin-top: 8px;
    color: #6B7280;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .bhavya-story-grid {
        grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1.48fr);
    }

    .bhavya-story-title-col {
        top: 96px;
    }

    .bhavya-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Desktop: left image | right content (same split as user requested) */
    .bhavya-stack-card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .bhavya-stack-card-media {
        min-height: 100%;
    }

    .bhavya-stack-viewport {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .bhavya-about-hero {
        height: 35vh;
        min-height: 300px;
    }

    .bhavya-story-grid,
    .bhavya-mission-grid,
    .bhavya-values-grid {
        gap: 24px;
    }

    .bhavya-value-card {
        padding: 28px 24px;
    }
}

@media (min-width: 768px) {
    .bhavya-mission-grid {
        grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    }

    .bhavya-mission-image-wrap {
        min-height: 510px;
    }

    .bhavya-values-header {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    }

    .bhavya-values-section-desc {
        justify-self: end;
    }

    .bhavya-story-grid {
        grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1.48fr);
    }

    .bhavya-story-title-col {
        position: sticky;
        top: 104px;
        align-self: start;
    }

    .bhavya-about-parallax-frame {
        min-height: 86vh;
    }

    .bhavya-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

@media (min-width: 1180px) {
    .bhavya-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .bhavya-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .bhavya-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bhavya-about-hero {
        min-height: 300px;
        height: 38vh;
    }

    .bhavya-about-hero::after {
        left: var(--site-gutter-mobile);
        right: var(--site-gutter-mobile);
    }

    .bhavya-about-hero-overlay {
        background: linear-gradient(90deg, rgba(38, 12, 10, 0.93) 0%, rgba(80, 24, 18, 0.74) 72%, rgba(80, 24, 18, 0.36) 100%);
    }

    .bhavya-mission-image-wrap {
        min-height: 280px;
        border-radius: 24px;
    }

    .bhavya-value-card {
        min-height: auto;
        padding: 30px;
    }

    .bhavya-story-content::before {
        display: none;
    }

    .bhavya-about-parallax-frame {
        min-height: 320px;
    }
}

/* ================================================================
   ABOUT US PAGE — ISLAND-BEAUTY LAYOUT
   Sections: Hero · About Stack · Content Cards · Features Grid
   ================================================================ */

/* ── Shared section padding ──────────────────────────────────── */
.bhavya-about-stack-section {
    padding: 0;
}

.bhavya-content-cards-section {
    padding-top: 0;
    padding-bottom: 0;
}

.bhavya-founders-section {
    padding-top: clamp(64px, 8vw, 96px);
}

/* ── HERO ────────────────────────────────────────────────────── */
.bhavya-about-hero-section {
    width: 100%;
    padding: 0;
    background: transparent;
    /* reset old overrides */
    margin-left: 0;
    margin-right: 0;
}

.bhavya-about-hero-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: clamp(300px, 45vh, 560px);
    overflow: hidden;
    background: #111;
}

.bhavya-about-hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bhavya-about-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bhavya-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

.bhavya-about-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: clamp(24px, 5vw, 48px);
    color: #fff;
}

.bhavya-about-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 16px;
    color: #fff;
}

.bhavya-about-hero-rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.50);
    margin-top: 4px;
}

/* ── STORY SECTION (Saphalya StorySection style) ─────────────── */
.bhavya-about-story-section {
    padding-top: clamp(64px, 9vw, 120px);
    padding-bottom: clamp(64px, 9vw, 120px);
}

.bhavya-about-story-label-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.bhavya-about-story-label {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #1a1a1a;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 500;
}

.bhavya-about-story-rule {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    display: block;
}

.bhavya-about-story-cols {
    display: flex;
    flex-direction: row;
    gap: clamp(32px, 6vw, 96px);
    align-items: flex-start;
}

.bhavya-about-story-left {
    width: 40%;
    flex-shrink: 0;
}

.bhavya-about-story-heading {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 300;
    color: #212529;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    margin: 0;
}

.bhavya-about-story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bhavya-about-story-content p {
    font-size: clamp(13px, 1.4vw, 16px);
    line-height: 1.75;
    color: #1a1a1a;
    font-weight: 300;
    margin: 0 0 20px;
}

.bhavya-about-story-content p:last-child {
    margin-bottom: 0;
}

.bhavya-about-story-quote {
    border-left: 2px solid var(--primary-color, #E3895F);
    padding-left: 20px;
    margin: 28px 0 0;
}

.bhavya-about-story-quote p {
    font-size: clamp(15px, 1.8vw, 21px);
    font-weight: 300;
    font-style: italic;
    color: #212529;
    line-height: 1.45;
    margin: 0 0 12px;
}

.bhavya-about-story-quote footer {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
}


@media (max-width: 1023px) {
    .bhavya-about-story-cols {
        flex-direction: column;
    }
    .bhavya-about-story-left {
        width: 100%;
    }
}

/* ── CONTENT CARDS ───────────────────────────────────────────── */
.bhavya-content-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
}

.bhavya-content-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: start;
}

/* Image panel */
.bhavya-content-card-media {
    position: relative;
    width: 100%;
    height: clamp(280px, 60vh, 600px);
    border-radius: 24px;
    overflow: hidden;
    background: #D9D9D9;
}

.bhavya-content-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Text panel */
.bhavya-content-card-body {
    border-radius: 24px;
    padding: clamp(32px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(200px, 36vh, 420px);
}

.bhavya-content-card-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.10);
    margin-bottom: 20px;
    align-self: flex-start;
}

.bhavya-content-card-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0 0 clamp(12px, 2vw, 20px);
}

.bhavya-content-card-desc {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.8;
    opacity: 0.82;
    margin: 0;
}

@media (min-width: 768px) {
    /* Card 1: image LEFT, content RIGHT */
    .bhavya-content-card--image-first {
        grid-template-columns: 1fr 1fr;
    }

    /* Card 2: content LEFT, image RIGHT */
    .bhavya-content-card--content-first {
        grid-template-columns: 1fr 1fr;
    }

    /* Sticky content body on desktop (mirrors md:sticky md:top-24) */
    .bhavya-content-card-sticky {
        position: sticky;
        top: 96px;
    }
}

/* ── FEATURES GRID (4 columns) ───────────────────────────────── */
.bhavya-features-section {
    padding-top: clamp(64px, 8vw, 96px);
    padding-bottom: clamp(64px, 8vw, 96px);
}

.bhavya-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
}

.bhavya-feature-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bhavya-feature-col:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.bhavya-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    flex-shrink: 0;
    background: rgba(227, 137, 95, 0.10);
    border-radius: 12px;
}

.bhavya-feature-icon svg,
.bhavya-feature-icon i {
    font-size: inherit;
}

.bhavya-feature-title {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.3;
    margin: 0 0 10px;
    color: #022733;
}

.bhavya-feature-desc {
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.75;
    margin: 0;
    color: #666;
}

@media (max-width: 1023px) {
    .bhavya-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .bhavya-features-grid {
        grid-template-columns: 1fr;
    }
}


/* ── MEET THE FOUNDERS ───────────────────────────────────────── */
.bhavya-founders-section {
    padding-bottom: clamp(64px, 8vw, 96px);
}

.bhavya-founders-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    font-family: var(--font-heading);
    text-align: center;
    margin: 0 0 clamp(32px, 5vw, 56px);
    color: var(--primary-color);
}

/* Scroll container: N × 100vh, full width */
.bhavya-founders-stack {
    position: relative;
    width: 100%;
    height: calc(var(--founders-count, 2) * 100vh);
}

/* Each sticky wrapper: full viewport height, centres the card */
.bhavya-founder-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The card itself — fixed height, white background */
.bhavya-founder-card {
    position: relative;
    width: 100%;
    height: clamp(360px, 500px, 540px);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transform-origin: center top;
    will-change: transform;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.bhavya-founder-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
}

/* Photo panel */
.bhavya-founder-photo {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 24px 24px 0 0;
}

.bhavya-founder-photo-inner {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    will-change: transform;
}

.bhavya-founder-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Text panel */
.bhavya-founder-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 3vw, 36px);
}

.bhavya-founder-name {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 0 6px;
}

.bhavya-founder-role {
    font-size: 14px;
    margin: 0 0 14px;
    opacity: 0.6;
}

.bhavya-founder-quote {
    font-size: clamp(13px, 1.4vw, 15px);
    font-style: italic;
    line-height: 1.75;
    opacity: 0.78;
    margin: 0;
    padding: 0;
    border: none;
}

@media (min-width: 768px) {
    /* Two-column card: photo LEFT, text RIGHT */
    .bhavya-founder-card-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .bhavya-founder-photo {
        height: 100%;
        border-radius: 24px 0 0 24px;
    }

    .bhavya-founder-content {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .bhavya-about-hero-wrap {
        height: clamp(280px, 50vw, 340px);
    }

    .bhavya-founders-stack {
        width: 100%;
    }

    .bhavya-founder-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .bhavya-founder-sticky {
        align-items: flex-start;
        padding-top: 48px;
    }
}

/* -------------- REFERENCE HOMEPAGE OVERRIDES -------------- */
.reference-home {
    background: #ffffff;
    overflow-x: clip;
}

.reference-hero {
    width: 100%;
    margin: 0;
    line-height: 0;
    overflow: hidden;
    background: #ffffff;
}

.reference-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.reference-services-section {
    background: #ffffff;
    padding-top: 16px;
}

.reference-services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.reference-card {
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 280px;
    background: #111827;
}

.reference-card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
}

.reference-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.55s ease;
}

.reference-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.08) 0%, rgba(3, 7, 18, 0.26) 38%, rgba(3, 7, 18, 0.84) 100%);
}

.reference-card-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reference-card-title {
    color: #ffffff;
    font-size: clamp(1.2rem, 1.55vw, 1.75rem);
    font-weight: 600;
    line-height: 1.15;
}

.reference-card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.45;
}

.reference-card-link:hover .reference-card-image {
    transform: scale(1.05);
}

/* ============================================================
   PRODUCT SLIDER — CLEAN LAYOUT
   - No absolute positioning
   - Square card images (aspect-ratio 1/1)
   - Width matches footer gutter system
   - Nav buttons grouped with View All
   ============================================================ */

.reference-product-slider-section {
    background: #ffffff;
    width: 100%;
    padding: 56px 0 72px;
    overflow: visible;
}

/* Inner container — shares same gutter token as footer */
.reference-product-slider-section .bhavya-product-slider-inner,
body.home .reference-product-slider-section .bhavya-product-slider-inner {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
    padding: 0 var(--site-gutter-desktop) !important;
    box-sizing: border-box;
}

/* Head row — title left, actions right on one line */
.reference-product-slider-section .bhavya-product-slider-head,
body.home .reference-product-slider-section .bhavya-product-slider-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 0 28px !important;
    flex-wrap: wrap;
}

.reference-product-slider-section .bhavya-product-slider-head-copy,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy {
    position: static !important;
    flex: 1 1 auto !important;
    max-width: none !important;
}

/* Kill the decorative ::after line — no longer needed */
.reference-product-slider-section .bhavya-product-slider-head-copy::after,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy::after {
    display: none !important;
}

/* Eyebrow label */
.reference-product-slider-section .bhavya-product-slider-label,
body.home .reference-product-slider-section .bhavya-product-slider-label {
    position: static !important;
    display: block;
    margin: 0 0 6px !important;
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-size: var(--eyebrow-size);
    font-weight: 500;
    line-height: 1;
    letter-spacing: var(--eyebrow-ls);
    text-transform: uppercase;
}

/* Section title */
.reference-product-slider-section .bhavya-product-slider-title,
body.home .reference-product-slider-section .bhavya-product-slider-title {
    position: static !important;
    display: block;
    margin: 0 !important;
    color: #212529;
    font-family: var(--font-heading);
    font-size: var(--section-title-size) !important;
    font-weight: var(--section-title-weight) !important;
    line-height: var(--section-title-lh) !important;
    letter-spacing: var(--section-title-ls) !important;
}

/* Actions group — nav buttons + View All sit together on the right */
.reference-product-slider-section .bhavya-product-slider-actions,
body.home .reference-product-slider-section .bhavya-product-slider-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0;
    flex-wrap: nowrap;
    margin: 0 !important;
}

.reference-product-slider-section .bhavya-product-slider-nav,
body.home .reference-product-slider-section .bhavya-product-slider-nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.reference-product-slider-section .bhavya-product-slider-btn,
body.home .reference-product-slider-section .bhavya-product-slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1.5px solid #d0d0d0;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: static !important;
    transform: none;
}

.reference-product-slider-section .bhavya-product-slider-btn:hover,
body.home .reference-product-slider-section .bhavya-product-slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: none;
}

/* Carousel */
.reference-product-slider-section .bhavya-product-slider-carousel,
body.home .reference-product-slider-section .bhavya-product-slider-carousel {
    position: static !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper,
body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper {
    align-items: stretch !important;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}

/* Card */
.reference-product-slider-section .bhavya-product-card,
body.home .reference-product-slider-section .bhavya-product-card {
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
}

.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 14px !important;
    border-radius: 20px !important;
    background: #f3f4f2 !important;
    color: inherit !important;
    text-decoration: none !important;
    overflow: hidden !important;
    transition: transform 0.25s ease !important;
    box-shadow: none !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-3px) !important;
}

/* Square image wrapper */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;   /* SQUARE */
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #e8ece8 !important;
    flex-shrink: 0 !important;
    margin-bottom: 14px !important;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
}

/* Card text area */
.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 6px 4px 4px !important;
}

.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    display: block !important;
    margin: 0 0 8px !important;
    color: #2d2d2d !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    display: block !important;
    margin: 0 0 14px !important;
    color: #6b6b6b !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.8rem, 1vw, 0.95rem) !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    flex: 1 !important;
}

.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    color: #2d2d2d !important;
    font-family: var(--font-heading) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
    background: var(--primary-color) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease !important;
}

.reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot {
    transform: translateX(3px) !important;
}

/* Mobile overrides */
@media (max-width: 767px) {
    .reference-product-slider-section {
        padding: 40px 0 56px;
    }
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        padding: 0 var(--site-gutter-mobile) !important;
    }
    .reference-product-slider-section .bhavya-product-slider-head,
    body.home .reference-product-slider-section .bhavya-product-slider-head {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-actions {
        width: 100%;
        justify-content: flex-start;
    }
    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
        padding: 10px !important;
    }
}

/* View All button */
.bhavya-product-slider-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 98.41px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 8px;
    background: #e3815f;
    color: #ffffff;
    font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    letter-spacing: -0.42px;
    text-transform: none;
    transform: none;
}

.bhavya-product-slider-view-all:hover {
    background: #e3815f;
    color: #ffffff;
    transform: none;
}

.bhavya-product-slider-carousel {
    position: absolute;
    left: 40.48px;
    right: 43.52px;
    top: 138.07px;
    overflow: hidden;
    padding: 0;
}

.bhavya-product-slider-carousel .swiper-wrapper {
    align-items: stretch;
}

.bhavya-product-slider-carousel .swiper-slide {
    height: 565.405px;
}

/* ── Base (non-reference) slider card remnants kept minimal ── */
.bhavya-product-card {
    height: 100%;
    min-width: 0;
}

.bhavya-product-card-link {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #eef2ef;
    color: inherit;
    text-decoration: none;
}

.bhavya-product-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #dfe6df;
}

.bhavya-product-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bhavya-product-card-copy {
    display: block;
    padding: 16px;
}

.bhavya-product-card-title {
    display: block;
    color: #2f4f2f;
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 8px;
}

.bhavya-product-card-description {
    display: block;
    margin-top: 8px;
    color: #6b6b6b;
    font-family: var(--font-heading);
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 400;
    line-height: 1.5;
}

.bhavya-product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #2f4f2f;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.bhavya-product-card-cta-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.reference-card-large {
    grid-column: 1 / span 6;
    grid-row: 1 / span 2;
    min-height: 618px;
}

.reference-card-highlight {
    grid-column: 7 / span 6;
    grid-row: 1;
    min-height: 300px;
}

.reference-card-small:nth-of-type(3) {
    grid-column: 7 / span 3;
    grid-row: 2;
    min-height: 300px;
}

.reference-card-small:nth-of-type(4) {
    grid-column: 10 / span 3;
    grid-row: 2;
    min-height: 300px;
}

.reference-card-wide:nth-of-type(5) {
    grid-column: 1 / span 6;
    grid-row: 3;
    min-height: 320px;
}

.reference-card-wide:nth-of-type(6) {
    grid-column: 7 / span 6;
    grid-row: 3;
    min-height: 320px;
}

.reference-about-section {
    background: #eef2ec;
}

.reference-about-inner {
    align-items: center;
}

.reference-about-media {
    min-height: clamp(460px, 42vw, 720px);
}

.reference-about-image {
    width: min(100%, 660px);
}

.reference-gallery-section {
    padding: 42px var(--site-gutter-desktop) 28px;
    background: #ffffff;
}

.reference-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    width: min(100%, 1840px);
    margin: 0 auto;
}

.reference-gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eef2ec;
}

.reference-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reference-faq-section {
    background: #ffffff;
}

.reference-why-section {
    background: #eef2ec;
}

@media (max-width: 1100px) {
    .bhavya-product-slider-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .bhavya-product-slider-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 1100px) {
    .reference-services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .reference-card-large {
        grid-column: 1 / span 6;
        grid-row: auto;
        min-height: 420px;
    }

    .reference-card-highlight {
        grid-column: 1 / span 6;
        grid-row: auto;
    }

    .reference-card-small:nth-of-type(3),
    .reference-card-small:nth-of-type(4),
    .reference-card-wide:nth-of-type(5),
    .reference-card-wide:nth-of-type(6) {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }

    .reference-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-tablet);
        padding-right: var(--site-gutter-tablet);
    }

    .bhavya-product-slider-carousel {
        padding-bottom: 4px;
    }
}

@media (max-width: 768px) {
    .reference-product-slider-section {
        padding: 68px 0 80px;
    }

    .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }

    .bhavya-product-slider-description {
        font-size: 0.95rem;
    }

    .bhavya-product-slider-actions {
        flex-wrap: wrap;
        gap: 12px;
    }

    .bhavya-product-slider-view-all {
        min-height: 40px;
        padding: 0 18px;
    }

    .reference-services-section {
        padding-top: 8px;
    }

    .reference-services-grid {
        grid-template-columns: 1fr;
    }

    .reference-card,
    .reference-card-large,
    .reference-card-highlight,
    .reference-card-small,
    .reference-card-wide {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 240px;
    }

    .reference-gallery-section {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }

    .reference-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .bhavya-product-slider-title {
        font-size: var(--section-title-size);
    }

    .bhavya-product-slider-btn {
        width: 40px;
        height: 40px;
    }

    .bhavya-product-card-copy {
        padding: 16px;
    }

    .reference-card-copy {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .reference-card-title {
        font-size: 1.1rem;
    }

    .reference-card-description {
        font-size: 0.86rem;
    }

    .reference-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------- PIXEL-MATCHED HOME SECTIONS -------------- */
body.home .reference-product-slider-section {
    background: #ffffff;
    height: 843.48px;
    padding: 0;
    overflow: hidden;
}

body.home .bhavya-product-slider-inner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

body.home .bhavya-product-slider-head {
    display: block;
    margin: 0;
}

body.home .bhavya-product-slider-label {
    position: absolute;
    left: 40px;
    top: 85.02px;
    margin: 0;
    color: #1a1a1a;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10.105px;
    font-weight: 400;
    line-height: 10.105px;
    letter-spacing: 3.5368px;
    text-transform: uppercase;
}

body.home .bhavya-product-slider-title {
    position: absolute;
    left: 40px;
    top: 0;
    margin: 0;
    color: #212529;
    font-family: var(--font-heading);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
}

body.home .bhavya-product-slider-description {
    display: none;
}

body.home .bhavya-product-slider-head-copy::after {
    content: "";
    position: absolute;
    left: 156.17px;
    right: 40px;
    top: 88.51px;
    height: 1.011px;
    background: #d5d5d5;
}

body.home .bhavya-product-slider-actions {
    position: absolute;
    top: 21px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 17px;
}

body.home .bhavya-product-slider-nav {
    display: inline-flex;
    align-items: center;
    gap: 26px;
}

body.home .bhavya-product-slider-btn {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #666666;
    font-size: 24px;
    line-height: 18px;
    opacity: 1;
    transform: none;
}

body.home .bhavya-product-slider-prev {
    opacity: 0.5;
}

body.home .bhavya-product-slider-btn:hover {
    background: transparent;
    color: #666666;
    transform: none;
}

body.home .bhavya-product-slider-view-all {
    width: 98.41px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 8px;
    background: #e3815f;
    color: #ffffff;
    font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    letter-spacing: -0.42px;
    text-transform: none;
}

body.home .bhavya-product-slider-carousel {
    position: absolute;
    left: 40.48px;
    right: 43.52px;
    top: 138.07px;
    overflow: hidden;
    padding: 0;
}

body.home .bhavya-product-slider-carousel .swiper-slide {
    height: 565.405px;
}

body.home .bhavya-product-card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 565.405px;
    min-height: 565.405px;
    border-radius: 22.95px;
    background: #eef2ef;
    color: inherit;
    box-shadow: none;
    overflow: hidden;
    text-decoration: none;
    transform: none;
}

body.home .bhavya-product-card-link:hover {
    transform: none;
    box-shadow: none;
}

body.home .bhavya-product-card-media {
    position: absolute;
    left: 16.69px;
    right: 16.69px;
    top: 16.69px;
    width: auto;
    height: 309.5px;
    aspect-ratio: auto;
    border-radius: 12.518px;
    background: #dfe6df;
    overflow: hidden;
}

body.home .bhavya-product-card-image {
    display: block;
    width: 100%;
    max-width: none;
    height: 126.02%;
    object-fit: cover;
    object-position: center -10.13%;
    transition: none;
}

body.home .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: none;
}

body.home .bhavya-product-card-copy {
    position: absolute;
    left: 16.69px;
    right: 16.69px;
    top: 355px;
    display: block;
    padding: 0;
}

body.home .bhavya-product-card-title {
    display: block;
    color: #2f4f2f;
    font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
    font-size: 20.864px;
    font-weight: 700;
    line-height: normal;
}

body.home .bhavya-product-card-description {
    display: block;
    margin-top: 18px;
    max-width: 410px;
    color: #6b6b6b;
    font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
    font-size: 18.777px;
    font-weight: 400;
    line-height: 23.367px;
}

body.home .bhavya-product-card-cta {
    position: absolute;
    left: 0;
    top: 159px;
    display: inline-flex;
    align-items: center;
    gap: 8.27px;
    margin: 0;
    color: #2f4f2f;
    font-family: Montserrat, "Plus Jakarta Sans", sans-serif;
    font-size: 14.605px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    text-transform: none;
}

body.home .bhavya-product-card-cta-dot {
    width: 31.295px;
    height: 31.295px;
    border-radius: 10.432px;
    background: #4f6f5f;
    color: #ffffff;
    font-size: 16.691px;
    font-weight: 700;
}

body.home .reference-about-section {
    height: 670px;
    padding: 0;
    background: #eef2ef;
    overflow: hidden;
}

body.home .reference-about-inner {
    display: grid;
    grid-template-columns: 850px minmax(0, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 45.64px 40px 46px;
    align-items: start;
}

body.home .reference-about-media {
    position: relative;
    width: 850px;
    height: 578.994px;
    min-height: 578.994px;
    border-radius: 30px;
    background: #ffffff;
    overflow: hidden;
}

body.home .reference-about-image {
    position: absolute;
    left: 117.02px;
    top: -108px;
    width: 615.965px;
    height: 754.916px;
    max-width: none;
    object-fit: cover;
}

body.home .reference-about-section .about-content {
    padding-top: 52px;
}

body.home .reference-about-section .about-heading {
    margin: 0 0 29.99px;
    color: #000000;
    font-size: 64.674px;
    font-weight: 400;
    line-height: 64.674px;
    letter-spacing: 0;
}

body.home .reference-about-section .about-label-row {
    gap: 16px;
    margin: 0 0 38.99px;
}

body.home .reference-about-section .about-label-row-text {
    color: #000000;
    font-size: 10.105px;
    line-height: 10.105px;
    letter-spacing: 3.5368px;
    text-transform: uppercase;
}

body.home .reference-about-section .about-label-row-line {
    background: #000000;
}

body.home .reference-about-section .about-description {
    margin: 0;
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    line-height: 28.8px;
}

body.home .reference-about-section .about-description p {
    margin: 0 0 28.8px;
}

body.home .reference-about-section .about-btn {
    width: 150.14px;
    height: 48.31px;
    margin-top: 0;
    border-radius: 30px;
    background: #e3815f;
    color: #ffffff;
    font-size: 15.2px;
    font-weight: 600;
    line-height: 24.32px;
}

body.home .reference-gallery-section {
    height: 376.87px;
    padding: 140px 42px 0;
    background: #ffffff;
    overflow: hidden;
}

body.home .reference-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 236.871px);
    gap: 83.129px;
    width: auto;
    max-width: none;
    margin: 0;
}

body.home .reference-gallery-item {
    width: 236.871px;
    height: 236.871px;
    aspect-ratio: auto;
}

body.home .reference-why-section {
    height: 642px;
    padding: 0;
    background: #eef2ef;
    overflow: hidden;
}

body.home .reference-why-section .bhavya-why-choose-inner {
    display: grid;
    grid-template-columns: 876.176px minmax(0, 1fr);
    gap: 59px;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    align-items: start;
}

body.home .reference-why-section .bhavya-why-choose-image-wrap {
    width: 876.176px;
    height: 521.7px;
    border-radius: 30px;
    overflow: hidden;
}

body.home .reference-why-section .bhavya-why-choose-image {
    width: 100%;
    height: 135.19%;
    object-fit: cover;
    object-position: center top;
}

body.home .reference-why-section .bhavya-why-choose-content {
    padding-top: 25.35px;
}

body.home .reference-why-section .bhavya-why-choose-title {
    margin: 0 0 34.17px;
    color: #000000;
    font-size: 51.2px;
    font-weight: 700;
    line-height: 53.76px;
    letter-spacing: 0;
}

body.home .reference-why-section .bhavya-categories-label-row {
    margin-bottom: 33.83px;
}

body.home .reference-why-section .bhavya-categories-label-row-text {
    color: #000000;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 3.5px;
}

body.home .reference-why-section .bhavya-categories-label-row-line {
    background: #000000;
}

body.home .reference-why-section .bhavya-why-choose-subtitle,
body.home .reference-why-section .bhavya-why-choose-intro,
body.home .reference-why-section .bhavya-why-choose-bottom {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
}

body.home .reference-why-section .bhavya-why-choose-subtitle {
    margin: 0 0 25.6px;
}

body.home .reference-why-section .bhavya-why-choose-intro {
    margin: 0 0 25.3px;
}

body.home .reference-why-section .bhavya-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 38px;
    margin: 0 0 35.5px;
}

body.home .reference-why-section .bhavya-why-choose-card {
    min-height: 54px;
    gap: 16px;
}

body.home .reference-why-section .bhavya-why-choose-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #e3815f;
    transition: none;
}

body.home .reference-why-section .bhavya-why-choose-card:hover .bhavya-why-choose-icon {
    transform: none;
    background: #e3815f;
    color: inherit;
}

body.home .reference-why-section .bhavya-why-choose-icon svg {
    width: 26px;
    height: 26px;
}

body.home .reference-why-section .bhavya-why-choose-card-title {
    margin: 0 0 6.83px;
    color: #000000;
    font-size: 16.8px;
    font-weight: 700;
    line-height: 21.84px;
}

body.home .reference-why-section .bhavya-why-choose-card-desc {
    color: #000000;
    font-size: 15.2px;
    line-height: 22.04px;
}

body.home .reference-faq-section {
    min-height: 550px;
    padding: 0 40px 64px;
    background: #ffffff;
}

body.home .reference-faq-section .bhavya-faq-inner {
    max-width: 1840px;
    padding: 0;
}

body.home .reference-faq-section .bhavya-faq-header {
    padding-top: 0;
    margin-bottom: 40.04px;
}

body.home .reference-faq-section .bhavya-faq-title {
    margin: 0 0 21.01px;
    color: #212529;
    font-size: 64.674px;
    font-weight: 400;
    line-height: 64.674px;
    letter-spacing: 0;
}

body.home .reference-faq-section .bhavya-faq-title-accent {
    color: inherit;
}

body.home .reference-faq-section .bhavya-faq-eyebrow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    color: #1a1a1a;
    font-size: 10.105px;
    font-weight: 400;
    line-height: 10.105px;
    letter-spacing: 3.5368px;
    text-transform: uppercase;
}

body.home .reference-faq-section .bhavya-faq-eyebrow::after {
    content: "";
    height: 1.011px;
    flex: 1 1 auto;
    background: #d5d5d5;
}

body.home .reference-faq-section .bhavya-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 86px;
}

body.home .reference-faq-section .bhavya-faq-column {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.home .reference-faq-section .bhavya-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.home .reference-faq-section .bhavya-faq-toggle {
    min-height: 74px;
    padding: 0 51px 0 8px;
}

body.home .reference-faq-section .bhavya-faq-number {
    width: 18.2px;
    margin-right: 21.8px;
    color: rgba(0, 0, 0, 0.28);
    font-family: Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 2.534px;
}

body.home .reference-faq-section .bhavya-faq-question {
    color: rgba(0, 0, 0, 0.82);
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 27.84px;
}

body.home .reference-faq-section .bhavya-faq-icon {
    right: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.26);
    border-radius: 0;
}

body.home .reference-faq-section .bhavya-faq-icon span {
    background: #000000;
}

@media (max-width: 1279px) {
    body.home .reference-product-slider-section,
    body.home .reference-about-section,
    body.home .reference-why-section {
        height: auto;
    }

    body.home .bhavya-product-slider-inner,
    body.home .reference-about-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        max-width: 100%;
    }

    body.home .reference-about-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px var(--site-gutter-tablet);
    }

    body.home .reference-about-media,
    body.home .reference-why-section .bhavya-why-choose-image-wrap {
        width: 100%;
    }

    body.home .reference-gallery-section {
        height: auto;
        padding: 80px var(--site-gutter-tablet);
    }

    body.home .reference-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    body.home .reference-gallery-item {
        width: auto;
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    body.home .reference-product-slider-section {
        height: auto;
        padding: 56px 0 72px;
    }

    body.home .bhavya-product-slider-inner {
        height: auto;
        padding: 0 var(--site-gutter-mobile);
    }

    body.home .bhavya-product-slider-title,
    body.home .bhavya-product-slider-label,
    body.home .bhavya-product-slider-actions,
    body.home .bhavya-product-slider-carousel {
        position: static;
    }

    body.home .bhavya-product-slider-title {
        margin-bottom: 16px;
        font-size: var(--section-title-size);
        line-height: var(--section-title-lh);
    }

    body.home .bhavya-product-slider-label {
        margin-bottom: 24px;
    }

    body.home .bhavya-product-slider-head-copy::after {
        display: none;
    }

    body.home .bhavya-product-slider-actions {
        margin: 0 0 24px;
    }

    body.home .bhavya-product-slider-carousel .swiper-slide,
    body.home .bhavya-product-card-link {
        height: 500px;
        min-height: 500px;
    }

    body.home .reference-about-section .about-heading,
    body.home .reference-faq-section .bhavya-faq-title {
        font-size: 42px;
        line-height: 46px;
    }

    body.home .reference-about-section .about-description {
        font-size: 18px;
        line-height: 26px;
    }

    body.home .reference-gallery-grid,
    body.home .reference-faq-section .bhavya-faq-grid,
    body.home .reference-why-section .bhavya-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Final About Us override: matches the supplied About section CSS. */
.reference-about-section,
body.home .reference-about-section {
    height: auto;
    min-height: 0;
    padding: 80px 40px;
    background: #eef2ef;
    overflow: visible;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.reference-about-inner,
body.home .reference-about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

.reference-about-media,
body.home .reference-about-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    padding: 0;
    border-radius: 32px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.reference-about-media::before,
body.home .reference-about-media::before {
    display: none;
}

.reference-about-image,
body.home .reference-about-image {
    position: static;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: none;
}

.reference-about-section .about-content,
body.home .reference-about-section .about-content {
    width: 100%;
    max-width: none;
    padding-top: 0;
    justify-self: auto;
    text-align: left;
}

.reference-about-section .about-heading,
body.home .reference-about-section .about-heading {
    margin: 0 0 20px;
    color: #111111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.reference-about-section .about-label-row,
body.home .reference-about-section .about-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
}

.reference-about-section .about-label-row-text,
body.home .reference-about-section .about-label-row-text {
    flex: 0 0 auto;
    color: #777777;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.reference-about-section .about-label-row-line,
body.home .reference-about-section .about-label-row-line,
.reference-about-section .story-line::after,
body.home .reference-about-section .story-line::after {
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: #bbbbbb;
}

.reference-about-section .about-description,
body.home .reference-about-section .about-description {
    max-width: none;
    margin: 0;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.reference-about-section .about-description p,
body.home .reference-about-section .about-description p {
    margin: 0 0 22px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.reference-about-section .about-description p:last-child,
body.home .reference-about-section .about-description p:last-child {
    margin-bottom: 22px;
}

.reference-about-section .about-btn,
body.home .reference-about-section .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 14px 28px;
    border-radius: 28px;
    background: #e3815f;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
    box-shadow: none;
    transition: 0.3s;
    transform: none;
}

.reference-about-section .about-btn:hover,
body.home .reference-about-section .about-btn:hover {
    background: #cf6f4e;
    color: #ffffff;
    transform: none;
}

@media (max-width: 900px) {
    .reference-about-inner,
    body.home .reference-about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reference-about-section .about-heading,
    body.home .reference-about-section .about-heading {
        font-size: 42px;
    }

    .reference-about-media,
    body.home .reference-about-media,
    .reference-about-image,
    body.home .reference-about-image {
        min-height: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .reference-about-section,
    body.home .reference-about-section {
        padding: 56px 20px;
    }
}

/* Final Marquee Section override: matches the supplied marquee CSS. */
.reference-gallery-section,
body.home .reference-gallery-section {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
    --reference-marquee-duration: 35s;
}

.reference-gallery-wrapper,
body.home .reference-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reference-gallery-track,
body.home .reference-gallery-track {
    display: flex;
    width: max-content;
    max-width: none;
    margin: 0;
    animation: bhavya-reference-marquee var(--reference-marquee-duration) linear infinite;
}

.reference-gallery-item,
body.home .reference-gallery-item {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    padding: 0 40px;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
}

.reference-gallery-image,
body.home .reference-gallery-image {
    display: block;
    width: auto;
    max-width: none;
    height: 90px;
    object-fit: contain;
    transition: 0.3s ease;
}

.reference-gallery-image:hover,
body.home .reference-gallery-image:hover {
    transform: scale(1.05);
}

@keyframes bhavya-reference-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .reference-gallery-item,
    body.home .reference-gallery-item {
        padding: 0 20px;
    }

    .reference-gallery-image,
    body.home .reference-gallery-image {
        height: 60px;
    }
}

/* Final contained-width pass: match the homepage second section width. */
body.home .reference-product-slider-section,
body.home .reference-about-section,
body.home .reference-gallery-section,
body.home .reference-why-section,
body.home .reference-faq-section,
.reference-product-slider-section,
.reference-about-section,
.reference-gallery-section,
.reference-why-section,
.reference-faq-section {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

body.home .bhavya-product-slider-inner,
body.home .reference-about-inner,
body.home .reference-why-section .bhavya-why-choose-inner,
body.home .reference-faq-section .bhavya-faq-inner,
.bhavya-product-slider-inner,
.reference-about-inner,
.reference-why-section .bhavya-why-choose-inner,
.reference-faq-section .bhavya-faq-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.home .bhavya-product-slider-inner,
.bhavya-product-slider-inner {
    padding-left: 40px;
    padding-right: 40px;
}

body.home .reference-about-section,
.reference-about-section {
    padding-left: 40px;
    padding-right: 40px;
}

body.home .reference-gallery-section,
.reference-gallery-section {
    padding: 40px;
}

body.home .reference-gallery-wrapper,
.reference-gallery-wrapper {
    width: 100%;
    overflow: hidden;
}

body.home .reference-why-section,
.reference-why-section,
body.home .reference-faq-section,
.reference-faq-section {
    padding-left: 40px;
    padding-right: 40px;
}

body.home .reference-why-section .bhavya-why-choose-inner,
.reference-why-section .bhavya-why-choose-inner,
body.home .reference-faq-section .bhavya-faq-inner,
.reference-faq-section .bhavya-faq-inner {
    padding-left: 0;
    padding-right: 0;
}

body.home .reference-gallery-track,
.reference-gallery-track {
    display: flex;
    width: max-content;
    max-width: none;
    margin: 0;
    animation-name: bhavya-reference-marquee;
    animation-duration: var(--reference-marquee-duration, 35s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    will-change: transform;
}

body.home .reference-gallery-wrapper:hover .reference-gallery-track,
.reference-gallery-wrapper:hover .reference-gallery-track {
    animation-play-state: running;
}

@keyframes bhavya-reference-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    body.home .bhavya-product-slider-inner,
    .bhavya-product-slider-inner,
    body.home .reference-about-section,
    .reference-about-section,
    body.home .reference-gallery-section,
    .reference-gallery-section,
    body.home .reference-why-section,
    .reference-why-section,
    body.home .reference-faq-section,
    .reference-faq-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Final Product Slider card override: matches the supplied card CSS. */
/* Late no-shadow pass: keep all sections and images flat after repeated overrides. */
:root {
    --box-shadow: none;
}

body section,
body section *,
body article,
body article *,
body img,
body picture,
body figure,
body .site-header,
body .mega-menu-dropdown,
body .footer-accordion,
body [class*="card"],
body [class*="image-wrap"],
body [class*="media"] {
    box-shadow: none !important;
    text-shadow: none !important;
}

body img,
body picture,
body figure {
    filter: none !important;
}

.reference-product-slider-section,
body.home .reference-product-slider-section {
    background: #ffffff;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
body.home .bhavya-product-slider-carousel .swiper-slide {
    height: auto;
}

.reference-product-slider-section .bhavya-product-card,
body.home .bhavya-product-card {
    height: auto;
}

.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    color: inherit;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: none;
    overflow: visible;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #e8e8e8;
    overflow: hidden;
    margin-bottom: 20px;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: none;
}

.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
}

.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    display: block;
    margin: 0 0 12px;
    color: #2e4d36;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    display: block;
    max-width: none;
    margin: 0 0 22px;
    color: #6d6d6d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}

.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #2e4d36;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
}

.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #2e4d36;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
        max-width: none;
    }

    .reference-product-slider-section .bhavya-product-card-title,
    body.home .reference-product-slider-section .bhavya-product-card-title {
        font-size: 24px;
    }
}

@media (min-width: 1025px) {
    .about-inner:not(.reference-about-inner),
    .reference-about-inner,
    body.home .reference-about-inner,
    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        align-items: center !important;
        gap: 40px !important;
    }

    .about-inner:not(.reference-about-inner) .about-content,
    .reference-about-section .about-content,
    body.home .reference-about-section .about-content,
    .reference-why-section .bhavya-why-choose-content,
    body.home .reference-why-section .bhavya-why-choose-content {
        width: 100% !important;
        max-width: none !important;
    }

    .about-image-wrap,
    .reference-about-media,
    body.home .reference-about-media,
    .bhavya-why-choose-image-wrap,
    .reference-why-section .bhavya-why-choose-image-wrap,
    body.home .reference-why-section .bhavya-why-choose-image-wrap {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .reference-product-slider-section,
    body.home .reference-product-slider-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 56px 0 72px !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        height: auto !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-title,
    .reference-product-slider-section .bhavya-product-slider-label,
    .reference-product-slider-section .bhavya-product-slider-actions,
    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-title,
    body.home .reference-product-slider-section .bhavya-product-slider-label,
    body.home .reference-product-slider-section .bhavya-product-slider-actions,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .reference-product-slider-section .bhavya-product-slider-head-copy::after,
    body.home .reference-product-slider-section .bhavya-product-slider-head-copy::after {
        display: none !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        width: 100% !important;
        margin-top: 20px !important;
        overflow: hidden !important;
        padding: 0 !important;
    }
}

@media (min-width: 1800px) {
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        max-width: 1840px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
    }
}

/* Product slider uses Swiper breakpoints - see main.js for configuration */

/* Card visual styling to match provided snippet */
.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    display: flex !important;
    flex-direction: column !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background: #f3f4f2 !important;
    color: inherit !important;
    box-shadow: none !important;
    overflow: hidden !important;
    text-decoration: none !important;
    min-height: 0 !important;
}

.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    border-radius: 18px !important;
    overflow: hidden !important;
    height: 200px !important;
    background: #dfe6df !important;
    display: block !important;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 0 !important;
}

.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    padding: 14px 6px !important;
}

.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2e4d36 !important;
    margin: 0 0 6px !important;
}

.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    font-size: 13px !important;
    color: #666666 !important;
    margin: 8px 0 14px !important;
}

.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #2e4d36 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    width: 32px !important;
    height: 32px !important;
    border-radius: 10px !important;
    background: #2e4d36 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
}

/* Navigation buttons styled like the example */
.reference-product-slider-section .bhavya-product-slider-prev,
.reference-product-slider-section .bhavya-product-slider-next,
body.home .reference-product-slider-section .bhavya-product-slider-prev,
body.home .reference-product-slider-section .bhavya-product-slider-next {
    position: absolute !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    background: #2e4d36 !important;
    color: #fff !important;
    border: none !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 20 !important;
    cursor: pointer !important;
}

.reference-product-slider-section .bhavya-product-slider-prev { left: 6px !important; }
.reference-product-slider-section .bhavya-product-slider-next { right: 6px !important; }

/* small mobile tweaks */
@media (max-width: 480px) {
    .reference-product-slider-section .bhavya-product-card-media,
    body.home .reference-product-slider-section .bhavya-product-card-media {
        height: 160px !important;
    }
    .reference-product-slider-section .bhavya-product-card-title,
    body.home .reference-product-slider-section .bhavya-product-card-title {
        font-size: 16px !important;
    }
}

/* End of sample-matching block */

@media (min-width: 1025px) {
    .reference-faq-section .bhavya-faq-header,
    body.home .reference-faq-section .bhavya-faq-header {
        max-width: none !important;
        margin: 0 0 36px !important;
        padding-top: 0 !important;
        gap: 0 !important;
    }

    .reference-faq-section .bhavya-faq-eyebrow,
    body.home .reference-faq-section .bhavya-faq-eyebrow {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        margin: 0 0 12px !important;
        color: #1a1a1a !important;
        font-family: "Plus Jakarta Sans", sans-serif !important;
        font-size: 10.105px !important;
        font-weight: 400 !important;
        line-height: 10.105px !important;
        letter-spacing: 3.5368px !important;
        text-transform: uppercase !important;
    }

    .reference-faq-section .bhavya-faq-eyebrow::after,
    body.home .reference-faq-section .bhavya-faq-eyebrow::after {
        content: "" !important;
        display: block !important;
        flex: 1 1 auto !important;
        height: 1.011px !important;
        background: #d5d5d5 !important;
    }

    .reference-faq-section .bhavya-faq-title,
    body.home .reference-faq-section .bhavya-faq-title {
        margin: 0 !important;
        color: #212529 !important;
        font-family: "Plus Jakarta Sans", sans-serif !important;
        font-size: 64.674px !important;
        font-weight: 400 !important;
        line-height: 64.674px !important;
        letter-spacing: -1.9402px !important;
    }

    .reference-faq-section .bhavya-faq-title-accent,
    body.home .reference-faq-section .bhavya-faq-title-accent {
        color: inherit !important;
        font-style: normal !important;
    }
}

/* Title flow update: keep main title above divider row */
.reference-why-section .bhavya-why-choose-content,
body.home .reference-why-section .bhavya-why-choose-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-self: start !important;
    padding-top: 0 !important;
}

.reference-why-section .bhavya-why-choose-inner,
body.home .reference-why-section .bhavya-why-choose-inner {
    align-items: start !important;
}

.reference-why-section .bhavya-why-choose-title,
body.home .reference-why-section .bhavya-why-choose-title {
    order: 1 !important;
    margin: 0 0 14px !important;
}

.reference-why-section .bhavya-categories-label-row,
body.home .reference-why-section .bhavya-categories-label-row {
    order: 2 !important;
    margin: 0 0 28px !important;
}

.reference-faq-section .bhavya-faq-header,
body.home .reference-faq-section .bhavya-faq-header {
    display: flex !important;
    flex-direction: column !important;
}

.reference-faq-section .bhavya-faq-title,
body.home .reference-faq-section .bhavya-faq-title {
    order: 1 !important;
    margin: 0 0 16px !important;
}

.reference-faq-section .bhavya-faq-eyebrow,
body.home .reference-faq-section .bhavya-faq-eyebrow {
    order: 2 !important;
    margin: 0 0 28px !important;
}

/* Unified home section heading style (match About Us heading flow) */
.reference-services-section .bhavya-categories-head,
body.home .reference-services-section .bhavya-categories-head,
.reference-product-slider-section .bhavya-product-slider-head-copy,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy,
.reference-faq-section .bhavya-faq-header,
body.home .reference-faq-section .bhavya-faq-header,
.reference-why-section .bhavya-why-choose-content,
body.home .reference-why-section .bhavya-why-choose-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}

.reference-product-slider-section .bhavya-product-slider-head-copy,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy {
    position: relative !important;
    padding-right: clamp(200px, 18vw, 320px) !important;
}

.reference-product-slider-section .bhavya-product-slider-head-copy::after,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy::after {
    display: none !important;
    content: none !important;
}

.reference-services-section .bhavya-categories-title,
body.home .reference-services-section .bhavya-categories-title,
.reference-product-slider-section .bhavya-product-slider-title,
body.home .reference-product-slider-section .bhavya-product-slider-title,
.reference-faq-section .bhavya-faq-title,
body.home .reference-faq-section .bhavya-faq-title,
.reference-why-section .bhavya-why-choose-title,
body.home .reference-why-section .bhavya-why-choose-title {
    position: static !important;
    order: 1 !important;
    margin: 0 0 28px !important;
    color: #111111 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(44px, 3.35vw, 64px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
}

.reference-faq-section .bhavya-faq-title-accent,
body.home .reference-faq-section .bhavya-faq-title-accent {
    color: inherit !important;
    font-style: normal !important;
}

.reference-services-section .bhavya-categories-label-row,
body.home .reference-services-section .bhavya-categories-label-row,
.reference-why-section .bhavya-categories-label-row,
body.home .reference-why-section .bhavya-categories-label-row,
.reference-faq-section .bhavya-faq-eyebrow,
body.home .reference-faq-section .bhavya-faq-eyebrow,
.reference-product-slider-section .bhavya-product-slider-label,
body.home .reference-product-slider-section .bhavya-product-slider-label {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    order: 2 !important;
    width: 100% !important;
    margin: 0 0 24px !important;
    color: #777777 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.reference-services-section .bhavya-categories-label-row-line,
body.home .reference-services-section .bhavya-categories-label-row-line,
.reference-why-section .bhavya-categories-label-row-line,
body.home .reference-why-section .bhavya-categories-label-row-line {
    height: 1px !important;
    background: #bbbbbb !important;
}

.reference-faq-section .bhavya-faq-eyebrow::after,
body.home .reference-faq-section .bhavya-faq-eyebrow::after,
.reference-product-slider-section .bhavya-product-slider-label::after,
body.home .reference-product-slider-section .bhavya-product-slider-label::after {
    content: "" !important;
    display: block !important;
    flex: 1 1 auto !important;
    height: 1px !important;
    background: #bbbbbb !important;
}

@media (max-width: 1024px) {
    .reference-services-section .bhavya-categories-title,
    body.home .reference-services-section .bhavya-categories-title,
    .reference-product-slider-section .bhavya-product-slider-title,
    body.home .reference-product-slider-section .bhavya-product-slider-title,
    .reference-faq-section .bhavya-faq-title,
    body.home .reference-faq-section .bhavya-faq-title,
    .reference-why-section .bhavya-why-choose-title,
    body.home .reference-why-section .bhavya-why-choose-title {
        font-size: clamp(36px, 8.4vw, 52px) !important;
    }
}

@media (max-width: 768px) {
    .reference-product-slider-section .bhavya-product-slider-head-copy,
    body.home .reference-product-slider-section .bhavya-product-slider-head-copy {
        padding-right: 0 !important;
    }
}

/* Final reference match: Why Choose Us section (desktop + responsive). */
.reference-why-section,
body.home .reference-why-section {
    height: auto !important;
    min-height: 0 !important;
    padding: 64px 40px !important;
    background: #d9dddc !important;
    overflow: visible !important;
}

.reference-why-section .bhavya-why-choose-inner,
body.home .reference-why-section .bhavya-why-choose-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 49%) minmax(0, 51%) !important;
    gap: 60px !important;
    width: 100% !important;
    max-width: 1920px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    align-items: start !important;
}

.reference-why-section .bhavya-why-choose-image-wrap,
body.home .reference-why-section .bhavya-why-choose-image-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 876 / 522 !important;
    border-radius: 30px !important;
    overflow: hidden !important;
}

.reference-why-section .bhavya-why-choose-image,
body.home .reference-why-section .bhavya-why-choose-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.reference-why-section .bhavya-why-choose-content,
body.home .reference-why-section .bhavya-why-choose-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    align-self: start !important;
    margin: 0 !important;
    padding: 36px 0 0 !important;
}

.reference-why-section .bhavya-why-choose-title,
body.home .reference-why-section .bhavya-why-choose-title {
    order: 1 !important;
    margin: 0 0 28px !important;
    color: #111111 !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: clamp(46px, 3.5vw, 64px) !important;
    font-weight: 600 !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
}

.reference-why-section .bhavya-categories-label-row,
body.home .reference-why-section .bhavya-categories-label-row {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    order: 2 !important;
    width: 100% !important;
    margin: 0 0 42px !important;
}

.reference-why-section .bhavya-categories-label-row-text,
body.home .reference-why-section .bhavya-categories-label-row-text {
    color: #111111 !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0.45em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.reference-why-section .bhavya-categories-label-row-line,
body.home .reference-why-section .bhavya-categories-label-row-line {
    flex: 1 1 auto !important;
    height: 1px !important;
    background: #2a2a2a !important;
}

.reference-why-section .bhavya-why-choose-subtitle,
body.home .reference-why-section .bhavya-why-choose-subtitle,
.reference-why-section .bhavya-why-choose-intro,
body.home .reference-why-section .bhavya-why-choose-intro,
.reference-why-section .bhavya-why-choose-bottom,
body.home .reference-why-section .bhavya-why-choose-bottom {
    color: #1e1e1e !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.52 !important;
    letter-spacing: 0 !important;
}

.reference-why-section .bhavya-why-choose-subtitle,
body.home .reference-why-section .bhavya-why-choose-subtitle {
    margin: 0 0 24px !important;
}

.reference-why-section .bhavya-why-choose-intro,
body.home .reference-why-section .bhavya-why-choose-intro {
    margin: 0 0 30px !important;
}

.reference-why-section .bhavya-why-choose-grid,
body.home .reference-why-section .bhavya-why-choose-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 44px !important;
    margin: 0 0 30px !important;
}

.reference-why-section .bhavya-why-choose-card,
body.home .reference-why-section .bhavya-why-choose-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    min-height: 0 !important;
}

.reference-why-section .bhavya-why-choose-icon,
body.home .reference-why-section .bhavya-why-choose-icon {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px !important;
    border-radius: 16px !important;
    background: #e3815f !important;
    color: #ffffff !important;
}

.reference-why-section .bhavya-why-choose-icon svg,
body.home .reference-why-section .bhavya-why-choose-icon svg {
    width: 26px !important;
    height: 26px !important;
}

.reference-why-section .bhavya-why-choose-card-title,
body.home .reference-why-section .bhavya-why-choose-card-title {
    margin: 0 0 6px !important;
    color: #111111 !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 16.8px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.reference-why-section .bhavya-why-choose-card-desc,
body.home .reference-why-section .bhavya-why-choose-card-desc {
    margin: 0 !important;
    color: #1f1f1f !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
}

.reference-why-section .bhavya-why-choose-bottom,
body.home .reference-why-section .bhavya-why-choose-bottom {
    margin: 0 !important;
}

@media (max-width: 1279px) {
    .reference-why-section,
    body.home .reference-why-section {
        padding: 56px 28px !important;
    }

    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .reference-why-section .bhavya-why-choose-content,
    body.home .reference-why-section .bhavya-why-choose-content {
        padding-top: 0 !important;
    }

    .reference-why-section .bhavya-why-choose-grid,
    body.home .reference-why-section .bhavya-why-choose-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 22px 24px !important;
    }
}

@media (max-width: 768px) {
    .reference-why-section,
    body.home .reference-why-section {
        padding: 40px 20px !important;
    }

    .reference-why-section .bhavya-why-choose-title,
    body.home .reference-why-section .bhavya-why-choose-title {
        font-size: clamp(36px, 11vw, 48px) !important;
    }

    .reference-why-section .bhavya-categories-label-row,
    body.home .reference-why-section .bhavya-categories-label-row {
        margin-bottom: 26px !important;
    }

    .reference-why-section .bhavya-why-choose-subtitle,
    body.home .reference-why-section .bhavya-why-choose-subtitle,
    .reference-why-section .bhavya-why-choose-intro,
    body.home .reference-why-section .bhavya-why-choose-intro,
    .reference-why-section .bhavya-why-choose-bottom,
    body.home .reference-why-section .bhavya-why-choose-bottom {
        font-size: 16px !important;
    }

    .reference-why-section .bhavya-why-choose-grid,
    body.home .reference-why-section .bhavya-why-choose-grid {
        grid-template-columns: 1fr !important;
    }

    .reference-why-section .bhavya-why-choose-card-title,
    body.home .reference-why-section .bhavya-why-choose-card-title {
        font-size: 22px !important;
    }
}

/* Absolute final lock: keep Why Choose title as first/top item in content column. */
.bhavya-why-choose-section .bhavya-why-choose-content,
.reference-why-section .bhavya-why-choose-content,
body.home .reference-why-section .bhavya-why-choose-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    align-self: start !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.bhavya-why-choose-section .bhavya-why-choose-title,
.reference-why-section .bhavya-why-choose-title,
body.home .reference-why-section .bhavya-why-choose-title,
.bhavya-why-choose-section .bhavya-title {
    order: 1 !important;
    position: static !important;
    margin-top: 0 !important;
}

.bhavya-why-choose-section .bhavya-categories-label-row,
.reference-why-section .bhavya-categories-label-row,
body.home .reference-why-section .bhavya-categories-label-row,
.bhavya-why-choose-section .bhavya-eyebrow {
    order: 2 !important;
}

.bhavya-why-choose-section .bhavya-why-choose-subtitle,
.reference-why-section .bhavya-why-choose-subtitle,
body.home .reference-why-section .bhavya-why-choose-subtitle,
.bhavya-why-choose-section .bhavya-subtitle {
    order: 3 !important;
}

.bhavya-why-choose-section .bhavya-why-choose-intro,
.reference-why-section .bhavya-why-choose-intro,
body.home .reference-why-section .bhavya-why-choose-intro,
.bhavya-why-choose-section .bhavya-intro {
    order: 4 !important;
}

.bhavya-why-choose-section .bhavya-why-choose-grid,
.reference-why-section .bhavya-why-choose-grid,
body.home .reference-why-section .bhavya-why-choose-grid,
.bhavya-why-choose-section .bhavya-grid {
    order: 5 !important;
}

.bhavya-why-choose-section .bhavya-why-choose-bottom,
.reference-why-section .bhavya-why-choose-bottom,
body.home .reference-why-section .bhavya-why-choose-bottom,
.bhavya-why-choose-section .bhavya-bottom {
    order: 6 !important;
}

/* Laptop-small refinement only: fix product card image crop + bottom padding. */
@media (min-width: 1025px) and (max-width: 1512px) {
    .reference-product-slider-section,
    body.home .reference-product-slider-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 56px 0 84px !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        height: auto !important;
        overflow: visible !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        margin-top: 22px !important;
        padding: 0 0 8px !important;
        overflow: hidden !important;
    }

    .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
    body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
        height: auto !important;
    }

    .reference-product-slider-section .bhavya-product-card,
    body.home .reference-product-slider-section .bhavya-product-card {
        height: auto !important;
    }

    .reference-product-slider-section .bhavya-product-card-link,
    body.home .reference-product-slider-section .bhavya-product-card-link {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 14px !important;
        border-radius: 20px !important;
    }

    .reference-product-slider-section .bhavya-product-card-media,
    body.home .reference-product-slider-section .bhavya-product-card-media {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        height: clamp(220px, 21vw, 300px) !important;
        border-radius: 12px !important;
        margin: 0 0 14px !important;
    }

    .reference-product-slider-section .bhavya-product-card-image,
    body.home .reference-product-slider-section .bhavya-product-card-image {
        height: 100% !important;
        object-position: center center !important;
    }

    .reference-product-slider-section .bhavya-product-card-copy,
    body.home .reference-product-slider-section .bhavya-product-card-copy {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 4px 2px 16px !important;
    }

    .reference-product-slider-section .bhavya-product-card-cta,
    body.home .reference-product-slider-section .bhavya-product-card-cta {
        position: static !important;
        left: auto !important;
        top: auto !important;
        margin-top: 16px !important;
    }
}



/* ========================================
   V2 SECTIONS - CLEAN IMPLEMENTATION
   ======================================== */

.about-v2-section {
    width: 100%;
    background-color: #EEF2EF;
    padding: 80px 40px;
    box-sizing: border-box;
}
.about-v2-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.about-v2-image-wrap { width: 100%; border-radius: 32px; overflow: hidden; }
.about-v2-image { width: 100%; height: auto; display: block; }
.about-v2-content { display: flex; flex-direction: column; gap: 24px; }
.about-v2-heading { font-size: var(--section-title-size); font-weight: var(--section-title-weight); line-height: var(--section-title-lh); letter-spacing: var(--section-title-ls); color: #111; margin: 0; }
.about-v2-eyebrow-row { display: flex; align-items: center; gap: 16px; }
.about-v2-eyebrow-text { font-size: var(--eyebrow-size); letter-spacing: var(--eyebrow-ls); text-transform: uppercase; color: #777; white-space: nowrap; }
.about-v2-eyebrow-line { flex: 1; height: 1px; background-color: #bbb; }
.about-v2-description { font-size: var(--body-size); line-height: 1.7; color: #333; }
.about-v2-description p { margin: 0 0 16px 0; }
.about-v2-description p:last-child { margin-bottom: 0; }
.about-v2-button { display: inline-block; padding: 14px 32px; background-color: #E3815F; color: #fff; text-decoration: none; border-radius: 28px; font-size: 16px; transition: background-color 0.3s; align-self: flex-start; }
.about-v2-button:hover { background-color: #cf6f4e; }

.why-choose-v2-section { width: 100%; background-color: #EEF2EF; padding: 60px 40px; box-sizing: border-box; }
.why-choose-v2-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 59px; align-items: center; width: 100%; }
.why-choose-v2-image-wrap { width: 100%; border-radius: 30px; overflow: hidden; }
.why-choose-v2-image { width: 100%; height: auto; display: block; }
.why-choose-v2-content { display: flex; flex-direction: column; gap: 20px; }
.why-choose-v2-title { font-size: var(--section-title-size); font-weight: var(--section-title-weight); line-height: var(--section-title-lh); letter-spacing: var(--section-title-ls); color: #000; margin: 0; }
.why-choose-v2-eyebrow-row { display: flex; align-items: center; gap: 16px; }
.why-choose-v2-eyebrow-text { font-size: var(--eyebrow-size); letter-spacing: var(--eyebrow-ls); text-transform: uppercase; color: #000; white-space: nowrap; }
.why-choose-v2-eyebrow-line { flex: 1; height: 1px; background-color: #000; }
.why-choose-v2-subtitle, .why-choose-v2-intro, .why-choose-v2-bottom { font-size: var(--body-size); line-height: 1.6; color: #000; margin: 0; }
.why-choose-v2-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 8px 0; }
.why-choose-v2-card { display: flex; gap: 16px; align-items: flex-start; }
.why-choose-v2-icon { width: 54px; height: 54px; flex-shrink: 0; background-color: #E3815F; color: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.why-choose-v2-icon svg { width: 24px; height: 24px; }
.why-choose-v2-card-title { font-size: 16.8px; font-weight: 700; line-height: 1.3; color: #000; margin: 0 0 4px 0; }
.why-choose-v2-card-desc { font-size: 15.2px; line-height: 1.45; color: #000; margin: 0; }

.faq-v2-section { width: 100%; background-color: #fff; padding: 0 40px 64px 40px; box-sizing: border-box; }
.faq-v2-header { margin-bottom: 40px; }
.faq-v2-title { font-size: var(--section-title-size); font-weight: var(--section-title-weight); line-height: var(--section-title-lh); letter-spacing: var(--section-title-ls); color: #212529; margin: 0 0 16px 0; }
.faq-v2-eyebrow { font-size: var(--eyebrow-size); letter-spacing: var(--eyebrow-ls); text-transform: uppercase; color: #1a1a1a; margin: 0; }
.faq-v2-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 86px; width: 100%; }
.faq-v2-column { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-v2-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-v2-toggle { width: 100%; min-height: 74px; display: flex; align-items: center; gap: 16px; padding: 16px 0; background: none; border: none; cursor: pointer; text-align: left; }
.faq-v2-number { font-size: 11.5px; letter-spacing: 2.5px; color: rgba(0,0,0,0.28); flex-shrink: 0; }
.faq-v2-question { flex: 1; font-size: 19px; font-weight: 400; line-height: 1.465; color: rgba(0,0,0,0.82); }
.faq-v2-icon { width: 32px; height: 32px; flex-shrink: 0; position: relative; border: none !important; }
.faq-v2-icon span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background-color: #000; transition: all 0.3s; }
.faq-v2-icon span:first-child { width: 16px; height: 2px; }
.faq-v2-icon span:last-child { width: 2px; height: 16px; }
.faq-v2-toggle[aria-expanded="true"] .faq-v2-icon span:last-child { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-v2-answer[hidden] { display: none; }
.faq-v2-answer-text { padding: 0 0 24px 0; font-size: 16px; line-height: 1.6; color: #4b5563; }
.faq-v2-answer-text p { margin: 0; }

@media (max-width: 1024px) {
    .about-v2-grid, .why-choose-v2-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-v2-columns { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
    .about-v2-section {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }
    .why-choose-v2-section {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }
    .faq-v2-section {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }
}

/* ============================================================
   PRODUCT SLIDER — LAYOUT
   ============================================================ */

.bhavya-product-slider-section,
.reference-product-slider-section {
    width: 100%;
    padding: 56px 0 72px;
    overflow: hidden;
}
.bhavya-product-slider-section .bhavya-product-slider-inner,
.reference-product-slider-section .bhavya-product-slider-inner {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .bhavya-product-slider-section .bhavya-product-slider-inner,
    .reference-product-slider-section .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile);
        padding-right: var(--site-gutter-mobile);
    }
}
.bhavya-product-slider-section .bhavya-product-slider-head,
.reference-product-slider-section .bhavya-product-slider-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
    position: relative !important;
}
.bhavya-product-slider-section .bhavya-product-slider-head-copy,
.reference-product-slider-section .bhavya-product-slider-head-copy {
    flex: 1 1 auto !important;
    position: static !important;
}
.bhavya-product-slider-section .bhavya-product-slider-head-copy::after,
.reference-product-slider-section .bhavya-product-slider-head-copy::after { display: none !important; }
.bhavya-product-slider-section .bhavya-product-slider-actions,
.reference-product-slider-section .bhavya-product-slider-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    position: static !important;
    top: auto !important; right: auto !important;
    margin: 0 !important;
}
.bhavya-product-slider-section .bhavya-product-slider-nav,
.reference-product-slider-section .bhavya-product-slider-nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.bhavya-product-slider-btn {
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important;
    border: 1.5px solid #d0d0d0 !important;
    background: #fff !important; color: #333 !important;
    font-size: 18px !important;
    display: inline-flex !important;
    align-items: center !important; justify-content: center !important;
    cursor: pointer !important;
    position: static !important;
    top: auto !important; right: auto !important;
    transform: none !important;
}
.bhavya-product-slider-carousel {
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important; margin: 0 !important;
}
.bhavya-product-card-media {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background-color: transparent !important;
    position: relative !important;
    flex-shrink: 0 !important;
}
.bhavya-product-card-image {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* ============================================================
   HEADER DROPDOWN Z-INDEX + HAMBURGER CLOSE ICON
   ============================================================ */

.site-header { position: sticky !important; top: 0 !important; z-index: 99998 !important; }
.main-navigation .mega-menu-dropdown { z-index: 99999 !important; }

/* Fix Elementor Lightbox overlapping with sticky header */
#elementor-lightbox,
.elementor-lightbox {
    z-index: 999999 !important;
}

.menu-toggle-icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.menu-toggle-icon:hover {
    background-color: transparent !important;
}

.menu-toggle-icon svg {
    position: absolute !important;
    width: 24px !important;
    height: 24px !important;
    color: #000 !important;
}

/* ============================================================
   PRODUCT CARD — FINAL EXACT DESIGN (matches reference image)
   Card: sage-green bg · image inset with padding · square image ·
   dark-green title · gray desc · rounded-square CTA button
   ============================================================ */

.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 10px 10px 20px !important;   /* inset so image sits inside card with gap */
    border-radius: 24px !important;
    background: #eef2ef !important;       /* sage-green card bg from image */
    color: inherit !important;
    text-decoration: none !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
}

/* Square image — occupies full width of card minus the inset padding */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #d8ddd6 !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    transition: transform 0.35s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: scale(1.04) !important;
}

/* Text area — padding to match image */
.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 16px 6px 0 !important;
}

/* Title — dark forest green, bold */
.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    display: block !important;
    margin: 0 0 10px !important;
    color: #2e4d36 !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

/* Description — medium gray */
.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    display: block !important;
    margin: 0 0 16px !important;
    color: #6b6d6b !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.78rem, 0.95vw, 0.9rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    flex: 1 !important;
}

/* CTA row — dark-green square button + Read More text */
.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    color: #2e4d36 !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.82rem, 1vw, 0.92rem) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

/* Rounded-square dark-green button with white arrow */
.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    background: #2e4d36 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

.reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot {
    transform: translateX(3px) !important;
    background: var(--primary-color) !important;
}

/* ============================================================
   PRODUCT SLIDER — FINAL LAYOUT (matches reference image)
   ============================================================

   HEAD ROW:
     Left  → big title + small eyebrow BELOW it
     Right → ‹ › arrows grouped + "View All" button

   CARDS:
     White bg · small inset padding · square image centered ·
     white text area below · no sage-green

   WIDTH = exact footer gutter (40px desktop / 20px mobile)
   ============================================================ */

/* ── Section: full-width background ─────────────────────────── */
.bhavya-product-slider-section,
.reference-product-slider-section,
body.home .reference-product-slider-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 56px !important;
    padding-bottom: 72px !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* ── Inner: same gutter as footer ───────────────────────────── */
.reference-product-slider-section .bhavya-product-slider-inner,
body.home .reference-product-slider-section .bhavya-product-slider-inner,
.bhavya-product-slider-section .bhavya-product-slider-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    position: static !important;
    height: auto !important;
    overflow: visible !important;
}

/* ── Head row: title-block LEFT · actions RIGHT ──────────────── */
.reference-product-slider-section .bhavya-product-slider-head,
body.home .reference-product-slider-section .bhavya-product-slider-head {
    display: flex !important;
    align-items: flex-end !important;     /* baseline-align title with buttons */
    justify-content: space-between !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
    margin: 0 0 32px !important;
    position: static !important;
}

/* Left column: title then eyebrow underneath */
.reference-product-slider-section .bhavya-product-slider-head-copy,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy {
    position: static !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
}

/* Suppress the old horizontal divider line */
.reference-product-slider-section .bhavya-product-slider-head-copy::after,
body.home .reference-product-slider-section .bhavya-product-slider-head-copy::after {
    display: none !important;
    content: none !important;
}

/* Big section title — left, large */
.reference-product-slider-section .bhavya-product-slider-title,
body.home .reference-product-slider-section .bhavya-product-slider-title {
    position: static !important;
    display: block !important;
    margin: 0 !important;
    order: 1 !important;
    color: #1a1a1a !important;
    font-family: var(--font-heading) !important;
    font-size: var(--section-title-size) !important;
    font-weight: var(--section-title-weight) !important;
    line-height: var(--section-title-lh) !important;
    letter-spacing: var(--section-title-ls) !important;
}

/* Small eyebrow — appears BELOW the title */
.reference-product-slider-section .bhavya-product-slider-label,
body.home .reference-product-slider-section .bhavya-product-slider-label {
    position: static !important;
    display: block !important;
    order: 2 !important;
    margin: 0 !important;
    color: #888888 !important;
    font-family: var(--font-heading) !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

/* Right column: ‹ › + View All button in one row */
.reference-product-slider-section .bhavya-product-slider-actions,
body.home .reference-product-slider-section .bhavya-product-slider-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
}

/* Arrow button group */
.reference-product-slider-section .bhavya-product-slider-nav,
body.home .reference-product-slider-section .bhavya-product-slider-nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* ‹ › circle arrow buttons */
.reference-product-slider-section .bhavya-product-slider-btn,
body.home .reference-product-slider-section .bhavya-product-slider-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border: 1.5px solid #d0d0d0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #333333 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    position: static !important;
    transform: none !important;
    transition: border-color 0.2s, background 0.2s, color 0.2s !important;
}

.reference-product-slider-section .bhavya-product-slider-btn:hover,
body.home .reference-product-slider-section .bhavya-product-slider-btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* ── Carousel ─────────────────────────────────────────────────── */
.reference-product-slider-section .bhavya-product-slider-carousel,
body.home .reference-product-slider-section .bhavya-product-slider-carousel {
    position: static !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper,
body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-wrapper {
    align-items: stretch !important;
}

.reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide,
body.home .reference-product-slider-section .bhavya-product-slider-carousel .swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* ── Card ─────────────────────────────────────────────────────── */
.reference-product-slider-section .bhavya-product-card,
body.home .reference-product-slider-section .bhavya-product-card {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
}

/* Card wrapper: WHITE bg, small inset padding so image floats inside */
.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 12px 12px 20px !important;
    border-radius: 20px !important;
    background: #f5f5f3 !important;     /* very light gray-white, matches image */
    color: inherit !important;
    text-decoration: none !important;
    overflow: hidden !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
}

/* ── Square image — CENTERED vertically & horizontally ────────── */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #e0e3dc !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;   /* vertically + horizontally centered */
    border-radius: 0 !important;
    transition: transform 0.35s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: scale(1.04) !important;
}

/* ── Text area ─────────────────────────────────────────────────── */
.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 14px 4px 0 !important;
}

/* Product title */
.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    display: block !important;
    margin: 0 0 8px !important;
    color: #1a1a1a !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

/* Description */
.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    display: block !important;
    margin: 0 0 14px !important;
    color: #6b6b6b !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(0.78rem, 0.9vw, 0.88rem) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    flex: 1 !important;
}

/* CTA row */
.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    color: #1a1a1a !important;
    font-family: var(--font-heading) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

/* Dark-green rounded-square arrow button */
.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
    background: #2e4d36 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, background 0.2s !important;
}

.reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot {
    transform: translateX(3px) !important;
    background: var(--primary-color) !important;
}

/* ── Responsive gutters ──────────────────────────────────────── */
@media (max-width: 767px) {
    .reference-product-slider-section,
    body.home .reference-product-slider-section {
        padding-top: 40px !important;
        padding-bottom: 56px !important;
    }
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }
    .reference-product-slider-section .bhavya-product-slider-head,
    body.home .reference-product-slider-section .bhavya-product-slider-head {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }
}

@media (max-width: 480px) {
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }
}

/* ============================================================
   FIX 1 — EYEBROW + DIVIDER LINE on same row
   Layout:  [Title]
            [EYEBROW TEXT] ─────────────────────── (line to right)
   ============================================================ */

/* Eyebrow label becomes a flex row so the line sits beside the text */
.reference-product-slider-section .bhavya-product-slider-label,
body.home .reference-product-slider-section .bhavya-product-slider-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;   /* stretch to fill the head-copy column */
    position: static !important;
    margin: 2px 0 0 !important;
    color: #888888 !important;
    font-family: var(--font-heading) !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

/* Divider line: extends from after the text to the right edge */
.reference-product-slider-section .bhavya-product-slider-label::after,
body.home .reference-product-slider-section .bhavya-product-slider-label::after {
    content: "" !important;
    display: block !important;
    flex: 1 1 auto !important;
    height: 1px !important;
    background: #d0d0d0 !important;
    min-width: 20px !important;
}

/* ============================================================
   FIX 2 — IMAGE PROPERLY INSIDE CARD & VERTICALLY CENTERED
   - Media wrapper: position:relative, in-flow, aspect-ratio 1:1
   - Image: fills wrapper with object-fit:cover, center aligned
   - Card: overflow:hidden clips anything that escapes
   ============================================================ */

/* Card must clip children */
.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    overflow: hidden !important;
    contain: layout !important;    /* prevents children escaping card bounds */
}

/* Media wrapper — in normal document flow, NOT position:absolute */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;  /* NOT absolute — stays in card flow */
    display: block !important;
    width: 100% !important;
    /* aspect-ratio creates the square height automatically */
    aspect-ratio: 1 / 1 !important;
    height: auto !important;        /* override any fixed height from older rules */
    min-height: 0 !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #e0e3dc !important;
    /* vertically center the media block in the card using self-alignment */
    align-self: stretch !important;
    margin-bottom: 0 !important;
}

/* Image fills the square wrapper — object-position centers it */
.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
    transform: none !important;
    transition: transform 0.35s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: scale(1.04) !important;
}

/* ============================================================
   WHY CHOOSE SECTION — MOBILE PADDING FIX (right side missing)
   Applies only on mobile (≤767px)
   ============================================================ */
@media (max-width: 767px) {

    /* Regular Why Choose section */
    .bhavya-why-choose-section {
        overflow: hidden !important;    /* prevent grid overflow bleeding out */
    }

    .bhavya-why-choose-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
        /* Reset minmax() columns that force content wider than screen */
        grid-template-columns: 1fr !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* V2 Why Choose section */
    .why-choose-v2-section {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .why-choose-v2-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .bhavya-why-choose-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    .why-choose-v2-section {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }
}

/* ============================================================
   PRODUCT CARD IMAGE — DEFINITIVE CONTAINMENT FIX
   Matches reference screenshot: image sits INSIDE card with
   a small white inset gap, rounded corners on the image,
   white text area below.

   Stack:
     .bhavya-product-card-link  (overflow:hidden, flex column)
       └─ .bhavya-product-card-media  (position:RELATIVE, aspect-ratio:1/1)
            └─ .bhavya-product-card-image  (position:absolute, inset:0)
       └─ .bhavya-product-card-copy  (flex:1, text)
   ============================================================ */

/* 1. Card container — clips everything to its border-radius */
.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    padding: 10px 10px 18px !important;
    border-radius: 20px !important;
    background: #f5f5f3 !important;
    overflow: hidden !important;          /* clips image to card border-radius */
    contain: none !important;             /* REMOVE contain:layout — it breaks image */
    box-shadow: 0 1px 8px rgba(0,0,0,0.07) !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.11) !important;
}

/* 2. Image wrapper — RELATIVE so image positions against IT, not the card */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;       /* MUST be relative — not absolute */
    display: block !important;
    width: 100% !important;
    height: auto !important;             /* auto height — driven by aspect-ratio */
    aspect-ratio: 1 / 1 !important;     /* perfect square image area */
    flex-shrink: 0 !important;
    border-radius: 12px !important;      /* rounded corners on image block */
    overflow: hidden !important;         /* clips image within rounded corners */
    background: #dde0da !important;
    margin: 0 !important;
}

/* 3. Image — fills the wrapper completely, centered */
.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;       /* positions against .bhavya-product-card-media */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    transition: transform 0.35s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: scale(1.04) !important;
}

/* 4. Text area — flexible, sits below image */
.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 14px 4px 0 !important;
    min-height: 0 !important;
}

/* ============================================================
   PRODUCT CARD — PIXEL-PERFECT MATCH (user reference code)
   Maps .product-card CSS exactly to theme class names.
   ============================================================ */

/* .product-card → .bhavya-product-card-link */
.reference-product-slider-section .bhavya-product-card-link,
body.home .reference-product-slider-section .bhavya-product-card-link {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    background: #f3f4f2 !important;
    border-radius: 22px !important;
    padding: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", var(--font-heading), sans-serif !important;
    text-decoration: none !important;
    color: inherit !important;
    overflow: hidden !important;
    contain: none !important;
    box-shadow: none !important;
    transition: transform 0.3s ease !important;
    position: relative !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover,
body.home .reference-product-slider-section .bhavya-product-card-link:hover {
    transform: translateY(-4px) !important;
    box-shadow: none !important;
}

/* .product-image → .bhavya-product-card-media */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;     /* matches 240px tall on ~320px wide card */
    border-radius: 18px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    background: #dde0da !important;
}

/* .product-image img → .bhavya-product-card-image */
.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 18px !important;
    transform: none !important;
    transition: none !important;
}

/* .product-content → .bhavya-product-card-copy */
.reference-product-slider-section .bhavya-product-card-copy,
body.home .reference-product-slider-section .bhavya-product-card-copy {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 20px 8px 10px !important;
    min-height: 0 !important;
}

/* .product-title → .bhavya-product-card-title */
.reference-product-slider-section .bhavya-product-card-title,
body.home .reference-product-slider-section .bhavya-product-card-title {
    display: block !important;
    font-size: clamp(1rem, 1.6vw, 1.4rem) !important;
    font-weight: 700 !important;
    color: #2e4d36 !important;
    margin: 0 0 12px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

/* .product-description → .bhavya-product-card-description */
.reference-product-slider-section .bhavya-product-card-description,
body.home .reference-product-slider-section .bhavya-product-card-description {
    display: block !important;
    font-size: clamp(0.8rem, 1vw, 1rem) !important;
    line-height: 1.6 !important;
    color: #6d6d6d !important;
    margin: 0 0 22px !important;
    flex: 1 !important;
    font-weight: 400 !important;
}

/* .product-btn → .bhavya-product-card-cta */
.reference-product-slider-section .bhavya-product-card-cta,
body.home .reference-product-slider-section .bhavya-product-card-cta {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    color: #2e4d36 !important;
    font-size: clamp(0.85rem, 1vw, 1rem) !important;
    margin: 0 !important;
    line-height: 1 !important;
}

/* .product-btn .arrow → .bhavya-product-card-cta-dot */
.reference-product-slider-section .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta-dot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    background: #2e4d36 !important;
    color: #fff !important;
    border-radius: 14px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
    line-height: 1 !important;
}

.reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot,
body.home .reference-product-slider-section .bhavya-product-card-cta:hover .bhavya-product-card-cta-dot {
    transform: translateX(4px) !important;
    background: #2e4d36 !important;
}


/* ============================================================
   PRODUCT CARD IMAGE — FINAL CENTERING FIX
   Ensures the image is always horizontally AND vertically
   centered inside the card, regardless of earlier rules.
   ============================================================ */
.reference-product-slider-section .bhavya-product-card-media,
body.home .reference-product-slider-section .bhavya-product-card-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #dde0da !important;
    align-self: stretch !important;
}

.reference-product-slider-section .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
    transform: none !important;
    transition: transform 0.35s ease !important;
}

.reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image,
body.home .reference-product-slider-section .bhavya-product-card-link:hover .bhavya-product-card-image {
    transform: scale(1.04) !important;
}


/* ============================================================
   PRODUCT SLIDER — FIX RIGHT-SIDE LAST CARD CLIPPING
   Allow the swiper to overflow visibly, clip at section level.
   ============================================================ */
.reference-product-slider-section,
body.home .reference-product-slider-section {
    overflow: hidden !important;   /* clips the visible swiper at section edge */
}

.reference-product-slider-section .bhavya-product-slider-carousel,
body.home .reference-product-slider-section .bhavya-product-slider-carousel {
    overflow: visible !important;  /* let last card show fully */
}

.reference-product-slider-section .bhavya-product-slider-inner,
body.home .reference-product-slider-section .bhavya-product-slider-inner {
    overflow: visible !important;
}


/* ============================================================
   WHY CHOOSE US — MOBILE RIGHT-SIDE PADDING FIX
   Ensures proper padding on both sides on mobile screens.
   ============================================================ */
@media (max-width: 767px) {
    /* Section wrapper: no horizontal padding, no overflow clipping */
    .bhavya-why-choose-section,
    .reference-why-section,
    body.home .reference-why-section,
    .why-choose-v2-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
        overflow-x: clip !important;   /* clip without affecting scroll */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Inner container: equal padding both sides */
    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner,
    .why-choose-v2-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        /* Reset any fixed pixel widths from desktop rules */
        grid-template-columns: 1fr !important;
        height: auto !important;
        min-height: 0 !important;
    }

    /* Image wrap: reset fixed pixel width */
    .reference-why-section .bhavya-why-choose-image-wrap,
    body.home .reference-why-section .bhavya-why-choose-image-wrap {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        position: static !important;
    }

    /* Image: reset fixed height percentage */
    .reference-why-section .bhavya-why-choose-image,
    body.home .reference-why-section .bhavya-why-choose-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* V2 grid: single column */
    .why-choose-v2-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 480px) {
    .bhavya-why-choose-inner,
    .reference-why-section .bhavya-why-choose-inner,
    body.home .reference-why-section .bhavya-why-choose-inner,
    .why-choose-v2-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ============================================================
   PRODUCT SLIDER — MOBILE CONTENT WIDTH MATCH FIX
   Forces .bhavya-product-slider-inner to use the exact same
   horizontal padding as .bhavya-footer on mobile, overriding
   any Elementor inline-style padding from the section_padding
   control.
   ============================================================ */
@media (max-width: 767px) {
    .reference-product-slider-section .bhavya-product-slider-inner,
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile) !important;   /* 20px — same as footer */
        padding-right: var(--site-gutter-mobile) !important;  /* 20px — same as footer */
    }
}

@media (max-width: 480px) {
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile-sm) !important;   /* 16px — same as footer */
        padding-right: var(--site-gutter-mobile-sm) !important;  /* 16px — same as footer */
    }
}

/* ============================================================
   PRODUCT SLIDER V2
   ============================================================ */

.reference-product-slider-section-v2 {
    background: #ffffff;
    height: auto !important;
    min-height: 0 !important;
    padding: 56px 0 72px !important;
    overflow: visible !important;
}

.bhavya-product-slider-v2-inner {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    height: auto !important;
    overflow: visible !important;
}

.bhavya-product-slider-v2-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
}

.bhavya-product-slider-v2-head-copy {
    flex: 1 1 auto;
    max-width: none;
}

.bhavya-product-slider-v2-title {
    margin: 0;
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: var(--section-title-lh);
    letter-spacing: var(--section-title-ls);
    color: #111;
}

.bhavya-product-slider-v2-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.bhavya-product-slider-v2-label {
    margin: 0;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10.105px;
    font-weight: 400;
    line-height: 10.105px;
    letter-spacing: 3.5368px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bhavya-product-slider-v2-eyebrow-line {
    flex: 1;
    height: 1px;
    background-color: #d5d5d5;
}

.bhavya-product-slider-v2-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 6px;
    flex-shrink: 0;
}

.bhavya-product-slider-v2-nav {
    display: flex;
    gap: 8px;
}

.bhavya-product-slider-v2-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    background: transparent;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bhavya-product-slider-v2-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.bhavya-product-slider-v2-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 30px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    letter-spacing: -0.42px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bhavya-product-slider-v2-view-all:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.bhavya-product-slider-v2-carousel {
    width: 100%;
    margin-top: 28px;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.bhavya-product-slider-v2-carousel .swiper-wrapper {
    align-items: stretch;
}

.bhavya-product-slider-v2-carousel .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.bhavya-product-card-v2 {
    width: 100%;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.bhavya-product-card-v2-link {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #f3f4f2;
    padding: 16px;
    border-radius: 22px;
    text-decoration: none;
    overflow: hidden;
    color: inherit;
    transition: transform 0.3s ease;
}

.bhavya-product-card-v2-link:hover {
    transform: translateY(-4px);
}

.bhavya-product-card-v2-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: transparent;
    flex-shrink: 0;
    border-radius: 18px;
}

.bhavya-product-card-v2-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.bhavya-product-card-v2-link:hover .bhavya-product-card-v2-image {
    transform: scale(1.05);
}

.bhavya-product-card-v2-copy {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bhavya-product-card-v2-title {
    color: #2e4d36;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 8px;
}

.bhavya-product-card-v2-description {
    color: #6d6d6d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 16px;
    flex-grow: 1;
}

.bhavya-product-card-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e4d36;
    font-weight: 600;
    font-size: 16px;
    margin-top: auto;
}

.bhavya-product-card-v2-cta-dot {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background-color: #2e4d36;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.bhavya-product-card-v2-link:hover .bhavya-product-card-v2-cta-dot {
    transform: translateX(4px);
}

/* --- Responsive Layout for V2 --- */

/* Desktop (1024px to 1919px): 4 cards */
@media (min-width: 1024px) and (max-width: 1919px) {
    .bhavya-product-slider-v2-carousel .swiper-slide {
        width: calc((100% - 60px) / 4); /* 20px gap * 3 */
    }
}

/* Large Desktop (1920px+): 5 cards */
@media (min-width: 1920px) {
    .bhavya-product-slider-v2-carousel .swiper-slide {
        width: calc((100% - 80px) / 5); /* 20px gap * 4 */
    }
}

/* Tablet (768px to 1023px): 3 cards */
@media (max-width: 1023px) {
    .bhavya-product-slider-v2-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .bhavya-product-slider-v2-carousel .swiper-slide {
        width: calc((100% - 40px) / 3); /* 20px gap * 2 */
    }
}

/* Mobile (max 767px): 1 card, exact footer padding */
@media (max-width: 767px) {
    .reference-product-slider-section-v2 {
        padding: 40px 0 !important;
    }

    .bhavya-product-slider-v2-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    .bhavya-product-slider-v2-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bhavya-product-slider-v2-carousel .swiper-slide {
        width: 100% !important; /* Force 1 card */
    }
    
    .bhavya-product-card-v2-title {
        font-size: 24px;
        font-weight: 500;
    }

    .bhavya-product-card-v2-description {
        font-size: 16px;
        color: #4a4a4a;
        line-height: 1.4;
    }
}

/* Small Mobile (max 480px): 1 card, exact footer padding sm */
@media (max-width: 480px) {
    .bhavya-product-slider-v2-inner {
        padding-left: var(--site-gutter-mobile-sm) !important;
        padding-right: var(--site-gutter-mobile-sm) !important;
    }
}

/* -------------- PRODUCTS PAGE -------------- */
.bhavya-products-page-section {
    padding-top: 0;
    padding-bottom: clamp(60px, 8vw, 100px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.bhavya-products-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bhavya-products-filters-wrap {
    width: 100%;
    position: sticky;
    top: 72px; /* Matches exact header height of 72px */
    z-index: 100;
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.bhavya-products-filters-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .bhavya-products-filters-inner {
        padding: 0 var(--site-gutter-mobile);
    }
}

.bhavya-products-filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.bhavya-products-filters-left {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bhavya-filter-btn {
    background: #f0f2f5;
    border: none;
    color: #4a4a4a;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
}

.bhavya-filter-btn:hover,
.bhavya-filter-btn.active {
    background: var(--primary-color, #E3895F);
    color: #fff;
}

.bhavya-products-filters-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bhavya-sort-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.bhavya-sort-select-wrap {
    position: relative;
}

.bhavya-sort-select {
    appearance: none;
    background: #f0f2f5;
    border: none;
    padding: 10px 40px 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
}

.bhavya-sort-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23212529" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.bhavya-products-main {
    width: 100%;
}

.bhavya-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.filter-item {
    transition: opacity 0.3s ease;
}

@media (max-width: 1919px) {
    .bhavya-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1023px) {
    .bhavya-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .bhavya-products-filters-wrap {
        top: 80px; /* Header might be shorter on mobile */
    }
    .bhavya-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bhavya-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Scroll to Top)
   ========================================================================== */
.bhavya-floating-whatsapp,
.bhavya-scroll-top {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.bhavya-floating-whatsapp {
    right: 30px;
    background-color: #25d366; /* WhatsApp Green */
}
.bhavya-floating-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    color: #fff;
}

.bhavya-scroll-top {
    left: 30px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.bhavya-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bhavya-scroll-top:hover {
    background-color: #311414;
    transform: translateY(-3px);
    color: #fff;
}

@media (max-width: 768px) {
    .bhavya-floating-whatsapp,
    .bhavya-scroll-top {
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    .bhavya-floating-whatsapp { right: 20px; }
    .bhavya-scroll-top { left: 20px; }
}

/* ================================================================
   DEFINITIVE FINAL OVERRIDES — loaded last, highest specificity
   These fix the hamburger bg/border/shadow and the mobile slider
   width to exactly match the footer gutter.
   ================================================================ */

/* 1. Strip ALL decoration from the hamburger button */
@media (max-width: 1024px) {
    .menu-toggle,
    .menu-toggle:hover,
    .menu-toggle:focus,
    .menu-toggle:active {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        transform: none !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
    }
}

/* 2. Mobile product slider inner — match footer gutter exactly */
@media (max-width: 767px) {
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner,
    .bhavya-product-slider-section .bhavya-product-slider-inner,
    body.home .bhavya-product-slider-section .bhavya-product-slider-inner,
    body.home .bhavya-product-slider-inner,
    .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    .bhavya-product-slider-v2-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    .bhavya-footer {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }
}

@media (max-width: 480px) {
    .reference-product-slider-section .bhavya-product-slider-inner,
    body.home .reference-product-slider-section .bhavya-product-slider-inner,
    .bhavya-product-slider-section .bhavya-product-slider-inner,
    body.home .bhavya-product-slider-section .bhavya-product-slider-inner,
    body.home .bhavya-product-slider-inner,
    .bhavya-product-slider-inner,
    .bhavya-product-slider-v2-inner {
        padding-left: var(--site-gutter-mobile-sm) !important;
        padding-right: var(--site-gutter-mobile-sm) !important;
    }

    .bhavya-footer {
        padding-left: var(--site-gutter-mobile-sm) !important;
        padding-right: var(--site-gutter-mobile-sm) !important;
    }
}

/* ================================================================
   MOBILE PRODUCT SLIDER FIXES
   Fix inner padding (beats Elementor inline styles via html body)
   and fix section header layout to match the category slider v2.
   MOBILE ONLY — no changes on desktop.
   ================================================================ */
@media (max-width: 767px) {

    /* --- Width fix: override Elementor inline padding on .bhavya-product-slider-inner --- */
    html body .elementor .reference-product-slider-section .bhavya-product-slider-inner,
    html body .elementor .bhavya-product-slider-section .bhavya-product-slider-inner,
    html body .reference-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    /* --- Header: row layout matching category slider v2 --- */
    /* Stack: title row on top, then nav+view-all row below */
    html body .reference-product-slider-section .bhavya-product-slider-head,
    html body .bhavya-product-slider-section .bhavya-product-slider-head {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
        margin-bottom: 20px !important;
    }

    html body .reference-product-slider-section .bhavya-product-slider-head-copy,
    html body .bhavya-product-slider-section .bhavya-product-slider-head-copy {
        flex: 1 1 auto !important;
    }

    html body .reference-product-slider-section .bhavya-product-slider-title,
    html body .bhavya-product-slider-section .bhavya-product-slider-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        font-weight: 600 !important;
        line-height: 1.15 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 4px !important;
    }

    html body .reference-product-slider-section .bhavya-product-slider-description,
    html body .bhavya-product-slider-section .bhavya-product-slider-description {
        display: none !important; /* Hide long description on mobile like v2 does */
    }

    /* Actions (nav + view-all): compact, no wrap, right-aligned */
    html body .reference-product-slider-section .bhavya-product-slider-actions,
    html body .bhavya-product-slider-section .bhavya-product-slider-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    /* Nav buttons: match v2 style exactly */
    html body .reference-product-slider-section .bhavya-product-slider-nav,
    html body .bhavya-product-slider-section .bhavya-product-slider-nav {
        display: flex !important;
        gap: 6px !important;
    }

    html body .reference-product-slider-section .bhavya-product-slider-btn,
    html body .bhavya-product-slider-section .bhavya-product-slider-btn {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        border: 1px solid #d5d5d5 !important;
        background: transparent !important;
        color: #666666 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 22px !important;
        cursor: pointer !important;
    }

    html body .reference-product-slider-section .bhavya-product-slider-btn:hover,
    html body .bhavya-product-slider-section .bhavya-product-slider-btn:hover {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
    }

    /* View all button: match v2 pill style exactly */
    html body .reference-product-slider-section .bhavya-product-slider-view-all,
    html body .bhavya-product-slider-section .bhavya-product-slider-view-all {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 18px !important;
        background-color: var(--primary-color) !important;
        color: #ffffff !important;
        border-radius: 30px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    html body .reference-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile-sm) !important;
        padding-right: var(--site-gutter-mobile-sm) !important;
    }
}

/* ================================================================
   WHY CHOOSE V2 — Single column on mobile only
   ================================================================ */
@media (max-width: 767px) {
    .why-choose-v2-cards {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .why-choose-v2-card {
        align-items: flex-start;
    }
}

/* ================================================================
   FEATURED PRODUCTS SLIDER — Mobile Layout
   Title + View All on one row, nav below carousel.
   Desktop: no change.
   ================================================================ */

/* Desktop: hide mobile-only elements */
.bhavya-product-slider-view-all--mobile { display: none !important; }
.bhavya-product-slider-nav--mobile      { display: none !important; }

@media (max-width: 767px) {

    /* Width fix — beat Elementor inline styles */
    html body .reference-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile) !important;
        padding-right: var(--site-gutter-mobile) !important;
    }

    /* Head: title on left, View All pill on right — single row */
    html body .reference-product-slider-section .bhavya-product-slider-head,
    html body .bhavya-product-slider-section .bhavya-product-slider-head {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        margin-bottom: 16px !important;
    }

    /* Head copy fills the left */
    html body .reference-product-slider-section .bhavya-product-slider-head-copy,
    html body .bhavya-product-slider-section .bhavya-product-slider-head-copy {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    /* Title: compact on mobile */
    html body .reference-product-slider-section .bhavya-product-slider-title,
    html body .bhavya-product-slider-section .bhavya-product-slider-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.02em !important;
        margin: 0 !important;
    }

    /* Hide eyebrow label & description on mobile */
    html body .reference-product-slider-section .bhavya-product-slider-label,
    html body .reference-product-slider-section .bhavya-product-slider-description,
    html body .bhavya-product-slider-section .bhavya-product-slider-label,
    html body .bhavya-product-slider-section .bhavya-product-slider-description {
        display: none !important;
    }

    /* Hide the desktop actions block (nav + view-all) */
    html body .reference-product-slider-section .bhavya-product-slider-actions--desktop,
    html body .bhavya-product-slider-section .bhavya-product-slider-actions--desktop {
        display: none !important;
    }

    /* Show mobile View All pill in the head row */
    .bhavya-product-slider-view-all--mobile {
        display: inline-flex !important;
        flex-shrink: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 18px !important;
        background-color: var(--primary-color) !important;
        color: #ffffff !important;
        border-radius: 30px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }

    /* Show nav below the carousel */
    .bhavya-product-slider-nav--mobile {
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        margin-top: 16px !important;
    }

    .bhavya-product-slider-nav--mobile .bhavya-product-slider-btn {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        border: 1px solid #d5d5d5 !important;
        background: transparent !important;
        color: #666666 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 22px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }

    .bhavya-product-slider-nav--mobile .bhavya-product-slider-btn:hover {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
    }
}

@media (max-width: 480px) {
    html body .reference-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-section .bhavya-product-slider-inner,
    html body .bhavya-product-slider-inner {
        padding-left: var(--site-gutter-mobile-sm) !important;
        padding-right: var(--site-gutter-mobile-sm) !important;
    }
}
