:root {
    /* Brand Colors */
    --company-blue:      #3f7fff;
    --company-mid-blue:  #1f4f9f;
    --company-dark-blue: #1f3f7f;
}

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

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--company-blue);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.company-logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Capabilities Section */
.capabilities {
    background: linear-gradient(135deg, var(--company-dark-blue) 0%, var(--company-mid-blue) 100%);
    color: white;
    padding: 120px 2rem 80px;
    text-align: center;
    margin-top: 60px;
}

.capabilities h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.capabilities p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--company-dark-blue);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--company-dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--company-dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
.about {
    background: #f8f9fa;
    padding: 80px 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--company-dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--company-dark-blue);
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}

/* Partners/Logos Section */
.agencies {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 2rem;
}

.partners {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 2rem;
}

.organizations-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.organizations-section h3 {
    color: var(--company-dark-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.logo-item img {
    max-width: 180px;
    max-height: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.organization-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin: 0;
}

.organization-desc strong {
    color: var(--company-dark-blue);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    font-size: 2rem;
    color: var(--company-dark-blue);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 80px;
}

footer a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 480px) {
    .capabilities h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .capabilities p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    nav {
        padding: 0 1rem;
    }

    nav ul {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .logo img {
        height: 40px;
    }

    .company-logo-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-info {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .capabilities h1 {
        font-size: 2rem;
    }

    .capabilities p {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-item {
        padding: 1rem;
    }

    .organizations-section {
        padding: 2rem 1rem;
    }
}

@media (min-width: 1440px) {
    .capabilities h1 {
        font-size: 3.5rem;
    }

    .capabilities p {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .services,
    .contact {
        max-width: 1400px;
    }

    .about-content {
        max-width: 1400px;
    }
}
