/* Clients Section */
.clients {
    background: #f7faff;
    padding: 60px 0;
    text-align: center;
}

.clients h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #2a2a72;
}

.clients p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.client-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.client-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.client-card h3 {
    font-size: 1.5rem;
    color: #004d99;
    margin-bottom: 10px;
}

.client-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.client-card .btn {
    background: #ff6f61;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.client-card .btn:hover {
    background: #ff856c;
}

@media (max-width: 992px){
    
    /* Clients Section */
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
}

@media (max-width: 768px){
    .clients h2 {
        font-size: 2rem;
      }
}

@media (max-width: 480px){
    .clients-grid {
        grid-template-columns: 1fr;
      }
    
      .client-card img {
        width: 80%;
        margin: 0 auto 10px;
      }
}