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

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: #0a1a2f; /* Deep navy */
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #ffd700; /* Gold */
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #0a1a2f;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 26, 47, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.sticky-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ffd700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    font-weight: 600;
    color: #fff;
}

nav ul li a:hover {
    color: #ffd700;
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.section-hero {
    height: 100vh;
    background: url('images/hero-split-epic.jpg') no-repeat center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 26, 47, 0.8), rgba(10, 26, 47, 0.6));
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Credibility Bar */
.section-credibility {
    padding: 60px 0;
    background: #1a2b4a;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.credibility-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.credibility-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.credibility-item span {
    display: block;
    font-size: 1.5rem;
    color: #ffd700;
}

.credibility-item p {
    font-size: 1rem;
    margin-top: 5px;
}

.credibility-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.credibility-logos img {
    height: 50px;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: opacity 0.3s ease;
}

.credibility-logos img:hover {
    opacity: 1;
}

/* Flagship Service */
.section-flagship {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a1a2f, #1a2b4a);
    text-align: center;
}

.section-flagship h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-flagship p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.section-flagship ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.section-flagship ul li {
    margin: 15px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-flagship ul li i {
    color: #ffd700;
    font-size: 1.5rem;
}

.flagship-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

/* Capabilities Grid */
.section-capabilities {
    padding: 80px 0;
    background: url('images/capabilities-matrix-bg.jpg') no-repeat center/cover fixed;
}

.section-capabilities h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.capability-item {
    background: rgba(10, 26, 47, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.capability-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.capability-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.capability-item p {
    font-weight: 300;
}

/* Who We Serve */
.section-who-we-serve {
    padding: 80px 0;
    background: #0a1a2f;
}

.section-who-we-serve h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
}

.who-we-serve-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.column-left, .column-right {
    flex: 1;
}

.column-left ul {
    list-style: none;
}

.column-left ul li {
    margin: 20px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.column-left ul li i {
    color: #ffd700;
    font-size: 1.5rem;
}

.column-right p {
    font-weight: 300;
    margin-bottom: 20px;
}

.who-we-serve-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us */
.section-why-us {
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a2b4a, #0a1a2f);
}

.section-why-us h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
}

.why-us-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.why-us-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-us-item p {
    font-weight: 300;
}

.why-us-image {
    max-width: 100%;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Engagement Process */
.section-engagement {
    padding: 80px 0;
    background: url('images/engagement-timeline.jpg') no-repeat center/cover fixed;
}

.section-engagement h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.engagement-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    background: rgba(10, 26, 47, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step span {
    display: block;
    font-size: 3rem;
    color: #ffd700;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step p {
    font-weight: 300;
}

/* Urgency Statement */
.section-urgency {
    padding: 80px 0;
    background: url('images/urgency-storm-epic.jpg') no-repeat center/cover fixed;
    text-align: center;
}

.section-urgency h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-urgency p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    font-size: 1.2rem;
}

/* CTA Footer */
.section-cta-footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2f, #1a2b4a);
    text-align: center;
}

.section-cta-footer h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-cta-footer p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Footer */
.section-footer {
    padding: 60px 0 40px;
    background: #0a1a2f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-info, .footer-form {
    flex: 1;
    min-width: 300px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: #ffd700;
}

.footer-form h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-form input, .footer-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.footer-form textarea {
    height: 150px;
    resize: vertical;
}

.footer-form button {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ffd700;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .who-we-serve-content {
        flex-direction: column;
    }

    .engagement-steps {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .sticky-header .container {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        gap: 10px;
    }

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

    .capabilities-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }
}