﻿.clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.section-tag {
    display: inline-block;
    background: #e8f1ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 52px;
    font-weight: 800;
    color: #0b1f5b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #0d6efd;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: #084ec1;
    color: #fff;
}

.btn-secondary-custom {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-secondary-custom:hover {
    background: #0d6efd;
    color: #fff;
}

/* Mobile */

@media (max-width:768px) {

    .clients-section {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 34px;
    }

    .main-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}