:root {
    --deep-blue: #0A192F;
    --navy-blue: #112240;
    --emerald-green: #10B981;
    --gold: #D4AF37;
    --text-light: #E2E8F0;
    --text-dim: #94A3B8;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--deep-blue);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.logo span { color: var(--emerald-green); }

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
}

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

/* Hero Section */
.hero-about {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #112240 0%, var(--deep-blue) 70%);
    text-align: center;
}

.hero-about h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--white), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-about p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content Styles */
main {
    padding-bottom: 80px;
}

.story-section {
    padding: 80px 0;
}

.story-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.mv-card {
    background: var(--navy-blue);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

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

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--emerald-green);
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border-bottom: 4px solid var(--gold);
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-dim);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--navy-blue), var(--deep-blue));
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 40px;
}

.cta-section h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { margin-bottom: 30px; opacity: 0.8; }

.btn-gold {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--gold);
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dim);
}


/* Utility Animations */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    padding: 20px;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-green), transparent);
    z-index: 0;
    opacity: 0.2;
}

.process-card {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--navy-blue);
    border: 2px solid var(--emerald-green);
    color: var(--emerald-green);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover .step-num {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    background: var(--emerald-green);
    color: var(--navy-blue);
}

.process-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Above the menu */
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 25, 47, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        margin: 0;
        padding: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    h1 { font-size: 2.5rem; }
    .content-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }

    .hero-about {
        padding: 100px 0 60px;
    }

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

    .mv-card, .service-card, .process-card, .value-item {
        padding: 30px 20px;
        text-align: center;
    }
    
    .hero-btns {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .logo { font-size: 1.5rem; }
    .hero-about h1 { font-size: 2rem; }
    .btn-gold { width: 100%; text-align: center; }
}
