﻿:root {
    --gold: #b18032;
    --gold-light: #d4a54a;
    --gold-pale: #f5ecd4;
    --dark: #0e0e0e;
    --dark2: #1a1a1a;
    --dark3: #2a2a2a;
    --white: #ffffff;
    --off-white: #f9f6f0;
    --grey: #888;
    --text: #2c2c2c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== HERO ===== */
#hero {
    /*  min-height: 100vh; */
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(177,128,50,0.06) 0%, transparent 70%), repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(177,128,50,0.02) 60px, rgba(177,128,50,0.02) 61px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(177,128,50,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(177,128,50,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto;
    padding: 12px 61px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(177,128,50,0.08);
    border: 1px solid rgba(177,128,50,0.2);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

    .hero-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-headline {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(35px, 0vw, 80px);
    font-weight: 600;
   line-height: 1.0;
    color: rgb(10 8 9) !important;
}

    .hero-headline .accent {
        color: var(--gold);
        font-style: italic;
    }

.hero-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    max-width: 500px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-note {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-growth {
    font-size: 13px;
    line-height: 1.8;
    color: var(--dark);
    max-width: 500px;
    margin-bottom: 36px;
    font-style: italic;
    border-left: 3px solid var(--gold);
    background: rgba(177,128,50,0.03);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--white);
    padding: 3px 16px;
    /* padding: 16px 36px; */
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-primary-gold:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(177,128,50,0.3);
    }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    padding: 2px 9px;
    border: 1.5px solid var(--gold);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-outline-gold:hover {
        background: rgba(177,128,50,0.05);
    }

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.hero-card-main {
    background: var(--white);
    border: 1px solid rgba(177,128,50,0.15);
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    height: 450px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card-main h3 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-stat {
    text-align: center;
    padding: 16px;
    background: rgba(177,128,50,0.05);
    border-radius: 8px;
}

    .mini-stat .num {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 30px;
        font-weight: 700;
        color: var(--gold);
        display: block;
    }

    .mini-stat .lbl {
        font-size: 11px;
        color: #777;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.hero-badge {
    background: rgba(177,128,50,0.05);
    border: 1px solid rgba(177,128,50,0.15);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

    .hero-badge i {
        color: var(--gold);
        font-size: 20px;
    }

    .hero-badge p {
        color: #555;
        font-size: 14px;
        font-style: italic;
        font-weight:bold;
    }


.btn-primary-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(177,128,50,0.4);
}

.btn-outline-gold:hover {
    background: rgba(177,128,50,0.1);
}


.hero-card-main {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(177,128,50,0.2);
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    backdrop-filter: blur(10px);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card-main h3 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-stat {
    text-align: center;
    padding: 16px;
    background: rgba(177,128,50,0.08);
    border-radius: 8px;
}

    .mini-stat .num {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 30px;
        font-weight: 700;
        color: var(--gold);
        display: block;
    }

    .mini-stat .lbl {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.hero-badge {
    background: rgba(177,128,50,0.15);
    border: 1px solid rgba(177,128,50,0.3);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

    .hero-badge i {
        color: var(--gold);
        font-size: 20px;
    }

    .hero-badge p {
        color: rgb(177 128 50);
        font-size: 13px;
        font-style: italic;
    }

/* ===== COMMUNITY IMPACT (STATS) ===== */
#stats {
    background: var(--gold);
    padding: 12px 40px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stats-heading {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.stat-item {
    background: rgba(255,255,255,0.15);
    padding: 36px 20px;
    transition: background 0.3s;
}

    .stat-item:hover {
        background: rgba(255,255,255,0.25);
    }

.stat-num {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 56px !important;
    font-weight: bold;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(14,14,14,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ===== ABOUT ===== */
#about {
    background: var(--off-white);
    padding: 40px 40px;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-tag::before {
        content: '';
        width: 30px;
        height: 1.5px;
        background: var(--gold);
    }

.section-heading {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(25px, 4vw, 45px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark);
}

    .section-heading .italic {
        font-style: italic;
        color: var(--gold);
    }

.about-body p {
    font-size: 13px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 5px;
}

.about-highlight {
    border-left: 3px solid var(--gold);
    padding: 9px 20px;
    background: rgba(177,128,50,0.05);
    margin: 16px 0;
    /* font-family: MATH; */
    font-size: 14px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

    .about-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 220px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -10px -10px 40px rgba(0,0,0,0.1);
}

    .about-img-secondary .big-num {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 60px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1;
    }

    .about-img-secondary p {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(14,14,14,0.7);
        margin-top: 8px;
    }

/* ===== PURPOSE MISSION VISION ===== */
#purpose {
    background: var(--dark);
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
}

    #purpose::before {
        content: 'GIL';
        position: absolute;
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 300px;
        font-weight: 700;
        color: rgba(177,128,50,0.04);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        letter-spacing: 20px;
    }

.purpose-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .purpose-inner .section-tag {
        justify-content: center;
    }

    .purpose-inner .section-heading {
        color: var(--white);
    }

.pmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(177,128,50,0.15);
    border-radius: 12px;
    overflow: hidden;
}

.pmv-card {
    background: rgba(255,255,255,0.03);
    padding: 10px 10px;
    text-align: left;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

    .pmv-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .pmv-card:hover {
        background: rgba(177,128,50,0.08);
    }

        .pmv-card:hover::before {
            transform: scaleX(1);
        }

.pmv-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(177,128,50,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 18px;
}

.pmv-card h3 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
}

.pmv-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}

/* ===== CORE VALUES ===== */
#values {
    background: var(--off-white);
    padding: 5px 17px;
}

.values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.value-card {
    background: var(--white);
    border: 1px solid rgba(177,128,50,0.15);
    border-radius: 10px;
    padding: 8px 9px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

    .value-card:hover {
        background: var(--dark);
        border-color: var(--gold);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: var(--gold);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: rgba(177,128,50,0.2);
}

.value-card h4 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.value-card:hover h4 {
    color: var(--gold);
}

.value-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #777;
    transition: color 0.3s;
}

.value-card:hover p {
    color: rgba(255,255,255,0.6);
}

/* ===== GIL EXPERIENCE ===== */
#experience {
    background: var(--white);
    padding: 0px 15px;
}

.experience-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.exp-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    transition: all 0.3s;
    background: #f5ecd4;
}

    .exp-card:hover {
        border-color: var(--gold);
        box-shadow: 0 12px 40px rgba(177,128,50,0.1);
        transform: translateY(-4px);
    }

.exp-num {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 60px;
    font-weight: 700;
    color: rgb(177 128 50 / 57%);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.3s;
}

.exp-card:hover .exp-num {
    color: rgba(177,128,50,0.4);
}

.exp-content h3 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.exp-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ===== HOW IT WORKS + LEADERSHIP ===== */
#how {
    background: var(--dark2);
    padding: 40px 40px;
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-content .section-heading {
    color: var(--white);
}

.how-list {
    list-style: none;
    margin: 36px 0;
}

    .how-list li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 14px;
        color: rgba(255,255,255,0.65);
        line-height: 1.6;
    }

        .how-list li:last-child {
            border-bottom: none;
        }

.check {
    width: 24px;
    height: 24px;
    background: rgba(177,128,50,0.15);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 11px;
}

.how-note {
    font-style: italic;
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.how-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.how-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(177,128,50,0.15);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

    .how-box:hover {
        background: rgba(177,128,50,0.1);
        border-color: var(--gold);
    }

    .how-box i {
        font-size: 28px;
        color: var(--gold);
        margin-bottom: 14px;
        display: block;
    }

    .how-box h4 {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 18px;
        color: var(--white);
        margin-bottom: 8px;
    }

    .how-box p {
        font-size: 14px;
        color: rgba(255,255,255,0.45);
        line-height: 1.6;
    }

/* ===== CHAPTERS ===== */
#chapters {
    background: var(--off-white);
    padding: 40px 40px;
}

.chapters-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .chapters-inner .section-tag {
        justify-content: center;
    }

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.chapter-card {
    background: var(--white);
    border-radius: 12px;
    padding: 7px 3px;
    text-align: center;
    border: 1px solid rgba(177,128,50,0.1);
    transition: all 0.3s;
    cursor: default;
}

    .chapter-card:hover {
        background: var(--dark);
        transform: translateY(-10px);
        box-shadow: 0 24px 48px rgba(0,0,0,0.12);
        border-color: var(--gold);
    }

.chapter-pin {
    font-size: 36px;
    margin-bottom: 16px;
}

.chapter-card h3 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.chapter-card:hover h3 {
    color: var(--gold);
}

.chapter-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #888;
    transition: color 0.3s;
}

