/* Global Styles */
:root {
    --primary-color: #0D9263;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Header Styles */
.header {
    padding: 1.5rem 0;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

    .header.header-solid {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(6px);
    }

.navbar {
    padding: 0 5rem;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.7rem 4rem 2rem 4rem;
    border-radius: 0 0 24px 24px;
    /*clip-path: url("#clip");*/
}

.inverted-radius {
    --r: 20px; /* the radius */
    --s: 30px; /* size of inner curve */
    --x: 85px; /* horizontal offset (no percentage) */
    --y: 10px; /* vertical offset (no percentage) */

    width: 250px;
    aspect-ratio: 1;
    background: #3FB8AF;
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
    --_g: conic-gradient(at calc(100% - var(--r)) var(--r),#0000 25%,#000 0);
    --_ga: conic-gradient(at calc(100% - var(--r)) var(--r),#0000 0%,#000 0);
    --_d: (var(--s) + var(--r));
    mask: calc(100% - var(--_d) - var(--x)) 0 var(--_m), 100% calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 100% 0, #0000 99%,#000 calc(100% + 1px)) calc(-1*var(--r) - var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(-1*var(--_d) - var(--x)) 0, var(--_ga) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
}

.inverted-radius-2 {
    --r: 20px; /* the radius */
    --s: 30px; /* size of inner curve */
    --x: 85px; /* horizontal offset (no percentage) */
    --y: 10px; /* vertical offset (no percentage) */

    width: 250px;
    aspect-ratio: 1;
    background: #3FB8AF;
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
    --_g: conic-gradient(at var(--r) var(--r),#000 75%,#0000 0);
    --_ga: conic-gradient(at var(--r) var(--r),#000 100%,#0000 0);
    --_d: (var(--s) + var(--r));
    mask: calc(var(--_d) + var(--x)) 0 var(--_m), 0 calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 0 0,#0000 99%,#000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(var(--_d) + var(--x)) 0, var(--_ga) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
}


.grid-item .category-info {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* keeps hover behavior clean */
}

.grid-item:hover .category-info {
    opacity: 1;
    transform: translateY(0);
}

.navbar-brand .logo {
    transition: margin 0.35s ease-out;
}

/* Optional: smooth hinge on/off */
.image-container.inverted-radius,
.image-container.inverted-radius-2 {
    /*transition: mask 0.35s ease-out, -webkit-mask 0.35s ease-out, border-radius 0.35s ease-out;*/
}

/* �Disabled� hinge state */
.image-container.hinge-off.inverted-radius,
.image-container.hinge-off.inverted-radius-2 {
    mask: none;
    -webkit-mask: none;
    border-radius: 0; /* or whatever flat shape you want when scrolled */
}

.logo {
    height: 40px;
}


.left-menu, .right-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(56% - 280px);
}

.nav-link {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    opacity: 0.85;
    letter-spacing: 0.2px;
    position: relative;
    text-decoration: none;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link.active {
        text-decoration: underline;
    }

    .nav-link:hover {
        color: var(--primary-color);
        opacity: 1;
    }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

section:not(.footer-hero-wrap) {
    margin-bottom: 150px;
}

/* Equipment Grid Styles */
.equipment-grid {
    margin-top: 100px;
    position: relative;
    background: #1a1a1a;
}

    .equipment-grid .demo-button-container {
        margin-top: 32px;
    }

    .equipment-grid .grid-container {
        display: flex;
        height: 640px;
        gap: 0;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 5rem;
        position: relative;
    }

    /* Mobile Carousel - Hidden on Desktop */
    .equipment-grid .mobile-carousel {
        display: none;
    }

    /* Desktop Grid - Always visible on desktop */
    .equipment-grid .desktop-grid {
        display: flex;
    }

        .equipment-grid .grid-container .gradient-1 {
            position: absolute;
            width: 339.659px;
            height: 279.098px;
            transform: rotate(27.977deg);
            flex-shrink: 0;
            z-index: 2;
            border-radius: 170.969px;
            background: linear-gradient(117deg, rgba(205, 198, 81, 0.19) 2.72%, rgba(111, 173, 90, 0.22) 50.64%, rgba(13, 146, 99, 0.21) 96.75%);
            filter: blur(61.54999923706055px);
        }

.gradient-1-bottom-left {
    bottom: -50px;
    left: -20px;
}


.gradient-1-top-right {
    top: -125px;
    right: -50px;
    bottom: auto; /* override original */
    left: auto; /* override original */
    transform: rotate(-20deg); /* optional: give different angle */
    z-index: 0; /* keep behind images */
}

.equipment-grid .grid-item {
    flex: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 0;
    will-change: flex;
    overflow: hidden;
}


.equipment-grid .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.equipment-grid .grid-item:first-child {
    border-radius: 16px 0 0 16px;
}

.equipment-grid .grid-item:nth-child(5) {
    border-radius: 0 16px 16px 0;
}

.equipment-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.equipment-grid .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.30) 100%);
    pointer-events: none;
    opacity: 0.9;
}

.equipment-grid .grid-item:hover {
    flex: 1.1;
}

    .equipment-grid .grid-item:hover img {
        transform: none;
    }

.equipment-grid .category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    padding-bottom: 5rem;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%); */
    color: white;
    opacity: 1;
}

    .equipment-grid .category-info h3 {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.01em;
        text-align: center;
    }

/* Demo Button */
.demo-button-container {
    display: flex;
    justify-content: center;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    background: white;
    color: black;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    justify-content: space-between;
    box-shadow: none;
    position: relative;
    border: 2px solid black;
    outline: 2px solid white;
    outline-offset: 2px;
}


    .demo-button:hover {
        background: #0D9263;
        color: white;
        transform: translateY(-1px);
    }

    .demo-button svg {
        transition: transform 0.3s ease;
        width: 36px;
        height: 36px;
        background: var(--primary-color);
        padding: 6px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(13, 146, 99, 0.1);
        color: white;
    }

    .demo-button:hover svg {
        background: white;
        color: black; /* updates stroke color */
    }


.reverse-button-container {
    display: flex;
    justify-content: center;
}

.reverse-button {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    background: #0D9263;
    color: white !important;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    justify-content: space-between;
    box-shadow: none;
    position: relative;
    border: 2px solid white;
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


    .reverse-button:hover {
        background: black;
        color: white;
        transform: translateY(-1px);
        outline: 2px solid black;
    }

    .reverse-button svg {
        transition: transform 0.3s ease;
        width: 36px;
        height: 36px;
        background: white;
        padding: 6px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(13, 146, 99, 0.1);
        color: black;
    }

    .reverse-button:hover svg {
        /*background: var(--primary-color);*/
        /*color: white;*/ /* updates stroke color */
    }




/* .demo-button:hover svg {
        background: white;
        color: black;
        transition: stroke 0.3s ease;
    }*/

/* Trusted Section */
.trusted-section {
    text-align: center;
}

    .trusted-section h2 {
        color: var(--primary-color);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 3rem;
        letter-spacing: -0.25px;
    }

    .trusted-section .logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 4rem;
    }

    .trusted-section .partner-logo {
        width: 120px;
        height: auto;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }

    .trusted-section .partner-logo:hover {
        opacity: 0.7;
    }

    /* Mobile responsive for trusted section */
    @media (max-width: 768px) {
        .trusted-section h2 {
            font-size: 32px;
            margin-bottom: 2rem;
        }

        .trusted-section .logo-container {
            padding: 0 1.5rem;
        }

        .trusted-section .partner-logo {
            width: 100px;
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .trusted-section h2 {
            font-size: 28px;
            margin-bottom: 1.5rem;
        }

        .trusted-section .logo-container {
            padding: 0 1rem;
        }

        .trusted-section .partner-logo {
            width: 90px;
        }
    }

/* Grid Navigation */
.equipment-grid .grid-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    gap: 6px;
    z-index: 10;
}

.equipment-grid .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .equipment-grid .dot.active {
        background-color: #fff;
        transform: scale(1);
        opacity: 1;
    }

/* About Us Section */
.about-section {
    background: #1A1A1A;
    position: relative;
    color: #fff;
}

    .about-section .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-section .about-content {
        position: relative;
    }

        .about-section .about-content .gradient-2 {
            position: absolute;
            width: 339.659px;
            height: 279.098px;
            transform: rotate(11.758deg);
            flex-shrink: 0;
            border-radius: 170.969px;
            background: linear-gradient(117deg, rgba(205, 198, 81, 0.19) 2.72%, rgba(111, 173, 90, 0.22) 50.64%, rgba(13, 146, 99, 0.21) 96.75%);
            filter: blur(61.54999923706055px);
            top: -30px;
            left: -30px;
        }

    .about-section .section-subtitle {
        display: inline-block;
        color: white;
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 1.6px;
        margin-bottom: 8px;
    }

    .about-section .section-title {
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0 0 24px 0;
        text-transform: capitalize;
    }

        .about-section .section-title span {
            color: var(--primary-color);
        }

    .about-section .about-text {
        margin-bottom: 32px;
    padding: 5px;
        }

        .about-section .about-text p {
            color: #FFF;
            font-size: 18px;
            font-weight: 300;
            line-height: 23px;
            margin: 0 0 24px 0;

        }

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



    .about-section .video-container {
        position: relative;
        overflow: hidden;
        aspect-ratio: 9/9;
        border-radius: 8px;
        background: #D9D9D9;
    }

    .about-section .video-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .about-section .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* Features Section */
.features-section {
    color: #fff;
}

    .features-section .demo-button-container {
        margin: 32px 0;
    }

    .features-section .features-header {
        max-width: 900px;
        margin: 0 auto 60px auto;
        position: relative;
    }

        .features-section .features-header .gradient-4 {
            position: absolute;
            width: 229.431px;
            height: 188.523px;
            transform: rotate(12.856deg);
            flex-shrink: 0;
            border-radius: 107.547px;
            background: linear-gradient(117deg, rgba(205, 198, 81, 0.19) 2.72%, rgba(111, 173, 90, 0.22) 50.64%, rgba(13, 146, 99, 0.21) 96.75%);
            filter: blur(61.54999923706055px);
            left: 320px;
            top: -30px;
        }

        .features-section .features-header .section-title {
            font-size: 32px;
            margin: 20px 0 10px;
        }

        .features-section .features-header .section-description {
            font-size: 16px;
            opacity: 0.8;
        }

    /* Layout */
    .features-section .features-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

        .features-section .features-layout.reverse {
            grid-template-columns: 1fr 1fr;
        }

    .features-section .section-header .section-title {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 24px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Hide mobile carousel on desktop */
.features-section .mobile-features-carousel {
    display: none;
}

/* Show desktop grid on desktop */
.features-section .desktop-features-grid {
    display: grid;
}

.feature-card {
    padding: 24px;
    border-radius: 6px;
    border: 1px solid #FFF;
    border-radius: 12px;
    padding: 24px;

    color: white;
}

    .feature-card:hover {
        background: linear-gradient( 95deg, #0b4e3b 0%, #0f6c4d 45%, #b9b34a 100% );
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.38), inset 0 0 12px rgba(0, 0, 0, 0.15), 0 4px 18px rgba(0, 0, 0, 0.2);
        /*filter: blur(44.349998474121094px);*/
    }

    .feature-card .feature-icon {
        display: flex;
        justify-content: space-between;
        margin-bottom: 24px;
        position: relative;
        width: 100%;
    }

        .feature-card .feature-icon :first-child {
            width: 24px;
            height: 24px;
        }

        .feature-card .feature-icon :last-child {
            position: absolute;
            top: -20px;
            right: -20px;
        }

    .feature-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-4px);
    }

    .feature-card h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        text-transform: capitalize;
        line-height: 24px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 19px;
    }

