@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --navbar-font: 'Outfit', sans-serif;
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    z-index: 9999;
    transition: width 0.1s ease-out;
    background: linear-gradient(90deg,
            #4bc25b 0%,
            #40be3b 20%,
            #6cc778 40%,
            #27b13e 60%,
            #07d800bd 80%,
            #3dc04e 100%);

    background-size: 100% 100%, 200% 100%;
    animation: lightShimmer 3s linear infinite;
    box-shadow:
        0 2px 12px rgba(72, 187, 120, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
}

@keyframes lightShimmer {
    0% {
        background-position: 0% 0, 200% 0;
    }

    100% {
        background-position: 0% 0, -200% 0;
    }
}

/* Optional: Add a pulsing effect at the end */
#progress-bar.complete {
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}



a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Global scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: var(--color-white);
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: var(--navbar-primary-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navbar-primary-green-hover);
}

/* 404 Page Styles */
.section-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.container-404 {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.error-code {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    line-height: 1;
    color: var(--navbar-primary-green);
    margin: 0;
    text-shadow: 10px 10px 0px var(--color-bg-mint-light);
    animation: float 4s ease-in-out infinite;
    position: relative;
}

.error-code::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px var(--navbar-primary-green);
    opacity: 0.3;
    animation: glitch 3s infinite alternate;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-top: -20px;
    margin-bottom: 20px;
}

.error-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--navbar-primary-green);
    color: var(--color-white);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px var(--shadow-primary-green-20);
}

.home-btn:hover {
    background-color: var(--navbar-primary-green-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-primary-green-20);
    color: var(--color-white);
}

.home-btn svg {
    transition: transform 0.3s ease;
}

.home-btn:hover svg {
    transform: translateX(-5px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-5px, 5px);
    }

    40% {
        transform: translate(-5px, -5px);
    }

    60% {
        transform: translate(5px, 5px);
    }

    80% {
        transform: translate(5px, -5px);
    }

    100% {
        transform: translate(0);
    }
}

/* Background elements */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--color-bg-mint-light);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--color-bg-mint-light);
    bottom: -100px;
    left: -100px;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 1.75rem;
    }

    .error-text {
        font-size: 1rem;
    }
}

/* Thank You Page Styles */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.thankyou-container {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--color-bg-mint-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--navbar-primary-green);
    position: relative;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--navbar-primary-green);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite;
}

.thankyou-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.thankyou-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.thankyou-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Confetti Styles */
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd300;
    top: -20px;
    opacity: 0;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .thankyou-title {
        font-size: 2.25rem;
    }

    .thankyou-text {
        font-size: 1rem;
    }
}

/* Call Button Styles for Contact Modal */
.btn-call {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--color-gray-800);
    border: 1px solid var(--color-border-gray);
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    width: 100%;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-call i {
    background-color: var(--color-bg-mint-light);
    color: var(--navbar-primary-green);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-call span {
    flex-grow: 1;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-call::after {
    content: '›';
    font-size: 1.5rem;
    color: var(--color-gray-400);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: #ffffff;
    border-color: var(--navbar-primary-green);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(6, 171, 92, 0.12);
    color: var(--navbar-primary-green);
}

.btn-call:hover i {
    background-color: var(--navbar-primary-green);
    color: #ffffff;
    transform: rotate(15deg);
}

.btn-call:hover::after {
    opacity: 1;
    transform: translateX(5px);
    color: var(--navbar-primary-green);
}

.modal-divider {
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-gray-500);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--color-bg-mint-light);
}

.modal-divider:not(:empty)::before {
    margin-right: 1.5em;
}


.modal-divider:not(:empty)::after {
    margin-left: 1.5em;
}
/*---------------------------------------------------------------------------------------------------------------------------*/
/*Buttons effect*/
@keyframes buttonShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}


@keyframes flowingBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--navbar-primary-green);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(6, 171, 92, 0.3);
    }
}


.enhanced-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.enhanced-btn-fill,
.navbar-btn-primary {
    background: linear-gradient(to right, var(--navbar-primary-green-hover) 50%, var(--navbar-primary-green) 50%) !important;
    background-size: 200% 100% !important;
    background-position: right bottom !important;
    color: var(--color-white) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.enhanced-btn-fill:hover,
.navbar-btn-primary:hover {
    background-position: left bottom !important;
}


.enhanced-btn-outline {
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(90deg,
            var(--navbar-primary-green),
            #08cf6f,
            #058749,
            var(--navbar-primary-green)) border-box;
    background-size: 100% 100%, 300% 300%;
    border: 2px solid transparent;
    animation: flowingBorder 3s ease infinite;
}

.enhanced-btn-outline:hover {
    animation: flowingBorder 1.5s ease infinite;
    box-shadow: 0 0 20px rgba(6, 171, 92, 0.4);
}


.enhanced-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.enhanced-btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}


.enhanced-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-btn:hover {
    transform: translateY(-3px) scale(1.02);
}


.enhanced-btn-fill:hover,
.navbar-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 24px rgba(6, 171, 92, 0.4) !important;
    animation: none !important;
    filter: brightness(1.05);
   
}


