/* =========================================================
   ABOUT PAGE — NITIN & RISHI
   Premium Black + Gold Theme
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --black: #050505;
    --black-soft: #0a0a0a;
    --card: #0d0d0d;
    --gold: #d9b84c;
    --gold-light: #f0d36a;
    --white: #f5f5f3;
    --muted: #929292;
    --muted-dark: #626262;
    --border: rgba(255, 255, 255, 0.09);
    --gold-border: rgba(217, 184, 76, 0.28);

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: #000;
}


/* =========================================================
   BACKGROUND
========================================================= */

.page-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.page-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 70%
    );
}

.gold-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
}

.orb-one {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -200px;
    background: var(--gold);
}

.orb-two {
    width: 400px;
    height: 400px;
    top: 35%;
    right: -250px;
    background: #b8942e;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.content-container,
.hero-container {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;

    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    z-index: 1000;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);
    color: var(--gold);

    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.brand-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.brand-text span {
    color: var(--gold);
    margin: 0 3px;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: #a8a8a8;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;

    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links .active {
    color: var(--gold);
}


/* APPLY BUTTON */

.nav-apply {
    display: flex !important;
    align-items: center;
    gap: 12px;

    padding: 12px 17px;

    border: 1px solid var(--gold-border);

    color: var(--gold) !important;

    background: rgba(217, 184, 76, 0.04);
}

.nav-apply span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.nav-apply:hover span {
    transform: translateX(4px);
}


/* MOBILE BUTTON */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);

    transition: transform 0.3s ease;
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;

    padding: 25px;

    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border);

    z-index: 999;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 17px 0;

    border-bottom: 1px solid var(--border);

    color: #aaa;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-menu .mobile-apply {
    color: var(--gold);
}


/* =========================================================
   COMMON LABEL
========================================================= */

.section-label,
.hero-label {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-label span,
.hero-label span {
    width: 24px;
    height: 1px;
    background: var(--gold);
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 90vh;

    display: flex;
    align-items: center;

    padding-top: 82px;

    border-bottom: 1px solid var(--border);
}

.hero-container {
    padding: 90px 0;
}

.about-hero h1 {
    max-width: 900px;

    margin-top: 30px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(70px, 10vw, 150px);
    font-weight: 700;

    line-height: 0.87;
    letter-spacing: -7px;
    text-transform: uppercase;
}

.about-hero h1 span {
    display: block;
    color: var(--gold);
}

.hero-text {
    max-width: 610px;

    margin-top: 42px;

    color: #999;

    font-size: 19px;
    line-height: 1.7;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 75px;

    color: #555;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.scroll-line {
    width: 55px;
    height: 1px;
    background: #333;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    margin-top: 60px;
}

.intro-title h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(45px, 5vw, 72px);
    line-height: 0.95;

    letter-spacing: -3px;
}

.intro-title h2 span {
    display: block;
    color: var(--gold);
}

.intro-content {
    max-width: 650px;
}

.intro-content p {
    margin-bottom: 24px;

    color: #858585;

    font-size: 16px;
    line-height: 1.8;
}

.intro-content .large-text {
    color: var(--white);

    font-size: 25px;
    line-height: 1.5;
}

.intro-content strong {
    color: var(--gold);
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 55px;
}

.section-top > p {
    max-width: 360px;

    color: #666;

    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.category-card {
    position: relative;

    min-height: 310px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 25px;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.035),
        rgba(255, 255, 255, 0.008)
    );

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.category-card::before {
    content: "";

    position: absolute;
    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: var(--gold);
    filter: blur(80px);

    opacity: 0;

    transition: opacity 0.35s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold-border);

    background: linear-gradient(
        145deg,
        rgba(217, 184, 76, 0.06),
        rgba(255, 255, 255, 0.01)
    );
}