/* Slider */
.features-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    background: #EEE;
    height: 100%;
    width: 100%;
}

.carousel-inner img {
    border-radius: 16px;
}

.carousel-inner {
    overflow: unset !important;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.features-section .slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.features-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.features-section .carousel-indicators .active {
    background: #fff;
}



/* Testimonials Section */
/* Testimonials Section */
.testimonials-section {
    color: #fff;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-y: unset;
    padding-top: 36px;
}

.testimonials-section .testimonials-header {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    .testimonials-section .testimonials-header .gradient-5 {
        position: absolute;
        width: 225.742px;
        height: 185.492px;
        transform: rotate(22.243deg);
        flex-shrink: 0;
        border-radius: 92.746px;
        background: linear-gradient(117deg, rgba(205, 198, 81, 0.19) 2.72%, rgba(111, 173, 90, 0.22) 50.64%, rgba(13, 146, 99, 0.21) 96.75%);
        filter: blur(61.54999923706055px);
    }

    .testimonials-section .testimonials-header .section-title {
        font-size: 40px;
        font-weight: 700;
        line-height: 1.3;
    }

.testimonials-section .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonials-section .testimonial-card {
    padding: 32px 24px 24px 24px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    border: 1px solid #FFF;
    box-shadow: 0 8px 20px 5px rgba(163, 163, 163, 0.10);
    width: 280px;
    height: 260px;
    scroll-snap-align: start;
}

.testimonials-section .testimonial-card {
    margin-top: 35px;
}

    .testimonials-section .testimonial-card:hover {
        border-color: var(--primary-color);
    }

.testimonials-section .quote-icon {
    position: absolute;
    top: -25px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
    border-radius: 4px;
    display: flex;
    transform: rotate(-135deg);
    width: 46.727px;
    height: 46.727px;
    padding: 9px 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.quote-icon img {
    width: 15px;
    height: 11px;
    flex-shrink: 0;
}

.testimonials-section .testimonial-card .quote-icon img {
    transform: rotate(135deg);
}


.testimonials-section .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 36px;
    margin-bottom: 8px;
    min-height: 80px;
}

.testimonials-section .testimonial-card .line {
    height: 1px;
    background: #DCDCDC;
}

.testimonials-section .testimonial-card h5 {
    font-size: 14px;
    margin: 10px 0 2px;
}

.testimonials-section .testimonial-card .role {
    font-size: 10px;
    opacity: 0.7;
}

.testimonials-section .testimonial-card .stars {
    color: gold;
    font-size: 16px;
}

.testimonials-section .testimonial-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-carousel-controls {
    position: relative;
    width: 100px;
    margin-top: 40px;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* hide scrollbar */
}

.testimonials-carousel-controls {
    display: flex;
    gap: 24px;
}
/* Carousel Controls */
.testimonials-section .carousel-btn {
    border-color: transparent;
    display: flex;
    width: 30.348px;
    height: 30.348px;
    transform: rotate(45deg);
    padding: 9px 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--primary-color);
}

    .testimonials-section .carousel-btn img {
        transform: rotate(-45deg);
    }

/* .testimonials-section .carousel-control-prev {
    right: 60px;
    left: auto;
  } */

/* .testimonials-section .carousel-control-next {
    right: 0;
  } */



/* Why Choose Us Section */
.why-choose-us {
    background-color: #1A1A1A;
    color: white;
}

    .why-choose-us .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .why-choose-us .section-header {
        text-align: center;
        padding-bottom: 64px;
        position: relative;
    }

        .why-choose-us .section-header img {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

    .why-choose-us .section-title {
        font-size: 40px;
        font-weight: 700;
        margin: 0 0 20px 0;
        line-height: 1.3;
        color: white;
        text-transform: capitalize;
    }

    .why-choose-us .section-description {
        max-width: 700px;
        margin: 0 auto;
        color: #fff;
        font-size: 16px;
        line-height: 1.6;
    }

    .why-choose-us .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 32px;
        position: relative;
    }

        .why-choose-us .features-grid .gradient-3 {
            position: absolute;
            width: 225.742px;
            height: 185.492px;
            transform: rotate(5.049deg);
            flex-shrink: 0;
            border-radius: 92.746px;
            background: linear-gradient(117deg, rgba(205, 198, 81, 0.19) 2.72%, rgba(111, 173, 90, 0.22) 50.64%, rgba(13, 146, 99, 0.21) 96.75%);
            filter: blur(61.54999923706055px);
            left: 40%;
            top: 10%;
        }

    /* why-choose-us feature cards now use same HTML structure as general feature-card */
    /* They inherit all styles from .feature-card, .feature-card h4, and .feature-card p */

/* Footer section region */

/* --------------------------
   Footer & footer-hero styles
   -------------------------- */
.footer-hero-wrap {
}

    .footer-hero-wrap .footer-hero {
        background-image: url('images/footer-bg.svg'); /* replace with your hero image */
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        height: 220px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: 0 6px 30px rgba(0,0,0,0.5);
        margin-bottom: -105px; /* overlap the green footer band */
        padding: 24px;
        z-index: 1;
    }

    .footer-hero-wrap .hero-content {
        color: #fff;
        text-align: center;
        max-width: 980px;
        padding: 8px 20px;
    }

        .footer-hero-wrap .hero-content h3 {
            font-size: 20px;
            font-weight: 400;
            line-height: 1.3;
            margin: 0 0 8px;
            opacity: 0.95;
        }

            .footer-hero-wrap .hero-content h3 span {
                display: block;
                font-weight: 700;
                margin-top: 6px;
                font-size: 24px;
            }

        .footer-hero-wrap .hero-content p {
            font-size: 13px;
            opacity: 0.85;
            margin: 10px 0 18px;
        }

    /* CTA button: glass style */
    .footer-hero-wrap .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 45px;
        color: #fff;
        padding: 9px 10px 9px 35px;
        text-decoration: none;
        border: 1px solid #fff;
        font-size: 16px;
        font-weight: 600;
        border-radius: 54px;
        background: linear-gradient(121deg, rgba(222, 222, 222, 0.80) -52.84%, rgba(217, 217, 217, 0.00) 96.94%);
        backdrop-filter: blur(4.47963809967041px);
        transition: background 1s ease-in-out;
    }
        /*.footer-hero-wrap .btn-cta:hover {
            background: linear-gradient( 95deg, #0b4e3b 0%, #0f6c4d 5%, #b9b34a 100% );
            border-color: transparent;*/ /* optional � looks cleaner */
        /*}*/
        .footer-hero-wrap .btn-cta .cta-arrow {
            display: inline-flex;
            width: 45px;
            height: 45px;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 50%;
            font-weight: 700;
        }

        /* gradient overlay */
        .footer-hero-wrap .btn-cta::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(95deg, #0b4e3b 0%, #0f6c4d 5%, #b9b34a 100%);
            opacity: 0; /* hidden default */
            border-radius:54px;
            transition: opacity .8s ease; /* smooth fade */
            z-index: -1; /* behind text */
        }

        /* Where animation happens */
        .footer-hero-wrap .btn-cta:hover::after {
            opacity: 1; /* fade-in gradient */
        }

