/* public/assets/css/clients.css */

:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --border-dark: #333333;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.page-hero {
    padding: 160px 20px 80px;
    background: var(--bg-black);
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* --- LOGO GRIDS --- */
.logo-section {
    padding: 80px 20px;
    background: #ffff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Strategic Partners (Big Cards) */
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    width: 300px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.partner-card img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.4s;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}



/* --- CTA --- */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-black);
    position: relative;
    border-top: 1px solid var(--border-dark);
}

.cta-btn {
    display: inline-block;
    background: white;
    color: black;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 30px;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* Footer Override */
.aivanta-footer {
    background-color: #000 !important;
}
