/* Clients Page Specific Styles */

/* Root and Global Overrides for this page */
.clients-page {
    background-color: #ffffff;
    font-family: 'Outfit', 'Inter', sans-serif;
    padding: 0;
}

/* Hero Section */
.clients-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/clients-hero-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 955px;
    padding: 0;
    color: #ffffff;
    border-radius: 0 0 20px 20px;
    margin-bottom: 0;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: 0px;
    font-family: 'Outfit';
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 797px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    margin-bottom: 0px;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: flex;
    height: 47px;
    padding: 15px 24px 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
}

.hero-btn-primary {
    background: #1989FB;
    color: #FFF;
    border: none;
}

.hero-btn-secondary {
    background: #FFF;
    color: #0D0100;
    border: 1px solid #0D0100;
}

.hero-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 5% 0px 15% 0px;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-action-btn {
    justify-content: center;
}

/* Clients Logo Section */
.clients-logo-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.clients-logo-section h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 34px;
    letter-spacing: 2px;
    text-align: center;
    color: #0D0100;
    margin-bottom: 80px;
}

.client-logos img {
    max-height: 110px;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    transform: scale(1.05);
}

.client-logos .col-12,
.client-logos .col-md-4,
.client-logos .col-lg-4 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    margin-bottom: 100px !important;
}

.client-logos .col-12:last-child,
.client-logos .col-md-4:last-child,
.client-logos .col-lg-4:last-child {
    margin-bottom: 0;
}

/* Responsiveness for 1920px */
@media (min-width: 1900px) {
    .container {
        max-width: 1270px;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 32px;
        max-width: 1200px;
    }
}

/* Responsiveness for sizes less than 1440px */
@media (max-width: 1439px) {
    .clients-hero {
        border-radius: 0 0 20px 20px;
    }
}

/* Responsiveness for 375px and general mobile */
@media (max-width: 991px) {
    .clients-hero {
        height: 600px;
    }

    .hero-btn {
        margin: 25px 0;
    }
}

@media (max-width: 768px) {
    .clients-hero {
        height: 480px;
        border-radius: 0 0 20px 20px;
    }
    
    /* Common css for mobile hero section */
    .hero-title {
        font-size: 27px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 25px;
    }

    .hero-btn {
        margin: 0;
        font-size: 12px;
        height: unset;
        padding: 10px 14px;
    }

    .hero-action-btn {
        flex-wrap: nowrap !important;
    }

    .clients-logo-section {
        padding: 60px 0;
    }

    .client-logos .col-12 {
        justify-content: center;
        margin-bottom: 45px !important;
    }

    .clients-logo-section h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .client-logos img {
        max-height: 100px;
        width: 272px !important;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .clients-hero {
        height: 480px;
        border-radius: 0 0 16px 16px;
    }
}