/* Footer main band (green) */
.site-footer {
    background: var(--primary-color); /* uses your primary color (green) */
    color: #fff;
    padding: 155px 0 40px;
    position: relative;
}

/* grid: left (wide) + two narrow columns */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.site-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.site-footer .brand-name {
    font-weight: 600;
    font-size: 16px;
    color: #F9F9F9;
    margin-top: 12px;
}

.site-footer .footer-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 32px 0 32px;
}

/* Contact row */
.site-footer .contact-row {
    display: flex;
    gap: 40px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.site-footer .contact-item strong {
    display: block;
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 6px;
}

.site-footer .contact-value {
    font-size: 14px;
}

    .site-footer .contact-value a {
        color: rgba(255,255,255,0.95);
        text-decoration: underline;
    }

/* small divider line above socials */
.site-footer .footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 18px 0;
}

/* social icons layout */
.site-footer .social-row {
    display: flex;
    gap: 10px;
}

.site-footer .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.95;
}

.site-footer .footer-links, .site-footer .footer-support {
    text-align: center;
}
    /* links columns */
    .site-footer .footer-links h4,
    .site-footer .footer-support h4 {
        margin: 0 0 14px 0;
        font-size: 16px;
        font-weight: 700;
    }

    .site-footer .footer-links ul,
    .site-footer .footer-support ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .site-footer .footer-links li,
    .site-footer .footer-support li {
        margin-bottom: 18px;
    }

    .site-footer .footer-links a,
    .site-footer .footer-support a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

        .site-footer .footer-links a:hover,
        .site-footer .footer-support a:hover {
            text-decoration: underline;
        }