.chapter-card:hover p {
    color: rgba(255,255,255,0.5);
}

.chapter-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 11px 14px;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.chapter-card:hover .chapter-tag {
    background: rgba(177,128,50,0.2);
    color: var(--gold-light);
}

/* ===== WHY JOIN GIL ===== */
#why {
    background: var(--gold);
    padding: 100px 40px;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 8px;
}

.why-content .sub {
    font-style: italic;
    font-size: 16px;
    color: rgba(14,14,14,0.65);
    margin-bottom: 36px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(14,14,14,0.1);
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    transition: padding-left 0.3s;
}

    .why-item:last-child {
        border-bottom: none;
    }

    .why-item:hover {
        padding-left: 10px;
    }

.why-check {
    width: 28px;
    height: 28px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
}

.why-right {
    background: var(--dark);
    border-radius: 16px;
    padding: 50px 40px;
}

    .why-right h3 {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 28px;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .why-right p {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        line-height: 1.8;
        margin-bottom: 16px;
    }

.why-bullets {
    list-style: none;
    margin-top: 20px;
}

    .why-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        margin-bottom: 12px;
        line-height: 1.6;
    }

        .why-bullets li i {
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 3px;
        }

/* ===== PHILOSOPHY SECTION ===== */
#philosophy {
    background: var(--white);
    padding: 22px 40px;
    text-align: center;
}

