/* Custom Properties */
:root {
    --primary: #d35400;
    /* Vibrant orange */
    --primary-light: #e67e22;
    --secondary: #1f618d;
    /* Deep blue */
    --secondary-light: #2980b9;
    /* Vibrant blue */
    --dark: #2c3e50;
    --darker: #1a252f;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-main: #34495e;
    --text-muted: #7f8c8d;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--secondary-light);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-darker {
    background-color: var(--darker);
}

.text-white {
    color: var(--white) !important;
}

.text-white h2,
.text-white h3 {
    color: var(--white);
}

.text-primary {
    color: var(--primary);
}

.mt-4 {
    margin-top: 2rem;
}

.section-padding {
    padding: 80px 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--secondary-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--secondary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
    /* Offset for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 97, 141, 0.8) 0%, rgba(44, 62, 80, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

/* Operational Framework Grid */
.framework {
    position: relative;
    margin-top: -80px;
    z-index: 20;
    padding: 0 20px;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.framework-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.framework-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.primary-bg {
    background-color: var(--primary);
}

.secondary-bg {
    background-color: var(--secondary-light);
}

.tertiary-bg {
    background-color: #27ae60;
}

/* Subtle green for grow */

.framework-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.framework-card p {
    color: var(--text-muted);
}

/* Section Headings */
.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.accent-line {
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Mission Section */
.lead-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Focus Section */
.focus-intro {
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media(min-width: 768px) {
    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-item {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.focus-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.focus-icon {
    font-size: 2.5rem;
    color: var(--secondary-light);
    margin-bottom: 20px;
}

.focus-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--secondary);
}

/* Footer Details / Status */
.footer-details {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.status-col h3,
.contact-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.status-desc {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.status-list {
    list-style: none;
}

.status-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.status-list i {
    margin-top: 5px;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    color: var(--primary);
}

/* Site Footer */
.site-footer {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .framework-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 1.8rem;
    }
}