.category-card:hover::before {
    opacity: 0.15;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-number {
    color: #555;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 25px;
}

.card-content h3 {
    margin-bottom: 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
    letter-spacing: 0.5px;
}

.card-content p {
    color: #6e6e6e;

    font-size: 12px;
    line-height: 1.6;
}

.card-arrow {
    position: absolute;

    right: 22px;
    bottom: 20px;

    color: #444;

    font-size: 18px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.category-card:hover .card-arrow {
    color: var(--gold);
    transform: translate(3px, -3px);
}


/* =========================================================
   OPERATION
========================================================= */

.operation-section {
    padding: 130px 0;
    background: #080808;
    border-bottom: 1px solid var(--border);
}

.operation-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 80px;

    margin-top: 55px;
    margin-bottom: 70px;
}

.operation-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.9;

    letter-spacing: -4px;
}

.operation-heading h2 span {
    display: block;
    color: var(--gold);
}

.operation-heading p {
    align-self: end;

    max-width: 470px;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}

.operation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.operation-card {
    display: grid;
    grid-template-columns: 55px 1fr;

    gap: 25px;

    min-height: 190px;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: background 0.3s ease;
}

.operation-card:hover {
    background: rgba(217, 184, 76, 0.025);
}

.operation-card > span {
    color: var(--gold);

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;
    font-weight: 600;
}

.operation-card h3 {
    margin-bottom: 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 19px;
}

.operation-card p {
    max-width: 400px;

    color: #6c6c6c;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PARTNERSHIP
========================================================= */

.partnership-section {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.partnership-box {
    padding: 65px;

    border: 1px solid var(--gold-border);

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(217, 184, 76, 0.08),
            transparent 35%
        ),
        #090909;
}

.partnership-label {
    margin-bottom: 55px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 90px;
}

.partnership-grid h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(45px, 5vw, 70px);
    line-height: 0.95;

    letter-spacing: -3px;
}

.partnership-grid h2 span {
    display: block;
    color: var(--gold);
}

.partnership-text p {
    margin-bottom: 25px;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TEAM
========================================================= */

.team-section {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.team-title h2 {
    margin-top: 30px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(50px, 6vw, 85px);
    line-height: 0.9;

    letter-spacing: -4px;
}

.team-title h2 span {
    display: block;
    color: var(--gold);
}

.team-content {
    padding-top: 45px;
}

.team-content > p {
    margin-bottom: 25px;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}

.team-content .large-text {
    color: var(--white);

    font-size: 24px;
    line-height: 1.5;
}

.team-highlight {
    margin-top: 45px;
    padding: 28px;

    border-left: 2px solid var(--gold);

    background: rgba(217, 184, 76, 0.035);
}

.team-highlight span {
    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.team-highlight strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
    line-height: 1.5;
}


/* =========================================================
   VISION
========================================================= */

.vision-section {
    padding: 150px 0;

    text-align: center;

    border-bottom: 1px solid var(--border);
}

.vision-label {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.vision-heading {
    margin-top: 45px;
}

.vision-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 8vw, 115px);
    line-height: 0.88;

    letter-spacing: -6px;
}

.vision-heading h2 span {
    color: var(--gold);
}

.vision-bottom {
    display: flex;
    justify-content: center;

    margin-top: 55px;
}

.vision-bottom p {
    max-width: 600px;

    color: #707070;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.about-cta-section {
    padding: 120px 0;
}

.cta-box {
    position: relative;

    padding: 85px 70px;

    text-align: center;

    border: 1px solid var(--gold-border);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(217, 184, 76, 0.10),
            transparent 48%
        ),
        #090909;

    overflow: hidden;
}

.cta-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;
    right: 15%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.cta-box h2 {
    margin-top: 28px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(50px, 7vw, 95px);
    line-height: 0.9;

    letter-spacing: -5px;
}

.cta-box h2 span {
    display: block;
    color: var(--gold);
}

.cta-box p {
    max-width: 550px;

    margin: 30px auto;

    color: #777;

    font-size: 14px;
    line-height: 1.8;
}


/* CTA BUTTON */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 10px;

    padding: 16px 24px;

    background: var(--gold);
    color: #050505;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.cta-button span {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--gold-light);
}

.cta-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 35px 0;

    border-top: 1px solid var(--border);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-top {
    padding-bottom: 30px;

    border-bottom: 1px solid var(--border);
}