.philosophy-inner {
    max-width: 800px;
    margin: 0 auto;
}

    .philosophy-inner .section-tag {
        justify-content: center;
    }

.philosophy-quote {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--dark);
    margin: 40px 0;
}

    .philosophy-quote .gold {
        color: var(--gold);
        font-weight: 600;
    }

.philosophy-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0;
}

.pill {
    padding: 10px 24px;
    border: 1.5px solid rgba(177,128,50,0.3);
    border-radius: 100px;
    font-size: 13px;
    color: var(--gold);
    background: rgba(177,128,50,0.05);
    transition: all 0.3s;
    cursor: default;
}

    .pill:hover {
        background: var(--gold);
        color: var(--dark);
        font-weight: 600;
    }

.philosophy-end {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 22px;
    font-style: italic;
    color: var(--dark);
    margin-top: 36px;
}

    .philosophy-end strong {
        color: var(--gold);
        font-style: normal;
        font-weight: 700;
    }

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--dark);
    padding: 40px 40px;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .testimonials-inner .section-tag {
        justify-content: center;
    }

    .testimonials-inner .section-heading {
        color: var(--white);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(177,128,50,0.15);
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s;
}

    .testi-card:hover {
        background: rgba(177,128,50,0.07);
        border-color: rgba(177,128,50,0.4);
    }

.testi-quote-mark {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 80px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 24px;
    opacity: 0.6;
}

.testi-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 21px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.testi-info {
    font-size: 12px;
    color: var(--gold);
    margin-top: 2px;
}

/* ===== FINAL CTA ===== */
#cta {
    background: var(--off-white);
    padding: 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(177,128,50,0.08), transparent);
    }

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

    .cta-inner .section-tag {
        justify-content: center;
    }

.cta-heading {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(42px, 3vw, 52px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 12px;
}

    .cta-heading .italic {
        font-style: italic;
        color: var(--gold);
    }

.cta-body {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 21px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
#contact {
    background: var(--white);
    padding: 40px 40px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-heading {
    margin-bottom: 21px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: border-color 0.3s;
}

    .contact-item:hover {
        border-color: var(--gold);
    }

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item a, .contact-item p {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
}

.contact-form-wrap {
    background: var(--off-white);
    border-radius: 12px;
    padding: 40px;
}

    .contact-form-wrap h3 {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 28px;
        color: var(--dark);
        margin-bottom: 28px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

    .form-group label {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #888;
    }

    .form-group input, .form-group textarea {
        padding: 12px 16px;
        border: 1.5px solid #e0e0e0;
        border-radius: 6px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        background: var(--white);
        transition: border-color 0.3s;
        outline: none;
        resize: none;
    }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--gold);
        }

.form-submit {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

    .form-submit:hover {
        background: var(--gold);
        color: var(--dark);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    padding: 15px 10px 7px;
    color: rgba(255,255,255,0.5);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

    .footer-logo span {
        color: var(--white);
        font-weight: 300;
    }

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

    .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

            .footer-col ul li a:hover {
                color: var(--gold);
            }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 12px;
}

.footer-tagline {
    /* font-family: 'Cormorant Garamond', serif; */
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 17px 5px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner, .how-inner, .why-inner, .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-stack {
        height: 250px;
    }

    .pmv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }

    .chapters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .values-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }

    .how-visual {
        display: none;
    }
}

