:root {
    --primary: #0066cc;
    --secondary: #003d7a;
    --accent: #00aeff;
    --dark: #1a1a1a;
    --light: #f4f7f6;
    --glass: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

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

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
    text-decoration: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px;
    transition: all 0.3s ease;
}

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

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

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

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--secondary);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero .highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-secondary {
    background: var(--glass);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.metrics {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.metric {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.metric label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.feature-card {
    padding: 40px;
    background: var(--light);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Quote */
.quote-section {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.quote-section blockquote {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 20px;
}

.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.bottom-bar {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 70px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        border-top: 1px solid #eee;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .metrics {
        flex-direction: column;
        gap: 20px;
    }

    .footer .container {
        grid-template-columns: 1fr;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Header (Generic) */
.page-header {
    background: var(--dark);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header .highlight {
    color: var(--accent);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background: var(--light);
}

.job-list {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-header h3 {
    color: var(--dark);
    font-size: 1.3rem;
}

.tag {
    background: #e6f0ff;
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.job-meta i {
    margin-right: 5px;
}

.btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 600px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.legal-block h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.legal-block p,
.legal-block li {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-block .small-print {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

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

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.placeholder-box {
    background: var(--light);
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    border: 2px dashed #ddd;
}

.placeholder-box span {
    font-size: 1.5rem;
    margin-top: 20px;
    color: var(--dark);
    font-weight: 700;
}

.values-section {
    margin-bottom: 100px;
    text-align: center;
}

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



.leadership-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.leader-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.leader-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.leader-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.leader-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-card blockquote {
    font-style: italic;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.board-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}