/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; /* Modern primary font */
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1a3c6d;
    color: #fff;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 90px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    max-height: 95px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif; /* Modern font for navigation */
    font-weight: 600;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #f4b400;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section with Slider */
#hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide.active {
    opacity: 1;
}

.slide .container {
    z-index: 2;
}

.slide h1 {
    font-family: 'Poppins', sans-serif; /* Modern font for headings */
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: #f4b400;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.cta-button:hover {
    background: #d89e00;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
    background: #f4b400;
}

/* Services Section */
#services {
    padding: 50px 20px;
    background: #f9f9f9;
}

#services h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* About Section */
#about {
    padding: 50px 20px;
    text-align: center;
}

#about h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#about p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Testimonials Section */
#testimonials {
    padding: 50px 20px;
    background: #f9f9f9;
}

#testimonials h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.testimonial .author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 1rem;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    text-align: center;
}

#contact h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact input,
#contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#contact textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
footer {
    background: #1a3c6d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

footer .social-links a:hover {
    color: #f4b400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #hero {
        height: 400px;
    }

    .slide h1 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }

    .logo-img {
        max-height: 60px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #1a3c6d;
        padding: 20px;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    #hero {
        height: 350px;
    }

    .slide h1 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 0.9rem;
    }

    .slider-prev, .slider-next {
        padding: 8px;
        font-size: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    header {
        height: 50px;
    }

    .logo-img {
        max-height: 40px;
    }

    #hero {
        height: 300px;
    }

    .slide h1 {
        font-size: 1.5rem;
    }

    .slide p {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    #services h2, #about h2, #testimonials h2, #contact h2 {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}