/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

/* Color variables */
:root {
    --navy-blue: #003087;
    --white: #FFFFFF;
    --gold: #FFD700;
    --dark-grey: #333;
    --light-grey: #f5f5f5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Main content */
main {
    margin-top: 90px; /* Account for fixed header */
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #001f5c 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.founded {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.services h2 {
    text-align: center;
    color: var(--navy-blue);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--dark-grey);
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    color: var(--navy-blue);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #001f5c 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    max-width: 400px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.contact-card p {
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--white);
}

/* Footer with scrolling quote */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 0;
}

.scrolling-quote {
    height: 50px;
    overflow: hidden;
    position: relative;
}

.quote-container {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 20s linear infinite;
}

.quote-text {
    white-space: nowrap;
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        margin: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .services, .contact {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services h2, .contact h2 {
        font-size: 2rem;
    }
} 