﻿
:root {
    --green-deep: #036a3a;
    --green-bright: #03a54f;
    --gold: #ce8d25;
    --gold-light: #e8b565;
    --sand: #f6efe0;
    --cream: #fffcf6;
    --ink: #12241a;
    --ink-soft: #3f5148;
    --stone: #8f8672;
    --line: rgba(3,106,58,0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Fraunces',serif;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.eyebrow {
    font-family: 'Poppins',sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 1px;
        background: currentColor;
        display: inline-block;
    }

/* ---------- NAV ---------- */
header.site {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    header.site.scrolled {
        background: rgba(3,26,15,0.92);
        backdrop-filter: blur(10px);
        padding: 14px 0;
        box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    }

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Fraunces',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.01em;
}

    .logo span {
        color: var(--gold-light);
        font-style: italic;
        font-weight: 500;
    }

nav.links {
    display: flex;
    gap: 34px;
}

    nav.links a {
        color: rgba(255,252,246,0.82);
        font-size: 14.5px;
        font-weight: 500;
        position: relative;
        padding: 4px 0;
    }

        nav.links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--gold-light);
            transition: width .3s ease;
        }

        nav.links a:hover::after {
            width: 100%;
        }

.nav-cta {
    background: var(--gold);
    color: var(--ink);
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.burger {
    display: none;
    color: var(--cream);
    font-size: 26px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    overflow: hidden;
    padding: 110px 0 30px;
    align-items: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
}
section.hero.hampi {
    background-image: url('../img/myimages/hampi.png');
}
section.hero.nalandahero {
    background-image: url('../img/myimages/nalanda.png');
}
section.hero.jaipurhero {
    background-image: url('../img/myimages/jaipur.png');
}
section.hero.uadipurhero {
    background-image: url('../img/myimages/udaipur.png');
}
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 90px);
        pointer-events: none;
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}
.hero .eyebrow {
    color: var(--gold-light);
    margin-bottom: 10px;
}
.hero h1 {
    font-size: clamp(38px,5vw,64px);
    color: var(--cream);
    max-width: 640px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 500;
}
.hero p.lead {
    max-width: 700px;
    color: rgba(255,252,246,0.82);
    font-size: 14.5px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    margin: 0 0 13px 0;
    line-height: 23px;
}
p.lead span {
    color: #ce8d25;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.hero-ctas {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-solid {
    background: var(--gold);
    color: var(--ink);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.02em;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .25s ease, background .25s ease;
    font-family: "Poppins", sans-serif;
}

    .btn-solid:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
    }

.btn-ghost {
    border: 1px solid rgba(255,252,246,0.35);
    color: var(--cream);
    padding: 15px 28px;
    font-weight: 500;
    font-size: 14.5px;
    border-radius: 2px;
    transition: all .25s ease;
}

    .btn-ghost:hover {
        border-color: var(--gold-light);
        color: var(--gold-light);
    }

.pill-row {
    margin-top: 56px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    border: 1px solid rgba(255,252,246,0.22);
    color: rgba(255,252,246,0.75);
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* chariot illustration */
.chariot-wrap {
    position: relative;
}

.chariot-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(206,141,37,0.25), transparent 65%);
    filter: blur(10px);
}

.chariot-wrap svg {
    position: relative;
    width: 100%;
    height: auto;
}

.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,252,246,0.5);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .scroll-cue .line {
        width: 1px;
        height: 34px;
        background: linear-gradient(var(--gold-light),transparent);
        animation: scrollpulse 2s ease-in-out infinite;
    }

@keyframes scrollpulse {
    0%,100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ---------- SECTION HEADERS ---------- */
.sec-head {
    max-width: 640px;
    margin-bottom: 20px;
}
    .sec-head .eyebrow {
        color: var(--gold);
        margin-bottom: 0px;
    }

    .sec-head h2 {
        font-size: clamp(28px,3.4vw,42px);
        color: var(--green-deep);
    }
    .sec-head p {
        margin-top: 16px;
        color: var(--ink-soft);
        font-size: 16px;
        font-weight: 300;
        line-height: 23px;
        font-family: "Poppins", sans-serif;
    }
.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
section {
    padding: 50px 0;
    position: relative;
}

/* ---------- OBJECTIVES ---------- */
.objectives {
    background: var(--cream);
}

.obj-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.obj-item {
    background: var(--cream);
    padding: 38px 40px;
    display: flex;
    gap: 22px;
    align-items: center;
    transition: background .3s ease;
}

    .obj-item:hover {
        background: var(--sand);
    }
.obj-numeral {
    font-family: 'Fraunces',serif;
    font-style: italic;
    font-size: 30px;
    color: var(--gold);
    font-weight: 500;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.obj-numeral img {
    height: 60px;
    width: 60px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(66%) saturate(901%) hue-rotate(110deg) brightness(100%) contrast(98%);
}
.obj-item h4 {
    font-size: 18px;
    color: var(--green-deep);
    margin-bottom: 8px;
    font-weight: 600;
}
.obj-item p {
    font-size: 14.5px;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 23px;
    font-family: "Poppins", sans-serif;
}
h2 em {
    color: #ce8d25;
}
/* ---------- EXPERIENCE ---------- */
.experience {
    color: var(--cream);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
section.experience::before {
    content: "";
    background: #000000b0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
section.hamiexperience {
    background-image: url('../img/myimages/hampiexperince.png');
}
section.nalandaexperience {
    background-image: url('../img/myimages/nalandaexperience.png');
}
section.jaipurexperience {
    background-image: url('../img/myimages/jaipurexperince.png');
}
section.udaipurexperience {
    background-image: url('../img/myimages/udaipurexperince.png');
}
.experience .sec-head .eyebrow {
    color: var(--gold-light);
}

    .experience .sec-head h2 {
        color: var(--cream);
    }

    .experience .sec-head p {
        color: rgba(255,252,246,0.72);
    }

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
    background: rgba(255,252,246,0.08);
}
.exp-card {
    background: #03582f69;
    padding: 36px 26px;
    transition: background .3s ease, transform .3s ease;
}

    .exp-card:hover {
        background: #046b39;
        transform: translateY(-4px);
    }

.exp-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    color: var(--gold-light);
}

    .exp-icon svg {
        width: 100%;
        height: 100%;
    }

.exp-card h4 {
    font-family: 'Fraunces',serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--cream);
}
.exp-card p {
    font-size: 13.5px;
    color: rgba(255,252,246,0.68);
    font-weight: 300;
    line-height: 23px;
    font-family: "Poppins", sans-serif;
}
/* ---------- IMPACT ---------- */
.impact {
    background: var(--sand);
}
.impact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    width: 100%;
}
.impact-chip {
    padding: 0 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-direction: column;
    width: 18%;
}
.impact-chip .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.impact-chip span {
    font-weight: 500;
    font-size: 15.5px;
    color: #3f5148;
    font-family: "Poppins", sans-serif;
    text-align: center;
    line-height: 23px;
}
.impact-chip span.dotimg {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #036a3a;
}
.impact-chip span.dotimg img {
    height: 70px;
    width: 70px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(22%) saturate(4076%) hue-rotate(124deg) brightness(93%) contrast(98%);
}
/* ---------- WHY CHOOSE ---------- */
.why {
    background: var(--cream);
}
.why-grid {
    display: block;
}

