/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Hero Section */
.experience-hero {
    background: linear-gradient(to bottom, #003366, #0056b3);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.experience-hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.experience-hero p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Clients Section */
.clients-section {
    background-color: #eef7ff;
    padding: 50px 20px;
    text-align: center;
}

.clients-section h2 {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 30px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Milestones Section */
.milestones {
    background: linear-gradient(to bottom, #f4f4f4, #ffffff);
    padding: 50px 20px;
    text-align: center;
}

.milestone-timeline {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.milestone {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
}

.milestone h3 {
    color: #003366;
    margin-bottom: 10px;
}

.milestone p {
    font-size: 0.9em;
    color: #555;
}

/* Testimonials Section */
/* .testimonials {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 300px;
    scroll-snap-align: center;
} */

/* Call to Action Section */
.cta-section {
    background-color: #003366;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto 20px;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
.industry-expertise {
    background-color: #eef7ff;
    padding: 60px 20px;
    text-align: center;
}

.industry-expertise h2 {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 30px;
}

.industry-grid {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.industry {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
}

.industry img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.industry h3 {
    color: #003366;
    margin-bottom: 10px;
}

.industry p {
    font-size: 0.9em;
    color: #555;
}
.awards {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.awards h2 {
    font-size: 2em;
    color: #003366;
    margin-bottom: 30px;
}

.awards-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.award {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.award img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.award h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

.award p {
    font-size: 0.9em;
    color: #555;
}
.project-locations {
    background: #eef7ff;
    padding: 60px 20px;
    text-align: center;
}

.project-locations h2 {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
/* Responsive Design for Mobile Screens */
@media (max-width: 768px) {
    /* Hero Section */
    .experience-hero {
        padding: 40px 15px;
    }

    .experience-hero h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .experience-hero p {
        font-size: 1em;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Clients Section */
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Adjust column size for smaller screens */
        gap: 10px; /* Reduced gap for compact layout */
    }

    .client-logo img {
        max-width: 80px; /* Smaller logo size */
        padding: 5px;
    }

    /* Milestones Section */
    .milestone-timeline {
        flex-direction: column; /* Stack milestones vertically */
        gap: 15px;
    }

    .milestone {
        width: 90%; /* Reduce milestone card width */
        margin: 0 auto;
    }

    /* Testimonials Section */
    .testimonial-slider {
        gap: 10px;
    }

    .testimonial {
        padding: 15px;
        min-width: 250px;
        font-size: 0.9em; /* Reduce font size */
    }

    /* Call to Action Section */
    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 1.5em;
    }

    .cta-section p {
        font-size: 0.9em;
        max-width: 90%;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    /* Industry Expertise */
    .industry-grid {
        flex-direction: column; /* Stack industry items vertically */
        gap: 15px;
    }

    .industry {
        width: 90%; /* Adjust industry card width */
        margin: 0 auto;
    }

    .industry img {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .industry h3 {
        font-size: 1.1em;
    }

    .industry p {
        font-size: 0.8em;
    }

    /* Awards Section */
    .awards-grid {
        flex-direction: column; /* Stack awards vertically */
        gap: 15px;
    }

    .award {
        width: 90%; /* Adjust award card width */
        margin: 0 auto;
    }

    /* Project Locations */
    .project-locations {
        padding: 40px 15px;
    }

    .project-locations h2 {
        font-size: 1.5em;
    }

    .map-container iframe {
        height: 300px; /* Reduce map height for smaller screens */
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
}