/* bottom row */
.site-footer .footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 18px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    border-top: 1px solid #fff;
}

/* privacy/terms */
.site-footer .bottom-links a {
    color: rgba(255,255,255,0.95);
    margin-left: 18px;
    text-decoration: none;
    font-size: 14px;
}

/* scroll-to-top diamond */
.scroll-top {
    position: absolute;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #0b0b0b;
    border: none;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 200ms ease, transform 150ms ease;
    z-index: 40;
    border-radius: 6px;
}

    .scroll-top span {
        transform: rotate(-45deg);
        color: #fff;
        font-size: 16px;
        line-height: 1;
    }

    .scroll-top.visible {
        opacity: 1 !important;
    }

.integration-section {
    text-align: center;
    padding: 5px;
}

    .integration-section h2 {
        font-size: 40px;
        font-weight: 700;
        color: #0fa76f; /* green heading */
        margin-bottom: 15px;
    }

    .integration-section p {
        font-size: 16px;
        color: #ccc;
        margin-bottom: 50px;
        line-height: 1.6;
    }

    .integration-section .logo-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
    }

        .integration-section .logo-row img {
            height: 60px;
            object-fit: contain;
            transition: transform 0.3s ease, opacity 0.3s ease;
            cursor: pointer;
        }

            .integration-section .logo-row img:hover {
                transform: scale(1.1);
                opacity: 0.9;
            }
