 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7fa;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #003087;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00a8cc;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00a8cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #008fb3;
}

.section {
    padding: 80px 50px;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #003087;
    font-weight: 700;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card svg {
    margin-bottom: 20px;
    fill: #00a8cc;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #003087;
}

.service-card p {
    color: #666;
}

.testimonials {
    background-color: #e9ecef;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-slide p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-slide h4 {
    font-size: 1.1em;
    color: #003087;
    font-weight: 600;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dots div {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dots div.active {
    background: #00a8cc;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-image img {
    max-width: 400px;
    border-radius: 10px;
}

.contact-form {
    max-width: 500px;
    text-align: left;
}

.contact-form p {
    margin-bottom: 20px;
    color: #555;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-details svg {
    margin-right: 10px;
    fill: #00a8cc;
}

.contact-details a {
    color: #00a8cc;
    text-decoration: none;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 12px 30px;
    background-color: #003087;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #002266;
}

footer {
    background-color: #003087;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.footer-socials a {
    margin: 0 10px;
    color: #fff;
    transition: color 0.3s;
}

.footer-socials a:hover svg {
    fill: #00a8cc;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #003087;
        flex-direction: column;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .section {
        padding: 40px 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-form {
        max-width: 100%;
    }
} 