/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #0D3B66;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.logo img {
    width: 150px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFD700;
}

.cta-button {
    background-color: #FFD700;
    color: #0D3B66;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #FFAE00;
}

/* Hero Section */
.hero-section {
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 59, 102, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-button {
    background-color: #FFD700;
    color: #0D3B66;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #FFAE00;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-item {
    background-color: #fff;
    width: 350px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.accordion-item h3 {
    padding: 20px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.accordion-item h3::after {
    content: '\002B';
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.accordion-item.active h3::after {
    content: '\2212';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 36px;
    color: #0D3B66;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
}

.social-media {
    text-align: center;
}

.social-media a {
    font-size: 24px;
    color: #0D3B66;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #FFD700;
}

/* Footer Styles */
footer {
    background-color: #0D3B66;
    color: #fff;
    padding: 20px 0;
}

footer p {
    text-align: center;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #FFD700;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFAE00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background-color: #0D3B66;
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100% - 60px);
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 20px 0;
        text-align: center;
    }

    .cta-button {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .services-grid, .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
