.hero-section {
    background-color: #0a1f44;
    color: white;
    padding: 80px 0;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 1.5rem;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

.feature-icon {
    width: 60px;
    height: 60px;
}

.partner-stats {
    background-color: #f8f9fa;
}

.partner-feature-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

    .partner-feature-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 1rem 0;
        color: #333;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-feature-card .image-container {
        position: relative;
        overflow: hidden;
        padding-bottom: 50%;
        height: 320px;
    }

        .partner-feature-card .image-container img {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

/* Hero customizations */
.hero-section {
    background: linear-gradient(180deg, #0b213d 0%, #0f2744 60%, #0b1728 100%);
    color: #fff;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-left h1 {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 700;
}

.hero-section .text-primary {
    color: #39a6ff !important;
}

.cta-btn {
    background: #28a7ff;
    border-color: #28a7ff;
}

.hero-right img {
    max-width: 520px;
    width: 100%;
    transform: translateY(-10px);
}

/* Dark card for How It Works */
.dark-card {
    background: rgba(11,30,50,0.6);
    color: #e9f2fb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2,10,20,0.4);
    border: 1px solid rgba(255,255,255,0.04);
}

.stat-box {
    background: #0f2436;
    color: #e8f6ff;
    border-radius: 10px;
    min-width: 160px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .hero-section { padding: 60px 0; }
    .hero-section .hero-left h1 { font-size: 32px; }
    .hero-right { text-align: center; margin-top: 20px; }
}


footer, .section-trusted {
    background-color: #0a1f44;
    color: white;
    padding: 80px 0;
}