/* Contact Section */
.contact-section {
    color: #fff;
}

    .contact-section .contact-title {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 40px;
    }

    .contact-section .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    /* Left image with overlay */
    .contact-section .contact-image {
        position: relative;
        border-radius: 8px 0 0 8px;
        overflow: hidden;
    }

        .contact-section .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .contact-section .contact-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        font-size: 14px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.00) 0.01%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.43) 72%, rgba(0, 0, 0, 0.80) 100%);
    }

        .contact-section .contact-overlay p {
            margin: 6px 0;
        }

        .contact-section .contact-overlay a {
            color: #fff;
            text-decoration: underline;
        }

    /* Right form */
    .contact-section .contact-form {
        background: #fff;
        color: #000;
        border-radius: 0 8px 8px 0;
        padding: 80px;
    }

        .contact-section .contact-form h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .contact-section .contact-form p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .contact-section .contact-form a {
            color: black;
            font-weight: 700;
        }

    .contact-section .form-group {
        margin-bottom: 18px;
    }

        .contact-section .form-group label {
            color: #000;
            font-size: 16px;
            font-weight: 500;
            line-height: 43px; /* 268.75% */
            margin-bottom: 8px;
        }

        .contact-section .form-group input,
        .contact-section .form-group select,
        .contact-section .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

    .contact-section .phone-input {
        display: flex;
        gap: 10px;
    }

        .contact-section .phone-input select {
            flex: 0 0 80px;
        }

    .contact-section .full-width {
        display: flex;
        justify-content: center;
    }
    /* Button */
    .contact-section .btn-submit {
        background: var(--primary-color);
        color: #fff;
        border-radius: 50px;
        border: none;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        padding: 10px 10px 10px 30px;
        align-items: center;
        gap: 35px;
    }

        .contact-section .btn-submit .arrow {
            background: #fff;
            color: var(--primary-color);
            padding: 6px;
            border-radius: 50%;
            width: 30px;
        }