.enhanced-btn>* {
    position: relative;
    z-index: 3;
}
/*Buttons effect end*/

/*FAQ*/
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    background: transparent;
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.faq-button {
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 500;
    color: #1f2937;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}


.faq-button:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.faq-button:hover {
    background: transparent;
    color: var(--navbar-primary-green);
}

.faq-button::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #6b7280;
    background: none;
    width: auto;
    height: auto;
    transform: none;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: transparent;
    color: var(--navbar-primary-green) !important;
    box-shadow: none;
}

.faq-button:not(.collapsed)::after {
    content: '−';
    color: var(--navbar-primary-green);
    transform: none;
    background-image: none !important;
}

.faq-button:hover::after {
    color: var(--navbar-primary-green);
}

.faq-body {
    padding: 0 0 24px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #141414;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
/*FAQ end*/
/*Growth solutions*/
.growth-solution {
    padding: 100px 0;
    background-color: #fff;
}

.growth-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.growth-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.growth-card {
    background-color: #f0faf6;
    /* Light green tint */
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--color-bg-green-header);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Gradient overlay on hover */
.growth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(6, 171, 92, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.growth-card:hover {
    transform: translateY(-12px) scale(1.02);
    background-color: #fff;
    border-color: var(--color-emerald-500);
    box-shadow: 0 20px 40px -5px var(--shadow-primary-25),
        0 0 0 1px var(--bg-emerald-05);
}

.growth-card:hover::before {
    opacity: 1;
}

.growth-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--color-bg-mint-light);
    border-radius: 50%;
    box-shadow: 0 4px 10px var(--shadow-black-05);
}

.growth-card:hover .growth-icon-box {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 25px -5px var(--shadow-primary-30);
    background: var(--icon-purple-bg);
}

.growth-icon-box img {
    width: 80px;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.growth-icon-box svg {
    width: 80px;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.growth-card-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.growth-card:hover .growth-card-text {
    color: var(--color-emerald-600);
}

/*Growth Solutions End*/
 
/*Section three*/
.section-three-hero {
    padding: 100px 0;
    background-color: var(--color-white);
    overflow: hidden;
}
.section-three-hero-category{
    padding: 100px 0;
    background-color: var(--color-white);
    overflow: hidden;
}
.section-three-main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 650;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-three-main-subtitle {
    font-size: clamp(15px, 2.5vw, 22px);
    color: var(--color-black);
    margin-bottom: 80px;
}

.section-three-row {
    margin-bottom: 100px;
}

.section-three-row:last-child {
    margin-bottom: 0;
}

.section-three-text h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-three-text p {
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-gray-800);
    margin: 0;
}

.section-three-image img {
    width: 100%;
    max-width: 610px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.section-three-row:hover .section-three-image img {
    transform: scale(1.02);
}
/*Section three end*/
/*Scroll animation*/
/* Scroll Entrance Animations */

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Optional: Staggered delays for child elements if needed */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}
/*Scroll animation end*/
/*Percentage blocks*/
.section-percentage {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.section-percentage-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-percentage-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 650;
    color: #000;
    margin-bottom: 15px;
}

.section-percentage-header p {
    font-size: 22px;
    /* max-width: 800px; */
    margin: 0 auto;
}

.section-percentage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.box-per {
    flex: 1 1 calc(25% - 25px);
    min-width: 250px;
    background: #FAFAFA;
    /* Light neutral base for fill visibility */
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Fill Animation Layer */
.box-per::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--fill-progress, 0%);
    background: var(--color-bg-green-header);
    /* Theme Light Green */
    z-index: -1;
    transition: height 0.1s linear;
    pointer-events: none;
}

/* Clear wave artifacts */
.box-per::after {
    display: none;
}

.box-per:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.box-per h5 {
    font-size: 36px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.box-per p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Intersection Observer animation base state */
.counter-percentage {
    display: inline-block;
    min-width: 50px;
}
/*Percentage end*/
/*Testinomies*/
/* Testimonies Marquee Styling */
.testimonies-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.testimonies-section-category{
    padding: 40px 0 80px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.testimonies-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}



.testimonies-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.testimonies-title {
    font-size: clamp(29px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
    display: flex;
    gap: 10px;
}

.accent-icon {
    color: var(--navbar-primary-green);
    font-weight: 300;
}

.testimonies-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

.testimonies-marquee-container::before,
.testimonies-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonies-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #fff 10%, transparent 30%);
}

.testimonies-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #fff 10%, transparent 30%);
}

.testimonies-marquee-row {
    display: flex;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.testimonies-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

/* Animations - Right to Left */
@keyframes marqueeScrollLTR {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Animations - Left to Right */
@keyframes marqueeScrollRTL {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.row-rtl .testimonies-marquee-track {
    animation: marqueeScrollLTR 40s linear infinite;
}

.row-ltr .testimonies-marquee-track {
    animation: marqueeScrollRTL 40s linear infinite;
}

.testimonies-marquee-row:hover .testimonies-marquee-track {
    animation-play-state: paused;
}

.testimony-card {
    width: 380px;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: normal;
    word-wrap: break-word;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05),
                0 1px 2px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimony-card:hover {
    border-color: var(--navbar-primary-green);
    background: #f0faf6;
    border: 1px solid #d4f1e3;
    transform: translateY(-5px);
}

.testimony-user-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 5px;
}

.testimony-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg-green-header);
    flex-shrink: 0;
}

