/* global style for body */
body {
    background: #0d0d0d;
    color: #e8e8ef;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

/*Reset and base*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/*Scrollbar  */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #ec8f4d;
    border-radius: 2px;
}

/* ── SCROLL PROGRESS ── */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #ec8f4d, #ff6b35);
    z-index: 2000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px #ec8f4d;
}

/* noise overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* Navigatioin styles */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}


.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
}


.nav-logo {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-logo span {
    color: #ec8f4d;
}

.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #8888aa;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
    background: #ec8f4d;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 0 24px rgba(236, 143, 77, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(236, 143, 77, 0.35);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 50px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e8ef;
    border-radius: 2px;
    transition: 0.3s;
}


/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #e8e8ef;
    font-size: 15px;
}



/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(236, 143, 77, 0.07), transparent 65%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(220, 38, 38, 0.06), transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 10%, rgba(236, 143, 77, 0.04), transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent 75%);
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 143, 77, 0.1);
    border: 1px solid rgba(236, 143, 77, 0.3);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ec8f4d;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #ec8f4d;
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.hero-name {
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 8px;
}

.hero-name .accent {
    color: #ec8f4d;
    font-style: italic;
}

.hero-role {
    font-size: clamp(16px, 2vw, 22px);
    color: #8888aa;
    font-weight: 400;
    margin-bottom: 24px;
    font-family: "JetBrains Mono", monospace;
}

.hero-role span {
    color: #ec8f4d;
}

.hero-desc {
    font-size: 15px;
    color: #8888aa;
    max-width: 500px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ec8f4d;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 0 32px rgba(236, 143, 77, 0.25);
    transition: all 0.25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(236, 143, 77, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ec8f4d;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 100px;
    border: 1.5px solid #ec8f4d;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: rgba(236, 143, 77, 0.08);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-n {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-n span {
    color: #ec8f4d;
}

.stat-l {
    font-size: 11px;
    color: #8888aa;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── HERO PHOTO ── */
.hero-photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 520px;
}

.photo-glow-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 143, 77, 0.22), rgba(220, 38, 38, 0.12) 45%, transparent);
    z-index: 0;
}

.photo-ring2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(236, 143, 77, 0.28);
    animation: rotate-ring 18s linear infinite;
    z-index: 1;
}

.photo-ring2::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #ec8f4d;
    border-radius: 50%;
    box-shadow: 0 0 14px #ec8f4d;
}

@keyframes rotate-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.photo-outer-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.photo-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(236, 143, 77, 0.12), rgba(220, 38, 38, 0.08), #16161f);
    box-shadow:
        0 0 0 3px rgba(236, 143, 77, 0.35),
        0 0 0 12px rgba(236, 143, 77, 0.08),
        0 20px 70px rgba(0, 0, 0, 0.85),
        0 0 90px rgba(236, 143, 77, 0.18);
}

.photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    inset: 0;
    display: block;
    filter: contrast(1.06) brightness(1.3);
}

.photo-rim {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 143, 77, 0.24) 0%, transparent 35%, transparent 65%, rgba(220, 38, 38, 0.18) 100%);
    pointer-events: none;
    z-index: 2;
}

.photo-badge {
    position: absolute;
    top: 170px;
    right: 10px;
    background: linear-gradient(135deg, #ec8f4d, #ff6b35);
    color: #0d0d0d;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(236, 143, 77, 0.25);
    white-space: nowrap;
    z-index: 5;
}


/* What I Provides sections styles */

.section {
    padding: 110px 0;
    position: relative;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.s-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ec8f4d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-label::before {
    content: "//";
    opacity: 0.5;
}

.s-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 60px;
}

.s-title em {
    font-style: italic;
    color: #ec8f4d;
}

/* ── WHAT I DO ── */
.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.what-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
}

.what-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ec8f4d, #ff6b35);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.what-card:hover::before {
    transform: scaleX(1);
}

.what-card:hover {
    border-color: rgba(236, 143, 77, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(236, 143, 77, 0.06);
}

.what-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.05);

}


.what-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.what-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
}



.what-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.what-desc {
    font-size: 13px;
    color: #8888aa;
    line-height: 1.9;
}

.what-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.what-tag {
    font-size: 11px;
    background: rgba(236, 143, 77, 0.07);
    border: 1px solid rgba(236, 143, 77, 0.15);
    border-radius: 100px;
    padding: 3px 12px;
    color: #ec8f4d;
    font-family: "JetBrains Mono", monospace;
}




/* ── PROJECTS ── */
.gallery-bg {
    background: #111118;
    margin: 0 30px auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
    cursor: pointer;
}

.gallery-card:hover {
    border-color: rgba(236, 143, 77, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(236, 143, 77, 0.15);
}

.g-thumb {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
}

.g-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13, 13, 13, 0.9));
    opacity: 0;
    transition: 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .g-thumb-overlay {
    opacity: 1;
}

.g-view-btn {
    background: #ec8f4d;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: 100px;
    transform: translateY(12px);
    transition: 0.3s 0.05s;
}

.gallery-card:hover .g-view-btn {
    transform: translateY(0);
}

