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

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
    }

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

body.loading {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}/* 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;
    }

    /* identity section */

    

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

    .content-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .content-card p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .content-card p:last-child {
        margin-bottom: 0;
    }

    /* Gap Cards */
    .gap-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);
    }

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

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

    .gap-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Philosophy Cards */
    .philosophy-card {
        background: var(--white);
        border-radius: 16px;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .philosophy-icon {
        width: 70px;
        height: 70px;
        background: var(--accent-gold);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        color: var(--issi-gold);
        transition: transform 0.3s ease;
    }

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

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

    /* Work Cards */
    .work-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);
    }

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

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

    .work-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Quote Box */
    .quote-box {
        color: white !important;
        border-left: 4px solid var(--issi-gold);
        padding: 2rem;
        margin: 3rem 0;
    }

    .quote-box p {
        margin: 0;
        font-size: 1.2rem;
        font-style: italic;
    }

    /* CTA Cards */
    .cta-card {
        background: var(--white);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(212, 175, 55, 0.2);
        text-decoration: none;
        display: block;
        height: 100%;
    }

    .cta-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
        border-color: var(--issi-gold);
    }

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

    .cta-card h5 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .cta-card p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .cta-card .cta-link {
        color: var(--issi-gold);
        font-weight: 600;
        font-size: 0.9rem;
    }

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

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

    .bg-charcoal .section-title,
    .bg-charcoal .section-subtitle,
    .bg-charcoal .content-card,
    .bg-charcoal .gap-card,
    .bg-charcoal .philosophy-card,
    .bg-charcoal .work-card,
    .bg-charcoal .cta-card {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .section-title{
        background-color: transparent !important;
    }

    .bg-charcoal .content-card p,
    .bg-charcoal .section-subtitle,
    .bg-charcoal .gap-card p,
    .bg-charcoal .philosophy-card p,
    .bg-charcoal .work-card p {
        color: rgba(255, 255, 255, 0.8);
    }

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

    .bg-green .section-title,
    .bg-green .section-subtitle,
    .bg-green .content-card,
    .bg-green .gap-card,
    .bg-green .philosophy-card,
    .bg-green .work-card,
    .bg-green .cta-card {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .bg-green .content-card p,
    .bg-green .section-subtitle,
    .bg-green .gap-card p,
    .bg-green .philosophy-card p,
    .bg-green .work-card p {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Enhanced Typography */
    .display-line {
        position: relative;
        display: inline-block;
    }

    .display-line::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        height: 2px;
        background: var(--issi-gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .content-card:hover .display-line::after {
        transform: scaleX(1);
        transform-origin: left;
    }

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

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

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