@media (max-width: 600px) {
    #hero, #about, #purpose, #values, #experience, #how, #chapters, #why, #philosophy, #testimonials, #cta, #contact {
        padding: 6px 25px;
        /* padding: 70px 20px; */
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .chapters-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 50px 20px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ========== RESPONSIVE (MOBILE VIEW) ========== */
@media screen and (max-width: 768px) {
    #hero {
        padding: 2rem 1.2rem;
    }

    .hero-inner {
        flex-direction: column;
        gap: 2.2rem;
    }

    .hero-left {
        text-align: left;
        width: 100%;
    }

    .hero-headline {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
/*        letter-spacing: -0.01em;*/
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 1.2rem;
    }

    .hero-divider {
        width: 55px;
        margin: 1rem 0 1rem 0;
    }

    .hero-btns {
        gap: 6px;
        justify-content: flex-start;
    }
    /* .btn-primary-gold, .btn-outline-gold { */
    /*     padding: 0.7rem 1.6rem; */
    /*     font-size: 0.85rem; */
    /* } */

    .hero-badge {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }

        .hero-badge i {
            font-size: 1.3rem;
        }

        .hero-badge p {
            font-size: 0.78rem;
        }

    .hero-card-main {
        padding: 0.6rem;
        border-radius: 24px;
    }

        .hero-card-main h3 {
            font-size: 0.95rem;
            margin-bottom: 0.7rem;
        }

    .image-wrapper {
        border-radius: 18px;
    }
    /* ensure image container respects aspect ratio on all devices */
    .hero-card-main .image-wrapper {
        line-height: 0;
    }
}

    @media (max-width: 900px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .stat-item {
            padding: 20px 10px;
        }

        .stat-num {
            font-size: 40px;
        }
    }

    @media (max-width: 600px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 900px) {
        .about-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-image-stack {
/*            height: 350px;
            margin-bottom: 20px;*/
        }

        .about-img-main {
            height: 280px;
            width:100%;
        }

        .about-img-secondary {
            height: 150px;
        }

            .about-img-secondary .big-num {
                font-size: 40px;
            }
    }

    @media (max-width: 900px) {
        #leadership div[style*="grid-template-columns: repeat(3, 1fr)"] {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 20px !important;
        }
    }

    @media (max-width: 600px) {
        #leadership div[style*="grid-template-columns: repeat(3, 1fr)"] {
            grid-template-columns: 1fr !important;
        }
    }

    @media (max-width: 900px) {
        .footer-top {
            grid-template-columns: 1fr 1fr !important;
            gap: 30px !important;
        }
    }

    @media (max-width: 600px) {
        .footer-top {
            grid-template-columns: 1fr !important;
            gap: 25px !important;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
    }
    /* Mobile styles */
    @media screen and (max-width: 768px) {
        #philosophy-gil {
            padding: 30px 20px !important;
        }

            #philosophy-gil .section-tag {
                font-size: 10px !important;
                gap: 5px !important;
            }

            #philosophy-gil h2 {
                font-size: 32px !important;
            }

            #philosophy-gil div[style*="grid-template-columns: repeat(3, 1fr)"] {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            #philosophy-gil div[style*="border-radius: 16px"] {
                padding: 30px 20px !important;
            }

            #philosophy-gil div[style*="width: 70px"] {
                width: 60px !important;
                height: 60px !important;
            }

            #philosophy-gil i[style*="font-size: 30px"] {
                font-size: 24px !important;
            }

            #philosophy-gil h3 {
                font-size: 20px !important;
            }

            #philosophy-gil p {
                font-size: 13px !important;
            }
    }

    @media screen and (max-width: 480px) {
        #philosophy-gil {
            padding: 25px 15px !important;
        }

            #philosophy-gil h2 {
                font-size: 28px !important;
            }

            #philosophy-gil div[style*="border-radius: 16px"] {
                padding: 25px 15px !important;
            }

            #philosophy-gil div[style*="width: 70px"] {
                width: 50px !important;
                height: 50px !important;
            }

            #philosophy-gil i[style*="font-size: 30px"] {
                font-size: 20px !important;
            }

            #philosophy-gil h3 {
                font-size: 18px !important;
            }

            #philosophy-gil p {
                font-size: 12px !important;
            }
    }

    @media screen and (min-width: 481px) and (max-width: 768px) {
        #philosophy-gil div[style*="grid-template-columns: repeat(3, 1fr)"] {
            grid-template-columns: repeat(2, 1fr) !important;
        }

            #philosophy-gil div[style*="grid-template-columns: repeat(3, 1fr)"] > div:last-child {
                grid-column: span 2 !important;
            }
    }



