    #downloadHeaderID {
    color: #ffa600;
}

p {
    color: #ffffff;
}
    
    /* PWA Test */
    /* Hide Home button in the browser */
    .pwa-only-button {
        display: none !important;
    }`

    /* Show Home inside the PWA */
    @media (display-mode: standalone) {
        .pwa-only-button {
            display: inline-block !important;
        }

        /* Hide Install button in the PWA */
        #installWebAppID {
            display: none !important;
        }
    }

    /* PWA Test End */

    /* Container for the split layout */
    .slide-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 500px;
        /* Match the height you set in HTML */
        padding: 0 10%;
        gap: 40px;
        background: linear-gradient(180deg, #006a36 0%, #004b27 100%);;
    }

    /* Text Side */
    .slide-text {
        flex: 1;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        font-size: 80px;
        font-weight: 900;
        line-height: 1;
        color: #ffa600;
        margin: 0;
    }

    .swiper-slide__title {
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #fff;
    }

    .swiper-slide__description {
        font-size: 16px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Image Side */
    .slide-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide-image img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    }

    /* --- OWL SPECIFIC CONTROLS --- */

    /* Ensure the carousel container allows absolute positioning */
    .owl-carousel {
        position: relative;
    }

    /* Force the Nav container to show */
    .owl-nav {
        display: block !important;
        /* Owl sometimes hides this if it thinks it's not needed */
    }

    /* Style the buttons */
    .owl-prev,
    .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.3) !important;
        /* Semi-transparent circle */
        color: #ffa600 !important;
        /* Your gold theme color */
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 100;
        transition: all 0.3s ease;
    }

    .owl-prev {
        left: 10px;
    }

    .owl-next {
        right: 10px;
    }

    .owl-prev:hover,
    .owl-next:hover {
        background: #ffa600 !important;
        color: #006a36 !important;
        /* Dark theme color on hover */
    }

    /* Style the arrow icons inside the buttons */
    .owl-nav-btn {
        font-size: 30px;
        line-height: 1;
        font-weight: bold;
    }

    /* Carousal Tab Styles END*/

    .installGuide {
        margin-top: 80px;
    }

    .tabs-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin: 20px 0;
    }

    .tab-btn {
        background: none;
        border: none;
        color: #006a36;
        cursor: pointer;
        padding: 10px 15px;
        transition: 0.3s;
        border-bottom: 3px solid transparent;
    }

    .tab-btn-active {
        border-bottom: 3px solid #ffa600;
        /* Adjust to match your theme red */
        font-weight: bold;
    }

    /* Rectangle Content */
    .offer-box {
        margin-bottom: 40px;
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0);
        /* Slight box visibility */
        border: 1px solid rgba(255, 255, 255, 0);
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
    }

    .tab-content {
        display: none;
        width: 100%;
    }

    .tab-content-active {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile guide */
    .spacer-top {
        margin-top: 15px;
    }

    .spacer-bottom {
        margin-bottom: 15px;
    }

    .steps-container {
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding: 20px 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .steps-container::-webkit-scrollbar {
        display: none;
    }

    .step-card {
        flex: 0 0 80vw;
        max-width: 280px;
        height: 380px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        background: linear-gradient(180deg, #006a36 0%, #004b27 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps-container::before,
    .steps-container::after {
        content: '';
        flex: 0 0 10vw;
    }

    @media (min-width: 992px) {
        .steps-container {
            overflow-x: visible;
            scroll-snap-type: none;
            justify-content: center;
            flex-wrap: wrap;
        }

        .step-card {
            flex: 0 0 200px;
            width: 200px;
            margin-bottom: 20px;
            height: 300px;
            scroll-snap-align: none;
        }

        .steps-container::before,
        .steps-container::after {
            display: none;
        }
    }

    .step-img-box {
        width: 100%;
        margin-top: auto;
    }

    .step-img-box img {
        width: 100%;
        max-height: 300px;
        object-fit: contain;
    }
