/* ============= Hero Section ============= */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    max-width: 1000px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

/* ============= CTA Buttons ============= */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 35px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    border: none;
}

.primary-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.primary-btn:hover {
    background-color: #e0ac00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
}

.secondary-btn:hover {
    background-color: rgba(0, 40, 85, 0.7);
    transform: translateY(-3px);
}

/* ============= Partner Section ============= */
.partner-section {
    background: rgba(0, 40, 85, 0.7);
}

.partner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 195, 0, 0.2);
    transition: all 0.3s ease;
}

.expertise-card p {
    font-size: 1.2rem;
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-yellow);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.expertise-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

/* ============= Index Page Responsive ============= */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 280px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .partner-section {
        padding: 60px 0;
    }
}