/* Newsletter Section */
.newsletter-section {
    color: #fff;
    text-align: center;
}

    .newsletter-section .container {
        position: relative;
    }

        .newsletter-section .container .gradient-6 {
            position: absolute;
            width: 282.812px;
            height: 232.386px;
            transform: rotate(3.655deg);
            flex-shrink: 0;
            border-radius: 126.4px;
            background: linear-gradient(117deg, rgba(205, 198, 81, 0.20) 2.72%, rgba(111, 173, 90, 0.19) 50.64%, rgba(13, 146, 99, 0.20) 96.75%);
            filter: blur(61.54999923706055px);
            left: 440px;
            top: -30px;
            z-index: -1;
        }

    .newsletter-section h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .newsletter-section p {
        font-size: 16px;
        font-weight: 300;
        ;
        margin-bottom: 32px;
    }

    .newsletter-section .newsletter-form {
        display: flex;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
        gap: 10px;
    }

        .newsletter-section .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 4px;
            background: linear-gradient(91deg, rgba(187, 187, 187, 0.20) 34.32%, rgba(85, 85, 85, 0.00) 173.91%);
            color: #fff;
            border-radius: 0;
        }

        .newsletter-section .newsletter-form button {
            padding: 12px;
            border-radius: 30px;
            border: 1px solid var(--primary-color);
            background: transparent;
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 20px;
        }

            .newsletter-section .newsletter-form button .arrow {
                background: var(--primary-color);
                padding: 6px;
                border-radius: 50%;
                width: 30px;
            }

            .newsletter-section .newsletter-form button:hover {
                background: var(--primary-color);
                color: #fff;
            }

