/* Home Index Page Styles */

.card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.03);
}

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
}

/* Hide feature cards on mobile */
@media (max-width: 768px) {
    /* Hide the entire Features Section - target the specific section */
    section.py-5:nth-of-type(2) {
        display: none !important;
    }

    /* Fallback: Hide specific cards by position in text-center row */
    .row.text-center .col-md-4:nth-child(1),
    .row.text-center .col-md-4:nth-child(2),
    .row.text-center .col-md-4:nth-child(3) {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* Hide by icon classes directly */
    .fa-shield-alt,
    .fa-mobile-alt,
    .fa-headset {
        display: none !important;
    }

    /* Hide entire cards - more specific targeting */
    .container .row.text-center .col-md-4 {
        display: none !important;
    }

    /* Hide the container of the feature cards */
    .container:has(.text-center .fa-shield-alt) {
        display: none !important;
    }
}
