: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%;
    }

        body.loading {
            overflow: hidden !important;
            height: 100vh;
            position: fixed;
            width: 100%;
        }
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
    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: var(--charcoal);
        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-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: 900px;
    }

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

    .section-badge {
        background: var(--accent-gold);
        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;
        letter-spacing: 0.5px;
    }

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

    .section-subtitle {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    /* Content Card */
    .content-card {
        background: var(--white);
        border-radius: 16px;
        padding: 3rem;
        margin-bottom: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    /* Contact Cards */
    .contact-card {
        background: var(--white);
        border-radius: 12px;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        background: var(--accent-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--issi-gold);
        margin-bottom: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
    }

    .contact-list li {
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
        position: relative;
    }

    .contact-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--issi-gold);
        font-weight: bold;
    }

    .btn-primary-custom {
        background: var(--issi-gold);
        color: var(--charcoal);
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary-custom:hover {
        background: #c19a2b;
        transform: translateY(-2px);
        color: var(--charcoal);
    }

    /* Social Media */
    .social-media {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: var(--accent-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--issi-gold);
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--issi-gold);
        color: var(--white);
        transform: translateY(-3px);
    }

    /* Modal Forms */
    .modal-content {
        border-radius: 16px;
        border: none;
    }

    .modal-header {
        background: var(--issi-green);
        color: var(--white);
        border-radius: 16px 16px 0 0;
        padding: 1.5rem 2rem;
    }

    .modal-title {
        color: var(--issi-gold);
        font-family: 'Playfair Display', serif;
    }

    .btn-close-white {
        filter: invert(1) grayscale(100%) brightness(200%);
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--charcoal);
    }

    .form-control,
    .form-select {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--issi-gold);
        box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    }

    /* Background Variations */
    .bg-charcoal {
        background-color: var(--charcoal);
        color: var(--white);
    }

    .bg-charcoal .section-title,
    .bg-charcoal .section-subtitle {
        color: var(--white);
    }

    .bg-green {
        background-color: var(--issi-green);
        color: var(--white);
    }

    .bg-green .section-title,
    .bg-green .section-subtitle {
        color: var(--white);
    }

    /* 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;
        }

        .content-card,
        .contact-card {
            padding: 2rem;
        }
    }