.vision-section {
    text-align: center;
}

    .vision-section h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 32px;
    }

    .vision-section .cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: nowrap;
        margin-bottom: 40px;
    }

    .vision-section .card {
        color: #fff;
        padding: 36px 94px;
        max-width: 510px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        text-align: center;
        border-radius: 8px;
        background: linear-gradient(118deg, rgba(222, 222, 222, 0.80) -5.8%, rgba(217, 217, 217, 0.00) 110.44%);
        backdrop-filter: blur(4.47963809967041px);
    }

    /* Mobile responsive for vision section */
    @media (max-width: 768px) {
        .vision-section .cards {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 10px;
        }

        .vision-section .card {
            width: 100%;
            max-width: 100%;
            padding: 30px 20px;
        }

        .vision-section h2 {
            font-size: 32px;
        }

        .vision-section .card h3 {
            font-size: 28px;
        }
    }

    @media (max-width: 480px) {
        .vision-section .card {
            padding: 24px 16px;
        }

        .vision-section h2 {
            font-size: 28px;
            margin-bottom: 24px;
        }

        .vision-section .card h3 {
            font-size: 24px;
        }

        .vision-section .card p {
            font-size: 13px;
        }
    }

    .vision-section .cards .card:last-child {
        padding: 36px 64px;
        border-radius: 8px;
        background: linear-gradient(119deg, rgba(217, 217, 217, 0.00) -1.63%, rgba(222, 222, 222, 0.80) 105.2%);
        backdrop-filter: blur(4.47963809967041px);
    }

    .vision-section .card h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .vision-section .card p {
        font-size: 14px;
        text-transform: capitalize;
        color: #fff;
    }

    .vision-section .btn {
        display: inline-flex;
        align-items: center;
        background: #fff;
        color: #000;
        padding: 10px 10px 10px 30px;
        border-radius: 30px;
        font-size: 16px;
        text-decoration: none;
        font-weight: 600;
        border: 2px solid #000;
        transition: all 0.3s ease;
        gap: 35px;
    }

        .vision-section .btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .vision-section .btn span {
            display: inline-flex;
            background: var(--primary-color);
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            line-height: 36px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }



.backdrop {
    height: 50px;
}


