.clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 1rem;
}

.client-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 1rem;
    flex: 0 1 calc(30% - 2rem); /* Responsive width */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden; /* Ensures content stays within the card */
}

.card-image {
    width: 100%; /* Ensures image fills card width */
    max-width: 150px; /* Limits image width */
    height: auto; /* Maintains aspect ratio */
    object-fit: contain; /* Maintains aspect ratio without cropping */
    display: block;
    margin: 0 auto; /* Centers image horizontally */
}


.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px; /* Limit max width for better readability */
    margin: 2rem auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
    flex: 1 1 200px; /* Flexible sizing */
    margin: 1rem;
    padding: 1.5rem;
    background: #f8b400; /* Background color for contact items */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s; /* Scale effect */
}

.contact-item:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.contact-item h3 {
    margin-bottom: 0.5rem; /* Space between heading and content */
    color: #fff; /* Text color for headings */
}

.contact-item p {
    margin: 0; /* Remove default margin */
    color: #333; /* Text color for paragraphs */
}

.contact-item a {
    color: #fff; /* Link color */
    text-decoration: underline; /* Underline links */
}

.contact-item a:hover {
    color: #ffe600; /* Change link color on hover */
}

.map-card {
    margin: 2rem auto; /* Center the map card */
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 800px; /* Limit max width for better readability */
}

.map-card h3 {
    margin-bottom: 1rem; /* Space between heading and map */
    color: #333; /* Text color for headings */
    text-align: center; /* Center the heading */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .client-card {
        flex: 0 1 calc(45% - 2rem); /* Responsive width */
    }
}

@media (max-width: 480px) {
    .client-card {
        flex: 0 1 calc(100% - 2rem); /* Full width on small screens */
    }
}


