/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.header {
    background-image: url('header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem 1rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

.tagline {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 400px;
    text-align: center;
}

.header-cta {
    margin: 1.5rem auto 0;
    text-align: center;
}

.header-cta .cta-btn {
    background: #007bff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.header-cta .cta-btn:hover {
    background: #0056b3;
}

.header.scrolled {
    background: #ffffff;
    padding: 0.5rem 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 1rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 1rem 0;
    width: 100%;
    transition: all 0.3s ease;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 1rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 100;
    background-color: rgba(10, 36, 99, 0.7);
    border-radius: 4px;
}

.logo {
    height: 120px;
    margin-right: 2rem;
}

.hero {
    min-height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5% 5%;
    background: linear-gradient(rgba(10, 36, 99, 0.15), rgba(10, 36, 99, 0.15)), url('Gemini_Generated_Image_d82hvzd82hvzd82h.png');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.hero-tagline {
    font-size: 3rem;
    text-align: center;
    margin: -1.125rem auto 2rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s;
    gap: 8px;
    font-size: 1.32rem;
    max-width: 200px;
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    background: #27ae60;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.list-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Service Section */
.section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: calc(50% - 1.5rem);
    margin: 0;
}

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

.service-item svg {
    display: block;
    margin: 0 auto 1.5rem;
    width: 48px;
    height: 48px;
}

.service-item h3 {
    color: #0a2463;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.service-item p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

/* Reviews Section */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: calc(50% - 1rem);
}

.review-item svg {
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
}

.review-item cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* Contact Section */
.contact-info {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.contact-item svg {
    margin-right: 1rem;
    fill: #333;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.contact-item div {
    flex: 1;
}

.contact-item p {
    margin: 0.5rem 0;
}

#contact .contact-item svg {
    fill: #333;
}

#contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0a2463;
    font-size: 2.2rem;
}

/* Footer */
.footer {
    padding: 3rem 5%;
    background: #0a2463;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a svg {
    transition: fill 0.3s;
    width: 24px;
    height: 24px;
}

.social-links a:hover svg {
    fill: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .header-cta {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 200px;
        padding: 1rem;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #0a2463;
        flex-direction: column;
        align-items: center;
        padding: 4rem 0 1rem;
        height: 100vh;
        z-index: 90;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        color: white;
        padding: 0.8rem;
        display: block;
        font-size: 1.4rem;
    }

    .hamburger {
        display: block;
        z-index: 100;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem;
    }
    
    .hero-tagline {
        font-size: 2rem;
        margin-top: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.2rem;
        text-align: center;
    }

    .btn {
        padding: 10px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item svg {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 150px;
    }
    
    .logo {
        height: 80px;
        margin-right: 0;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .about-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}