/* Responsive */
@media (max-width: 1200px) {
    .testimonials-section .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .features-section .features-layout,
    .features-section .features-layout.reverse {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .scroll-top {
        right: 20px;
    }

    .contact-section .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Ensure about-content appears first (top) and video-container second (bottom) */
    .about-section .about-grid .about-content {
        order: 1;
    }
    
    .about-section .about-grid .video-container {
        order: 2;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-text {
        margin-bottom: 24px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .why-choose-us {
        padding: 60px 0;
    }

        .why-choose-us .section-title {
            font-size: 32px;
        }

        .why-choose-us .features-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 40px auto 0;
        }

        .why-choose-us .feature-card {
            padding: 25px 20px;
        }

    .testimonials-section .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Features section - single column on mobile */
    .features-section .features-grid {
        grid-template-columns: 1fr;
    }

    /* Fleet Management - Hide desktop grid on mobile, show carousel */
    .features-section .desktop-features-grid {
        display: none;
    }

    .features-section .mobile-features-carousel {
        display: block;
        margin-bottom: 24px;
    }

    .features-section .mobile-features-carousel .feature-card {
        margin: 0 10px;
    }

    /* Hide image display area on mobile for Fleet Management */
    .features-section .features-layout.reverse .features-slider {
        display: none;
    }

    /* Fleet Management Carousel Dots */
    .fleet-management-carousel .owl-dots {
        text-align: center;
        margin-top: 20px;
    }

    .fleet-management-carousel .owl-dots .owl-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 0 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .fleet-management-carousel .owl-dots .owl-dot.active {
        background: var(--primary-color);
        width: 30px;
        border-radius: 6px;
    }
    
    .fleet-management-carousel .owl-dots .owl-dot span {
        display: none;
    }

    /* Center gradient-4 on mobile to prevent horizontal scroll */
    .features-section .features-header .gradient-4 {
        left: 50%;
        transform: translateX(-50%) rotate(12.856deg);
    }

    /* Footer hero mobile styles */
    .footer-hero-wrap .footer-hero {
        margin-bottom: 0;
        border-radius: 0;
    }

    .footer-hero-wrap .hero-content h3 {
        font-size: 14px;
    }

    .footer-hero-wrap .hero-content h3 span {
        font-size: 12px;
    }

    .footer-hero-wrap .hero-content p {
        font-size: 12px;
    }

    /* Contact section mobile - reduce paddings to prevent horizontal scroll */
    .contact-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-section .contact-form {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .contact-section .contact-image {
        border-radius: 8px 8px 0 0;
    }

    .contact-section .contact-overlay {
        padding: 15px;
    }
}

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

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .footer-hero-wrap .footer-hero {
        margin-bottom: 0;
        border-radius: 0;
    }

    .footer-hero-wrap .hero-content h3 {
        font-size: 14px;
    }

    .footer-hero-wrap .hero-content h3 span {
        font-size: 12px;
    }

    .footer-hero-wrap .hero-content p {
        font-size: 12px;
    }

    .footer-hero-wrap .btn-cta {
        padding: 8px 14px;
    }

    /* Contact section mobile - further reduce paddings for small screens */
    .contact-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-section .contact-form {
        padding: 20px 16px;
    }

    .contact-section .contact-form h3 {
        font-size: 22px;
    }

    .contact-section .contact-form p {
        font-size: 14px;
    }

    .contact-section .contact-overlay {
        padding: 12px;
        font-size: 12px;
    }

    .site-footer {
        padding: 80px 0 40px;
    }

    .why-choose-us .section-title {
        font-size: 28px;
    }

    .why-choose-us .section-subtitle {
        font-size: 14px;
    }

    .why-choose-us .feature-icon {
        width: 60px;
        height: 60px;
        width: 100%;
    }

        .why-choose-us .feature-icon img {
            width: 30px;
            height: 30px;
        }
}











/* Size / look of the Bootstrap modal */
#bookDemoModal .modal-dialog {
    max-width: 1100px;
}

.demo-modal-dialog {
    border-radius: 12px;
    border: 1px solid #DCDCDC;
    padding: 50px 70px 40px;
    background: #FDFDFD;
    box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

/* header text */
.book-demo-header {
    text-align: center;
    margin-bottom: 32px;
}

    .book-demo-header h2 {
        color: var(--primary-color);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .book-demo-header p {
        font-size: 16px;
    }

    .book-demo-header a {
        color: #000;
        font-weight: 700;
        text-decoration: underline;
    }

/* grid layout similar to contact form */
.book-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.book-demo-submit {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* X button in top-right */
.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 26px;
    border: none;
    background: transparent;
    font-size: 26px;
    color: #FF3B3B;
    cursor: pointer;
}

/* responsive */
@media (max-width: 768px) {
    .demo-modal-dialog {
        padding: 30px 20px 25px;
    }

    .book-demo-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-logo {
    display: none;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.mobile-sidebar-content {
    padding: 60px 30px 30px;
}

.mobile-sidebar-logo {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-sidebar-logo .logo {
    height: 40px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-nav-item-has-children {
    position: relative;
}

.mobile-nav-toggle {
    position: relative;
    padding-right: 30px;
}

.mobile-nav-toggle::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mobile-nav-item-has-children.active .mobile-nav-toggle::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.mobile-nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item-has-children.active .mobile-nav-submenu {
    max-height: 300px;
    padding-left: 20px;
}

.mobile-nav-submenu li {
    margin-bottom: 5px;
}

.mobile-nav-submenu .mobile-nav-link {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: none;
    opacity: 0.8;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
    .desktop-menu {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-logo {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-logo .logo {
        height: 35px;
    }

    .header {
        padding: 1rem 0;
    }

    .navbar {
        padding: 0 1.5rem;
        justify-content: space-between;
    }

    .navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .header.header-solid {
        background: rgba(26, 26, 26, 0.98);
    }
}

@media (min-width: 992px) {
    .mobile-menu-toggle,
    .mobile-logo,
    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: none !important;
    }
}

/* Equipment Grid Mobile Carousel */
@media (max-width: 991px) {
    .equipment-grid .desktop-grid {
        display: none !important;
    }

    .equipment-grid .mobile-carousel {
        display: block;
        padding: 0 1.5rem;
        margin: 0 auto;
    }

    .equipment-grid .mobile-carousel .grid-item {
        width: 100%;
        height: 400px;
        border-radius: 16px;
        margin: 0;
        flex: none;
    }

    .equipment-grid .mobile-carousel .image-container {
        border-radius: 16px;
        overflow: hidden;
    }

    .equipment-grid .mobile-carousel .image-container.inverted-radius,
    .equipment-grid .mobile-carousel .image-container.inverted-radius-2 {
        mask: none;
        -webkit-mask: none;
        border-radius: 16px;
    }

    .equipment-grid .mobile-carousel .category-info {
        padding: 2rem;
        padding-bottom: 3rem;
    }

    .equipment-grid .mobile-carousel .category-info h3 {
        font-size: 1.25rem;
    }

    /* Owl Carousel Dots for Mobile */
    .equipment-grid .mobile-carousel .owl-dots {
        text-align: center;
        margin-top: 20px;
    }

    .equipment-grid .mobile-carousel .owl-dots .owl-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 0 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .equipment-grid .mobile-carousel .owl-dots .owl-dot.active {
        background: var(--primary-color);
        width: 30px;
        border-radius: 6px;
    }
    
    .equipment-grid .mobile-carousel .owl-dots .owl-dot span {
        display:none;
    }
}