/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ===== SECTION GAP FIXES ===== */
#hero-slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block;
    position: relative;
    width: 100%;
}

/* Remove any possible gaps after slider */
section:first-of-type {
    margin-top: 0;
}

/* ===== HERO SLIDER STYLES (FULLY FIXED FOR MOBILE) ===== */
#hero-slider {
    position: relative;
    width: 100%;
    height: 85vh; /* fallback */
    min-height: 520px;
    overflow: hidden;
    background-color: #1a1a1a;
    z-index: 5;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Desktop ke liye */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.8s ease-in-out;
}

@media (max-width: 425px) {
    .slide {
        background-size: contain !important;
        background-position: center !important;
/*        background-color: #000; */
    }

        .slide::before {
            height: 20px;
            background: linear-gradient( to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100% );
        }
}

/* Dark overlay for better text readability on all devices */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.2) 100%);*/
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Slide content - fully responsive, properly centered for mobile/tablet */
.slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 20;
    color: var(--white);
    max-width: 680px;
    width: 35%;
    padding: 1.5rem 1.2rem;
    text-align: left;
    backdrop-filter: blur(0px);
    border-radius: 0;
    animation: fadeInUp 0.9s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 20px));
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.slider-headline {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(30px, 6vw, 31px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.65rem;
    color: var(--white) !important;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

    .slider-headline .accent {
        color: var(--gold);
        font-style: italic;
        font-weight: 700;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }

.slider-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(15px, 4vw, 20px);
    line-height: 1.5;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Button group responsive styling */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.btn-primary-gold, .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 16px);
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary-gold {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: #0a0a0a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    .btn-primary-gold:hover {
        background-color: transparent;
        color: var(--gold);
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--white);
    backdrop-filter: blur(4px);
}

    .btn-outline-gold:hover {
        background-color: var(--gold);
        color: #0a0a0a;
        border-color: var(--gold);
        transform: translateY(-2px);
    }

/* Slider Navigation Arrows - mobile friendly */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 160, 61, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    z-index: 35;
    transition: all 0.25s;
    padding: 0;
    line-height: 1;
    font-weight: 300;
}

    .slider-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--dark);
        transform: translateY(-50%) scale(1.05);
    }

    .slider-arrow.prev {
        left: 16px;
    }

    .slider-arrow.next {
        right: 16px;
    }

/* Slider Dots - repositioned for better mobile experience */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 35;
    background: rgba(0,0,0,0.3);
    padding: 8px 14px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}

    .dot.active {
        background-color: var(--gold);
        transform: scale(1.3);
        box-shadow: 0 0 6px rgba(201, 160, 61, 0.6);
    }

/* Hide any leftover overlay from old markup */
.slide-overlay {
    display: none !important;
}