.footer-brand {
    font-family: "Space Grotesk", sans-serif;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-brand span {
    color: var(--gold);
}

.footer-top p {
    color: #555;

    font-size: 11px;
}

.footer-bottom {
    padding-top: 25px;

    color: #444;

    font-size: 10px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .content-container,
    .hero-container {
        width: min(100% - 50px, 900px);
    }

    .navbar {
        padding: 0 25px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .operation-heading {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .content-container,
    .hero-container {
        width: calc(100% - 36px);
    }


    /* NAV */

    .navbar {
        height: 70px;
        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .mobile-menu {
        top: 70px;
    }


    /* HERO */

    .about-hero {
        min-height: 80vh;
        padding-top: 70px;
    }

    .hero-container {
        padding: 65px 0;
    }

    .about-hero h1 {
        margin-top: 24px;

        font-size: clamp(52px, 15vw, 85px);

        letter-spacing: -3px;
        line-height: 0.9;
    }

    .hero-text {
        margin-top: 28px;

        font-size: 15px;
        line-height: 1.65;
    }

    .hero-scroll {
        margin-top: 50px;
    }


    /* INTRO */

    .intro-section,
    .categories-section,
    .operation-section,
    .partnership-section,
    .team-section {
        padding: 75px 0;
    }

    .intro-grid {
        margin-top: 40px;
        gap: 35px;
    }

    .intro-title h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .intro-content .large-text {
        font-size: 20px;
    }

    .intro-content p {
        font-size: 14px;
    }


    /* CATEGORY */

    .section-top {
        display: block;
        margin-bottom: 35px;
    }

    .section-top > p {
        margin-top: 18px;

        text-align: left;

        font-size: 12px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .category-card {
        min-height: 205px;
        padding: 17px;
    }

    .card-icon {
        font-size: 20px;
    }

    .card-content h3 {
        font-size: 15px;
        margin-bottom: 7px;
    }

    .card-content p {
        font-size: 10px;
        line-height: 1.5;
    }

    .card-arrow {
        right: 14px;
        bottom: 13px;
        font-size: 14px;
    }


    /* OPERATION */

    .operation-heading {
        margin-top: 35px;
        margin-bottom: 40px;
    }

    .operation-heading h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .operation-heading p {
        font-size: 13px;
    }

    .operation-grid {
        grid-template-columns: 1fr;
    }

    .operation-card {
        min-height: 145px;

        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 23px 18px;
    }

    .operation-card h3 {
        font-size: 16px;
    }

    .operation-card p {
        font-size: 11px;
    }


    /* PARTNERSHIP */

    .partnership-box {
        padding: 35px 22px;
    }

    .partnership-label {
        margin-bottom: 35px;
    }

    .partnership-grid {
        gap: 30px;
    }

    .partnership-grid h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .partnership-text p {
        font-size: 13px;
    }


    /* TEAM */

    .team-grid {
        gap: 25px;
    }

    .team-title h2 {
        margin-top: 25px;

        font-size: 46px;
        letter-spacing: -2px;
    }

    .team-content {
        padding-top: 0;
    }

    .team-content .large-text {
        font-size: 20px;
    }

    .team-content > p {
        font-size: 13px;
    }

    .team-highlight {
        margin-top: 30px;
        padding: 20px;
    }

    .team-highlight strong {
        font-size: 16px;
    }


    /* VISION */

    .vision-section {
        padding: 90px 0;
    }

    .vision-heading {
        margin-top: 35px;
    }

    .vision-heading h2 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .vision-bottom {
        margin-top: 35px;
    }

    .vision-bottom p {
        font-size: 12px;
    }


    /* CTA */

    .about-cta-section {
        padding: 70px 0;
    }

    .cta-box {
        padding: 60px 20px;
    }

    .cta-box h2 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .cta-box p {
        font-size: 12px;
    }


    /* FOOTER */

    .footer-top {
        display: block;
    }

    .footer-top p {
        margin-top: 12px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-links {
        margin-top: 18px;
        gap: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .content-container,
    .hero-container {
        width: calc(100% - 28px);
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .category-grid {
        gap: 7px;
    }

    .category-card {
        min-height: 190px;
        padding: 14px;
    }

    .category-card .card-content h3 {
        font-size: 13px;
    }

    .category-card .card-content p {
        font-size: 9px;
    }

    .vision-heading h2 {
        font-size: 41px;
    }

    .cta-box h2 {
        font-size: 42px;
    }
}