.why-art {
    position: relative;
    background: linear-gradient(160deg,var(--green-deep),#024225);
    border-radius: 4px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .why-art svg {
        width: 70%;
        height: 70%;
    }

    .why-art::after {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, rgba(206,141,37,0.06) 0 2px, transparent 2px 26px);
    }

.why-copy .eyebrow {
    color: var(--gold);
    margin-bottom: 16px;
}

.why-copy h2 {
    font-size: clamp(26px,3vw,38px);
    color: var(--green-deep);
    margin-bottom: 20px;
}
.why-copy > p {
    color: var(--ink-soft);
    font-size: 15.5px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}
.why-copy p span {
    font-size: 20px;
    color: #036a3a;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.check-list li {
    display: flex;
    gap: 16px;
    padding: 0;
    align-items: center;
    flex-direction: column;
}
.why-copy ul.check-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
}
.pngicon img {
    height: 60px;
    width: 60px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(66%) saturate(901%) hue-rotate(110deg) brightness(100%) contrast(98%);
}
.check-list .mark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--green-bright);
    margin-top: 2px;
}
.check-list strong {
    color: #036a3a;
    font-weight: 600;
    font-size: 17px;
    font-family: 'Fraunces', serif;
    text-align: center;
    display: block;
}
.check-list span {
    display: block;
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 300;
    margin-top: 3px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.pngicon {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #036a3a;
}
/* ---------- CUSTOMIZE BANNER ---------- */
.customize {
    background: var(--gold);
    padding: 60px 0;
}

    .customize .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }
    .customize h3 {
        font-size: clamp(22px,2.6vw,30px);
        color: #fff;
        max-width: 640px;
    }
    .customize p {
        color: #fff;
        margin-top: 10px;
        font-size: 14.5px;
        max-width: 600px;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
        line-height: 23px;
    }
    .customize .btn-solid {
        background: #036a3a;
        color: var(--cream);
    }

        .customize .btn-solid:hover {
            background: #03230f;
        }

/* ---------- CTA / FOOTER ---------- */
.cta-section {
    background: linear-gradient(160deg,#033f24,var(--green-deep));
    color: var(--cream);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: "";
        position: absolute;
        right: -120px;
        top: -120px;
        width: 420px;
        height: 420px;
        border: 1px solid rgba(206,141,37,0.18);
        border-radius: 50%;
    }

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

    .cta-inner .eyebrow {
        color: var(--gold-light);
        justify-content: center;
        margin-bottom: 20px;
    }

    .cta-inner h2 {
        font-size: clamp(28px,4vw,46px);
        margin-bottom: 22px;
    }

    .cta-inner p {
        color: rgba(255,252,246,0.75);
        font-weight: 300;
        font-size: 15.5px;
        margin-bottom: 38px;
    }

    .cta-inner .hero-ctas {
        justify-content: center;
    }

footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,252,246,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    footer .logo {
        font-size: 19px;
    }

    footer .foot-links {
        display: flex;
        gap: 26px;
    }

        footer .foot-links a {
            font-size: 13px;
            color: rgba(255,252,246,0.6);
        }

    footer .copy {
        font-size: 12.5px;
        color: rgba(255,252,246,0.4);
        width: 100%;
        text-align: center;
        margin-top: 26px;
    }
.wrap.hero-grid h1 {
    margin-top: 0px;
}
footer {
    margin-top: 0px;
}
section.why.whynalanda .why-copy > p {
    margin: 0 0 13px 0;
}
section.jaipurimapct .impact-row > div {
    width: 15%;
}
section.page_copyright {
    padding: 10px 0;
}
section.page_copyright p img {
    height: 30px;
}
section.page_copyright p {
    display: flex;
    align-items: center;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width:980px) {
    .wrap {
        padding: 0 26px;
    }

    nav.links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .chariot-wrap {
        max-width: 320px;
        margin: 40px auto 0;
    }

    .obj-list {
        grid-template-columns: 1fr;
    }

    .exp-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-art {
        max-width: 340px;
        margin: 0 auto;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width:560px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }

    .customize .wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-cta {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-cue .line {
        animation: none;
    }
}
