:root {
    --charcoal: #0A0A0A;
    --deep-grey: #2D2D2D;
    --issi-gold: #fcca46;
    --issi-green: #1A3C32;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --accent-gold: rgba(212, 175, 55, 0.1);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A3C32 100%);
}

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

    body {
        font-family: 'Inter', sans-serif;
        color: var(--charcoal);
        line-height: 1.7;
        overflow-x: hidden;
        background-color: var(--light-bg);
        margin: 0;
            padding: 0;
            width: 100%;
    }

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
    }
/* Loader Wrapper */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide Animation */
.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

/* Branding Section */
.loader-wrapper>div:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

/* Logo */
.loader-logo {
    width: 60px;
    height: auto;
}

/* Organization Name */
.loader-wrapper span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

/* Loader Container */
.loader {
    width: 90px;
    height: 90px;
    position: relative;
}

/* Circle Spin */
.loader-circle {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(212, 175, 55, 0.15);
    border-top-color: var(--issi-gold);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

/* Center Icon (Optional) */
.loader-icon {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    color: var(--issi-gold);
    font-size: 1.5rem;
    opacity: 0.85;
}

/* Smooth Rotation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

    /* Navbar */
    .navbar {
        padding: 1.5rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .navbar-brand {
        font-weight: 800;
        font-size: 1.8rem;
        color: var(--issi-gold) !important;
        letter-spacing: -0.5px;
    }

    .nav-link {
        color: var(--white) !important;
        font-weight: 500;
        margin: 0 0.8rem;
        padding: 0.5rem 0 !important;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--issi-gold);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
    }

    /* Hero Section */
    .hero-section {
        min-height: 60vh;
        display: flex;
        align-items: center;
        background: var(--issi-green);
        position: relative;
        overflow: hidden;
        padding-top: 100px;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(26, 60, 50, 0.1) 0%, transparent 50%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: var(--white);
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        font-weight: 300;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 800px;
    }

    /* Section Styles */
    section {
        padding: 6rem 0;
    }

    .section-badge {
        background: rgba(212, 175, 55, 0.1);
        color: var(--issi-gold);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--charcoal);
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--deep-grey);
        margin-bottom: 3rem;
        max-width: 900px;
    }

    /* Pillar Cards */
    .pillar-card {
        background: var(--white);
        border-radius: 16px;
        padding: 3rem;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

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

    .pillar-icon {
        width: 80px;
        height: 80px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        font-size: 2.2rem;
        color: var(--issi-gold);
        transition: transform 0.3s ease;
    }

    .pillar-card:hover .pillar-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .pillar-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .pillar-card .subtitle {
        color: var(--issi-gold);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .pillar-card p {
        color: var(--deep-grey);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .btn-learn-more {
        background: var(--issi-gold);
        color: var(--charcoal);
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-learn-more:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        color: var(--charcoal);
    }

    /* List Items */
    .pillar-list {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .pillar-list li {
        padding: 0.5rem 0;
        padding-left: 2rem;
        position: relative;
        color: var(--deep-grey);
    }

    .pillar-list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--issi-gold);
        font-weight: 600;
    }

    /* Connection Box */
    .connection-box {
        background: var(--white);
        border-left: 4px solid var(--issi-green);
        padding: 2rem;
        margin: 3rem 0;
    }

    .connection-box p {
        margin: 0;
        font-size: 1.1rem;
        font-style: italic;
        color: var(--charcoal);
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--charcoal) 0%, var(--issi-green) 100%);
        color: var(--white);
        padding: 5rem 0;
    }

    .cta-section h2 {
        color: var(--white);
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        background: var(--charcoal);
        color: var(--white);
        padding: 4rem 0 2rem;
        position: relative;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--issi-gold), transparent);
    }

    footer h3 {
        color: var(--issi-gold);
    }

    footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--issi-gold);
    }

    /* Responsive */
    @media (max-width: 768px) {
        section {
            padding: 4rem 0;
        }

        .hero-section {
            min-height: 50vh;
        }

        .pillar-card {
            padding: 2rem;
        }
    }

    @media (max-width: 576px) {
        .btn-learn-more {
            width: 100%;
            justify-content: center;
        }
    }