.testimony-card:hover .testimony-avatar {
    border-color: var(--navbar-primary-green);
}

.testimony-content {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.testimony-user-handle {
    color: var(--navbar-primary-green);
    font-weight: 700;
    font-size: 13px;
    margin: 0;
    align-self: flex-end;
}


.testimonies-section::before,
.testimonies-section::after {
    display: none;
}
.testimonies-section-category::before,
.testimonies-section-category::after {
    display: none;
}
/*testimonies-section end*/
/*Client review*/
.clients-review-section {
    padding-top: 0px;
    padding-bottom: 40px;
    background-color: #fff;
    overflow: hidden;
}

.clients-review-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.review-carousel-container {
    width: 100%;
    position: relative;
}

.review-track {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.review-item {
    width: 480px;
    /* background: #f0faf6; */
    /* Soft theme mint */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #d4f1e3;
    flex-shrink: 0;
}

.review-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    /* background: #d4f1e3; */
}

.review-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.review-user-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.review-user-details h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.review-user-details p {
    margin: 0;
    font-size: 13px;
    color: #666;
}
/*Client review end*/
/*Advanced Features*/
.adv-features-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.adv-feature-block {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.adv-feature-h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 12px;
}

.adv-feature-p {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}

.adv-feature-inner-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.adv-feature-boxes.adv-feature-box-one,
.adv-feature-boxes.adv-feature-box-four {
    grid-column: span 5;
}

.adv-feature-boxes.adv-feature-box-two,
.adv-feature-boxes.adv-feature-box-three {
    grid-column: span 7;
}

.adv-feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef0f2;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.adv-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.adv-feature-text {
    padding: 40px 40px 20px 40px;
}

.adv-feature-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.adv-feature-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.adv-feature-img-container1 {
    margin: 20px 0 0 0;
    padding: 0 20px 0px 0px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.adv-feature-img-container1 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-top-right-radius: 8px;
    border: none;
}

.adv-feature-img-container2 {
    margin: 20px 0 0 0;
    padding: 0 0px 0px 20px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.adv-feature-img-container2 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-top-left-radius: 8px;
}

.adv-feature-img-container3 {
    margin: 20px 0 0 0;
    padding: 0 20px 20px 20px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.adv-feature-img-container3 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}
.adv-feature-img-container4 {
    margin: 20px 0 0 0;
    padding: 0 0 0 20px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.adv-feature-img-container4 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-top-left-radius: 8px;
}


.bg-lavender,
.bg-peach,
.bg-lightblue,
.bg-mint {
    background-color: transparent !important;
}


.adv-feature-box-one .adv-feature-img-container1,
.adv-feature-box-two .adv-feature-img-container2,
.adv-feature-box-four .adv-feature-img-container4 {
    margin-top: auto;
}
/*Advanced features end*/
/*Check points*/
.check-point-sections {
    padding: 30px 0;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    width: 100%;
    
}
.check-points-hero{
    margin-top: 25px;
    margin-bottom: -50px;
}
.check-point-wrapper {
    display: flex;
    white-space: nowrap;
    position: relative;
    width: 100%;
}


.check-point-sections::before,
.check-point-sections::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.check-point-sections::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.check-point-sections::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.check-point-track {
    display: flex;
    align-items: center;
    gap: 60px;
  
    animation: marquee-scroll 40s linear infinite;
   
    padding: 0 30px;
    width: max-content;
}
.check-point-track1 {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee-scroll 40s linear infinite;
    padding: 0 30px;
    width: max-content;
}
.check-point-item {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.check-point-item i {
    color: var(--navbar-primary-green);
    font-size: 24px;
}

.check-point-sections:hover .check-point-track {
    animation-play-state: paused;
}
.check-point-sections:hover .check-point-track1 {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/*Check Points end*/
/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 16px min(30px, calc(12px + env(safe-area-inset-bottom)));
    /* Safe area support */
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    display: block;
}

@media (min-width: 992px) {
    .mobile-bottom-bar {
        display: none !important;
    }
}

.mobile-bottom-bar-inner {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff !important;
    text-decoration: none;
    border: none;
    background-size: 300% 300%;
    animation: ingredientFlow 4s linear infinite;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mobile-bar-btn i {
    font-size: 18px;
}

.mobile-bar-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E, #075E54, #2ef137, #128C7E, #25D366);
    background-size: 300% 300%;
}

.book-demo-btn {
    background: linear-gradient(45deg, #06AB5C, #05914E, #047841, #08e47a, #05914E, #06AB5C);
    background-size: 300% 300%;
}

@keyframes ingredientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@media (max-width: 991px) {
    body {
        padding-bottom: 90px !important;
    }

    /* Ensure Tawk or other widgets don't overlap too much */
    #tawk-chat-widget {
        bottom: 100px !important;
    }
}