.g1 {
    background: linear-gradient(135deg, #0d1117, #1a2035);
}

.g2 {
    background: linear-gradient(135deg, #100d1a, #1e1535);
}

.g3 {
    background: linear-gradient(135deg, #0a1a10, #152a1e);
}

.g4 {
    background: linear-gradient(135deg, #1a0d0d, #2a1515);
}

.g5 {
    background: linear-gradient(135deg, #0d1520, #152035);
}

.g6 {
    background: linear-gradient(135deg, #1a150d, #2a2015);
}

.g-body {
    padding: 28px;
}

.g-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #8888aa;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.g-name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.g-desc {
    font-size: 13px;
    color: #8888aa;
    line-height: 1.8;
    margin-bottom: 14px;
}

.g-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.g-chip {
    font-size: 10px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    padding: 3px 10px;
    color: #f87171;
    font-family: "JetBrains Mono", monospace;
}

.g-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ec8f4d;
    text-decoration: none;
    margin-top: 14px;
    transition: gap 0.2s;
}

.g-link:hover {
    gap: 10px;
}

/* ── EDU + EXP ── */
.edu-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.col-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.col-title-icon {
    width: 40px;
    height: 40px;
    background: rgba(236, 143, 77, 0.1);
    border: 1px solid rgba(236, 143, 77, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.timeline {
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.tl-item {
    position: relative;
    margin-bottom: 40px;
}

.tl-dot {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ec8f4d;
    box-shadow: 0 0 0 3px #0d0d0d, 0 0 0 4px rgba(236, 143, 77, 0.3), 0 0 16px rgba(236, 143, 77, 0.4);
}

.tl-date {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #ec8f4d;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tl-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.tl-sub {
    font-size: 13px;
    color: #8888aa;
    margin-bottom: 10px;
}

.tl-desc {
    font-size: 13px;
    color: #8888aa;
    line-height: 1.8;
}


/* ── REVIEWS ── */
.reviews-bg {
    background: #111118;
}

.reviews-track-wrap {
    overflow: hidden;
    position: relative;
}

.reviews-track-wrap::before,
.reviews-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.reviews-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #111118, transparent);
}

.reviews-track-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, #111118, transparent);
}

.reviews-track {
    display: flex;
    gap: 24px;
    animation: scroll-reviews 35s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ec8f4d, transparent);
}

.review-stars {
    color: #ec8f4d;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 13px;
    color: #e8e8ef;
    line-height: 1.9;
    margin-bottom: 20px;
    font-style: italic;
}

.review-text::before {
    content: '"';
    font-family: "Playfair Display", serif;
    font-size: 40px;
    color: #ec8f4d;
    opacity: 0.3;
    line-height: 0.5;
    display: block;
    margin-bottom: 8px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec8f4d, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: #0d0d0d;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.review-role {
    font-size: 11px;
    color: #8888aa;
}




/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 14px;
    color: #8888aa;
    line-height: 1.9;
    margin-bottom: 36px;
}

.c-links {
    display: flex;
    flex-direction: column;
}

.c-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #e8e8ef;
    transition: all 0.2s;
}

.c-link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-link:hover {
    color: #ec8f4d;
    padding-left: 8px;
}

.c-link-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.c-link-label {
    font-size: 10px;
    color: #8888aa;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.c-link-val {
    font-weight: 600;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

.c-link-arrow {
    margin-left: auto;
    color: #8888aa;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.soc-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8888aa;
    transition: all 0.2s;
}

.soc-btn:hover {
    background: rgba(236, 143, 77, 0.1);
    border-color: #ec8f4d;
    color: #ec8f4d;
    transform: translateY(-3px);
}

.c-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.f-group {
    margin-bottom: 20px;
}

.f-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8888aa;
    margin-bottom: 8px;
}

.f-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: #e8e8ef;
    outline: none;
    transition: border-color 0.2s;
}

.f-input:focus {
    border-color: #ec8f4d;
    background: rgba(236, 143, 77, 0.04);
}

.f-input::placeholder {
    color: #8888aa;
}

textarea.f-input {
    resize: vertical;
    min-height: 130px;
}

.f-submit {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
}


/* ── FOOTER ── */
.footer {
    background: #111118;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 72px 0 32px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto 56px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.f-brand {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.f-brand span {
    color: #ec8f4d;
    font-style: italic;
}

.f-desc {
    font-size: 13px;
    color: #8888aa;
    line-height: 1.9;
    margin-bottom: 24px;
}

.f-social {
    display: flex;
    gap: 10px;
}

.f-social-ic {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8888aa;
    transition: all 0.2s;
}

.f-social-ic:hover {
    background: rgba(236, 143, 77, 0.1);
    border-color: #ec8f4d;
    color: #ec8f4d;
    transform: translateY(-2px);
}

.f-col-title {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-links a {
    text-decoration: none;
    font-size: 13px;
    color: #8888aa;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-links a::before {
    content: "›";
    color: #ec8f4d;
    opacity: 0;
    transition: 0.2s;
    margin-left: -8px;
}

.f-links a:hover {
    color: #e8e8ef;
}

.f-links a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.f-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.f-contact-icon {
    color: #ec8f4d;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.f-contact-text {
    font-size: 13px;
    color: #8888aa;
    line-height: 1.6;
}

.f-contact-label {
    color: #fff;
    font-size: 11px;
    display: block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy,
.footer-made {
    font-size: 12px;
    color: #8888aa;
}

.footer-made span {
    color: #ec8f4d;
}



/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── PARALLAX ── */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    will-change: transform;
}

/* ── SCROLL PROGRESS ── */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #ec8f4d, #ff6b35);
    z-index: 2000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px #ec8f4d;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        gap: 0;
    }

    /* Photo goes BELOW the content on mobile */
    .hero-photo-wrap {
        order: 2;
        min-height: 380px;
        margin-top: 40px;
    }

    .photo-glow-ring {
        width: 300px;
        height: 300px;
    }

    .photo-ring2 {
        width: 290px;
        height: 290px;
    }

    .photo-outer-wrap {
        width: 260px;
        height: 260px;
    }

    .photo-circle {
        width: 240px;
        height: 240px;
    }

    .photo-badge {
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .what-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .edu-exp-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links,
    .nav-cta,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-inner {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 16px 20px;
    }

    .hero-inner {
        padding: 100px 20px 40px;
    }

    .c-form {
        padding: 24px 20px;
    }
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}