.hero {
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.card img {
    border-radius: 12px 12px 0 0;
}

/* Full Mobile Visibility Fix - Overrides ALL external hiding CSS */
@media (max-width: 992px) {

    /* 1. Ensure the outer container is visible and has space */
    .tuk-tuk-collection-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 200px !important;
        padding-top: 20px !important;
        /* Adding padding to confirm it's not collapsed */
    }

    /* 2. Ensure the Row is visible and wrapping columns */
    .tuk-tuk-collection-section .row {
        display: flex !important;
        flex-wrap: wrap !important;
        min-height: 100px !important;
    }

    /* 3. Ensure the individual Columns are visible and taking up space */
    .tuk-tuk-collection-section .col-12 {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }
}

/* Full Mobile Visibility Fix - Overrides ALL external hiding CSS */
@media (max-width: 992px) {

    /* 1. Ensure the outer container is visible and has space */
    .testimonials-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 200px !important;
        padding-top: 20px !important;
        /* Adding padding to confirm it's not collapsed */
    }

    /* 2. Ensure the Row is visible and wrapping columns */
    .testimonials-section .row {
        display: flex !important;
        flex-wrap: wrap !important;
        min-height: 100px !important;
    }

    /* 3. Ensure the individual Columns are visible and taking up space */
    .testimonials-section .col-12 {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }
}