/* ---- RESPONSIVE FIXES (Mobile & Tablet) ---- */
@media (max-width: 1024px) {
    .slider-headline {
        font-size: clamp(20px, 6vw, 30px);
    }

    .slider-sub {
        font-size: clamp(14px, 3.8vw, 17px);
    }

    .hero-btns {
        gap: 0.9rem;
    }

    .btn-primary-gold, .btn-outline-gold {
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 768px) {
    #hero-slider {
        height: 70vh;
        min-height: 480px;
    }

    .slide-content {
        left: 4%;
        width:35%;
        padding: 1rem 0.8rem;
        top: 50%;
    }

    .slider-headline {
        font-size: clamp(16px, 6vw, 25px);
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .slider-sub {
        font-size: clamp(13px, 3.5vw, 16px);
        margin-bottom: 0.5rem;
    }

    .hero-btns {
        margin-top: 0.2rem;
        gap: 0.8rem;
    }

    .btn-primary-gold, .btn-outline-gold {
        padding: 0.6rem 1.3rem;
        font-size: 13px;
        white-space: nowrap;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

        .slider-arrow.prev {
            left: 8px;
        }

        .slider-arrow.next {
            right: 8px;
        }

    .slider-dots {
        bottom: 16px;
        gap: 8px;
        padding: 6px 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Extra small devices (phones below 480px) */
@media (max-width: 480px) {

    .slider-arrow{
        display:none!important;
    }
    #hero-slider {
        max-height: 48vh !important;
        min-height: 330px !important;
    }

    .slide-content {
        left: 0%;
        width: 38%;
        padding: 0.5rem 0.5rem;
        top:60%;
    }

    .slider-headline {
        font-size: clamp(10px, 2vw, 10px);
        line-height: 1.2;
        margin-bottom: 0px;
    }

    .slider-sub {
        font-size: 9px;
        line-height: 1.45;
    }

    .hero-btns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.7rem;
    }

    .btn-primary-gold, .btn-outline-gold {
        padding: 4px 5px;
        font-size: 9px;
        white-space: nowrap;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .slider-dots {
        bottom: 12px;
        gap: 8px;
        padding: 4px 10px;
    }
}

/* Landscape mode on mobile: keep comfortable height */
@media (max-width: 768px) and (orientation: landscape) {
    #hero-slider {
        height: 90vh;
        min-height: 400px;
    }

    .slide-content {
        top: 50%;
        transform: translateY(-50%);
        
    }

    .slider-headline {
        font-size: 20px;
    }

    .hero-btns {
        margin-top: 0.8rem;
    }
}

/* prevent content overflow */
.slide-content p {
    margin-bottom: 0;
}

/* Dummy section for spacing (just for demo) */
.demo-next-section {
    height: 100px;
    background: #0f0f0f;
    text-align: center;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    border-top: 1px solid #2a2a2a;
}








    :root {
        --primary: #b18032;
        --dark: #111;
        --light: #ffffff;
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        background: #fff;
        color: var(--dark);
    }

    /* SECTION */
    .gil-section {
        padding: 0px 0;
    }

    /* TITLE */
    .section-title {
        font-size: 36px;
        font-weight: 700;
    }

        .section-title span {
            color: var(--primary);
        }

    .subtitle {
        color: #666;
        max-width: 650px;
        margin: auto;
    }

    /* ICON BOX */
    .icon-box {
        background: #fff;
        border: 1px solid #eee;
        padding: 25px;
        border-radius: 14px;
        transition: 0.4s;
        height: 100%;
    }

        .icon-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .icon-box i {
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 10px;
        }

    /* CARD */
    .gil-card {
        border: none;
        border-radius: 18px;
        padding: 25px;
        background: #fff;
        transition: 0.4s;
        height: 100%;
        border-left: 4px solid var(--primary);
    }

        .gil-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

    /* NUMBER */
    .gil-number {
        color: var(--primary);
        font-weight: 700;
    }

    /* HIGHLIGHT TEXT */
    .highlight {
        color: var(--primary);
        font-weight: 600;
    }

    /* ANIMATION BASE */
    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

    /* RESPONSIVE */
    @media(max-width:768px) {
        .section-title {
            font-size: 28px;
        }
    }



    .gil-list {
        list-style: none;
        padding: 0;
        margin-top: 15px;
    }

        .gil-list li {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 15px;
            color: #444;
            transition: 0.3s;
        }

            .gil-list li i {
                color: #b18032;
                font-size: 14px;
                background: rgba(177, 128, 50, 0.1);
                padding: 6px;
                border-radius: 50%;
            }

            .gil-list li:hover {
                transform: translateX(5px);
                color: #000;
            }



:root {
    --primary: #b18032;
}

/* SECTION */
.faq-premium {
    background: #f9f9f9;
}

/* LEFT */
.faq-title {
    font-size: 34px;
    font-weight: 700;
}

    .faq-title span {
        color: var(--primary);
    }

.faq-desc {
    color: #666;
    margin: 20px 0;
}

/* HIGHLIGHT BOX */
.faq-highlight-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.faq-btn {
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    margin-top: 10px;
}

/* FAQ ITEM */
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .faq-item:hover {
        transform: translateY(-4px);
    }

/* QUESTION */
.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

/* ICON */
.faq-icon {
    width: 22px;
    height: 22px;
    position: relative;
}

    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background: var(--primary);
        transition: 0.3s;
    }

    .faq-icon::before {
        width: 100%;
        height: 2px;
        top: 50%;
    }

    .faq-icon::after {
        height: 100%;
        width: 2px;
        left: 50%;
    }

/* OPEN STATE */
.faq-question:not(.collapsed) .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* ANSWER */
.faq-answer {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE BG */
.faq-question:not(.collapsed) {
    color: var(--primary);
}

/* MOBILE */
@media(max-width:768px) {
    .faq-title {
        font-size: 26px;
    }
}








.media-section {
    background: #f9f6f0;
}

.media-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.media-subtitle {
    color: #777;
    font-size: 15px;
}

/* IMAGE BOX */
.media-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    cursor: pointer;
}

    .media-box img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.4s ease;
    }

    /* HOVER ZOOM */
    .media-box:hover img {
        transform: scale(1.08);
    }

    /* OVERLAY */
    .media-box .overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0,0,0,0.55);
        color: #fff;
        padding: 10px;
        text-align: center;
        opacity: 0;
        transition: 0.3s ease;
    }

    .media-box:hover .overlay {
        opacity: 1;
    }

    .media-box h5 {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
    }

















.blog-timeline-section {
    background: #f7f8fb; 
    color: #111827;
}

/* Header */
.timeline-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111827;
}

.timeline-subtitle {
    color: #6b7280;
    font-size: 14px;
}

/* Timeline container */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding-left: 20px;
}

    /* GOLD LINE */
    .timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient( to bottom, #b18032, rgba(177,128,50,0.2) );
    }

/* Item */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

    /* GOLD DOT */
    .timeline-item .dot {
        position: absolute;
        left: 12px;
        top: 8px;
        width: 14px;
        height: 14px;
        background: #b18032;
        border-radius: 50%;
        border: 3px solid #f7f8fb;
        box-shadow: 0 0 0 3px rgba(177,128,50,0.15);
    }

    /* CARD */
    .timeline-item .content {
        background: #ffffff;
        padding: 22px;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        transition: 0.3s ease;
    }

        /* Hover */
        .timeline-item .content:hover {
            transform: translateY(-4px);
            border-color: rgba(177,128,50,0.4);
            box-shadow: 0 12px 28px rgba(177,128,50,0.12);
        }

    /* Heading */
    .timeline-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #111827;
        font-weight: bold;
    }

    /* Text */
    .timeline-item p {
        font-size: 14px;
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    /* Lists */
    .timeline-item ul {
        padding-left: 18px;
        margin-bottom: 10px;
    }

        .timeline-item ul li {
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 6px;
        }

/* Highlight box */
.highlight {
    margin-top: 10px;
    padding: 12px;
    border-left: 3px solid #b18032;
    background: rgba(177,128,50,0.08);
    font-weight: 500;
    color: #111827;
    border-radius: 8px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .timeline {
        padding-left: 15px;
    }

        .timeline::before {
            left: 8px;
        }

    .timeline-item {
        padding-left: 17px;
    }

        .timeline-item .dot {
            left: 0;
        }

    .timeline-title {
        font-size: 24px;
    }

    .timeline-item h3 {
        font-size: 18px;
    }

    .timeline-item p,
    .timeline-item ul li {
        font-size: 13px;
    }
}


.blog-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #b18032;
    background: rgba(177,128,50,0.12);
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}



.timeline-item .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* LEFT CONTENT */
.timeline-text {
    flex: 1;
}

/* RIGHT IMAGE */
.timeline-img {
    width: 320px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: #f3f4f6; 
}


@media (max-width: 768px) {
    .timeline-item .content {
        flex-direction: column;
    }

    .timeline-img {
        width: 100%;
        height: auto;
    }
}
.blog-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0;
}

    /* when active */
    .blog-full.open {
        opacity: 1;
    }

/* button */
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #b18032!important;
    font-weight: 600;
    cursor: pointer;
}
    .read-more-btn:hover {
        text-decoration: none;
        color:black;
        border:none;
    }

a:focus {
    outline:none!important;
}







    /*media section style*/

    .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px;
}

/* Card */
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* ===== CAROUSEL ===== */
.carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

    /* Blur background layer */
    .carousel::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--bg);
        background-size: cover;
        background-position: center;
        filter: blur(18px);
        transform: scale(1.2);
        z-index: 0;
    }

    /* Images */
    .carousel img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: none;
        position: relative;
        z-index: 1;
    }

        /* Active image */
        .carousel img.active {
            display: block;
        }

/* Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

    .carousel-btn.left {
        left: 10px;
    }

    .carousel-btn.right {
        right: 10px;
    }

/* Title */
.product-title {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 12px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .carousel {
        height: 250px;
    }
}