/* ===== BABURAO KADAM KOHLIKAR — TIMELINE-CENTRIC DESIGN ===== */
/* Deep Indigo (#1E1B4B) + Electric Violet (#7C3AED) + Warm Gold (#F59E0B) + Mist (#F8FAFC) */
/* Plus Jakarta Sans + Merriweather (traditional serif for timeline) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&display=swap');

:root {
    --indigo: #1E1B4B;
    --indigo-700: #312E81;
    --indigo-600: #4338CA;
    --indigo-500: #6366F1;
    --indigo-50: #EEF2FF;
    --violet: #7C3AED;
    --violet-dark: #6D28D9;
    --violet-light: #F5F3FF;
    --gold: #F59E0B;
    --gold-dark: #D97706;
    --gold-light: #FFFBEB;
    --mist: #F8FAFC;
    --mist-100: #F1F5F9;
    --mist-200: #E2E8F0;
    --mist-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .14);
    --tr: .35s cubic-bezier(.4, 0, .2, 1);
    --radius: 14px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--mist);
    color: var(--slate-600);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

img {
    max-width: 100%;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Merriweather', serif;
    color: var(--slate-900);
    font-weight: 900
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0;
    transition: var(--tr)
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--violet), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans';
    font-size: .72rem;
    font-weight: 800;
    color: var(--white)
}

.logo-name {
    font-family: 'Plus Jakarta Sans';
    font-size: .92rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.logo-name span {
    color: var(--gold)
}

.nav-links {
    display: flex;
    gap: 0
}

.nav-links a {
    color: rgba(255, 255, 255, .45);
    font-family: 'Plus Jakarta Sans';
    font-size: .76rem;
    font-weight: 700;
    padding: 18px 14px;
    transition: var(--tr);
    position: relative
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px 2px 0 0
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--indigo);
    padding-top: 60px
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    filter: brightness(.5)
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, .95) 0%, rgba(124, 58, 237, .6) 50%, rgba(30, 27, 75, .9) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.hero-text {
    padding: 0 24px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .2);
    color: var(--gold);
    font-family: 'Plus Jakarta Sans';
    font-size: .56rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 18px
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -.025em
}

.hero h1 em {
    color: var(--gold);
    font-style: normal
}

.hero-sub {
    font-family: 'Merriweather', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .45);
    font-size: .92rem;
    margin-bottom: 12px;
    line-height: 1.6
}

.hero-desc {
    color: rgba(255, 255, 255, .35);
    font-size: .85rem;
    line-height: 1.8;
    margin-bottom: 24px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-img {
    display: flex;
    justify-content: center
}

.hero-img img {
    max-width: 360px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    border: 3px solid rgba(255, 255, 255, .06)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: .8rem;
    cursor: pointer;
    border: none;
    transition: var(--tr)
}

.btn-violet {
    background: var(--violet);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(124, 58, 237, .25)
}

.btn-violet:hover {
    background: var(--violet-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, .35)
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, .25)
}

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

.btn-glass {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.btn-outline {
    background: transparent;
    color: var(--violet);
    border: 1.5px solid var(--violet)
}

.btn-outline:hover {
    background: var(--violet);
    color: var(--white)
}

/* ===== SECTIONS ===== */
.section {
    padding: 72px 0
}

.sec-mist {
    background: var(--mist)
}

.sec-white {
    background: var(--white)
}

.sec-light {
    background: var(--mist-100)
}

.sec-indigo {
    background: var(--indigo);
    color: var(--white)
}

.sec-dark {
    background: var(--slate-900);
    color: var(--white)
}

.sec-eyebrow {
    font-family: 'Plus Jakarta Sans';
    font-size: .55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--violet);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sec-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold)
}

.sec-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.sec-desc {
    color: var(--slate-500);
    font-size: .85rem;
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 24px
}

/* ===== HORIZONTAL MILESTONE TIMELINE (Hero-adjacent — signature element) ===== */
.h-timeline {
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.h-timeline::-webkit-scrollbar {
    display: none
}

.h-tl-track {
    display: flex;
    gap: 0;
    position: relative;
    min-width: max-content;
    padding: 24px 40px 24px 20px
}

.h-tl-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mist-200);
    transform: translateY(-50%)
}

.h-tl-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 170px;
    cursor: pointer;
    transition: var(--tr)
}

.h-tl-node:hover {
    transform: translateY(-3px)
}

.h-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--violet);
    border: 3px solid var(--violet-light);
    position: relative;
    z-index: 2;
    transition: var(--tr);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0)
}

.h-tl-node:hover .h-tl-dot,
.h-tl-node.active .h-tl-dot {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, .15)
}

.h-tl-year {
    font-family: 'Plus Jakarta Sans';
    font-size: .6rem;
    font-weight: 800;
    color: var(--violet);
    margin-top: 10px;
    letter-spacing: .08em
}

.h-tl-title {
    font-family: 'Plus Jakarta Sans';
    font-size: .72rem;
    font-weight: 700;
    color: var(--slate-800);
    text-align: center;
    margin-top: 4px;
    max-width: 140px;
    line-height: 1.3
}

.h-tl-node:hover .h-tl-year,
.h-tl-node.active .h-tl-year {
    color: var(--gold)
}

/* ===== VERTICAL INTERACTIVE TIMELINE (About page) ===== */
.v-timeline {
    position: relative;
    padding-left: 34px;
    margin: 28px 0
}

.v-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--violet), var(--gold))
}

.vt-item {
    position: relative;
    margin-bottom: 28px;
    padding-left: 24px
}

.vt-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--violet);
    border: 3px solid var(--violet-light);
    transition: var(--tr);
    z-index: 2
}

.vt-item:hover .vt-dot {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, .12)
}

.vt-year {
    font-family: 'Plus Jakarta Sans';
    font-size: .6rem;
    font-weight: 800;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 2px
}

.vt-item:hover .vt-year {
    color: var(--gold)
}

.vt-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--mist-200);
    transition: var(--tr);
    box-shadow: var(--shadow-sm)
}

.vt-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-md);
    transform: translateX(4px)
}

.vt-card h3 {
    font-family: 'Plus Jakarta Sans';
    font-size: .88rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--slate-900)
}

.vt-card p {
    font-size: .8rem;
    color: var(--slate-500);
    line-height: 1.7
}

/* ===== MILESTONE CARDS (Homepage preview) ===== */
.ms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0
}

.ms-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--mist-200);
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    text-align: center
}

.ms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--gold));
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px
}

.ms-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent
}

.ms-yr {
    font-family: 'Plus Jakarta Sans';
    font-size: .55rem;
    font-weight: 800;
    color: var(--violet);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.ms-card h3 {
    font-family: 'Plus Jakarta Sans';
    font-size: .82rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--slate-900)
}

.ms-card p {
    font-size: .75rem;
    color: var(--slate-500);
    line-height: 1.6
}

/* DUO */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 24px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.duo-img img {
    width: 100%;
    height: 380px;
    object-fit: cover
}

/* VISION BOX */
.vision-box {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-700));
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    margin: 24px 0
}

.vision-box::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, .1), transparent 60%);
    border-radius: 50%
}

.vision-box .sec-eyebrow {
    color: var(--gold)
}

.vision-box h2 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px
}

.vision-box p {
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    line-height: 1.8
}

.vision-box blockquote {
    font-family: 'Merriweather', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 18px;
    border-left: 3px solid var(--gold);
    margin-top: 14px
}

/* FEATURED CARD */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0
}

.f-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--mist-200);
    transition: var(--tr)
}

.f-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent
}

.f-card-img {
    height: 160px;
    overflow: hidden
}

.f-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.f-card:hover .f-card-img img {
    transform: scale(1.05)
}

.f-card-body {
    padding: 18px
}

.f-tag {
    font-family: 'Plus Jakarta Sans';
    font-size: .52rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--violet);
    margin-bottom: 6px
}

.f-card-body h3 {
    font-family: 'Merriweather', serif;
    font-size: .88rem;
    margin-bottom: 6px;
    color: var(--slate-900)
}

.f-card-body p {
    font-size: .78rem;
    color: var(--slate-500);
    line-height: 1.6
}

/* STAT ROW */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0
}

.stat-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: var(--tr)
}

.stat-box:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-3px)
}

.stat-num {
    font-family: 'Plus Jakarta Sans';
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold)
}

.stat-label {
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 6px;
    color: rgba(255, 255, 255, .45)
}

/* INFO CARDS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--mist-200);
    transition: var(--tr)
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--violet)
}

.info-card .ico {
    font-size: 1.3rem;
    margin-bottom: 12px
}

.info-card h3 {
    font-family: 'Plus Jakarta Sans';
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--slate-900)
}

.info-card p {
    font-size: .8rem;
    color: var(--slate-500);
    line-height: 1.7
}

/* WORK CARDS */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0
}

.w-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 14px;
    border: 1px solid var(--mist-200);
    transition: var(--tr)
}

.w-card:hover {
    border-color: var(--violet);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.w-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--indigo-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.w-card h3 {
    font-family: 'Plus Jakarta Sans';
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--slate-900)
}

.w-card p {
    font-size: .78rem;
    color: var(--slate-500);
    line-height: 1.7
}

.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px
}

.chip {
    background: var(--indigo-50);
    color: var(--violet);
    padding: 5px 14px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans';
    font-size: .7rem;
    font-weight: 700
}

/* PAGE HEADER */
.pg-header {
    padding: 130px 0 50px;
    background: var(--indigo);
    position: relative;
    overflow: hidden
}

.pg-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, .06), transparent 70%);
    border-radius: 50%
}

.pg-header .container {
    position: relative;
    z-index: 2
}

.pg-header h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 8px
}

.pg-header h1 span {
    color: var(--gold)
}

.pg-header p {
    color: rgba(255, 255, 255, .4);
    font-size: .88rem
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    font-size: .72rem
}

.breadcrumb a {
    color: var(--gold)
}

.breadcrumb em {
    color: rgba(255, 255, 255, .2);
    font-style: normal
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 28px 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.fg label {
    font-family: 'Plus Jakarta Sans';
    font-size: .58rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea,
.fg select {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--mist-200);
    background: var(--white);
    color: var(--slate-900);
    font-family: 'Plus Jakarta Sans';
    font-size: .85rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .05)
}

.fg textarea {
    min-height: 110px;
    resize: vertical
}

.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.c-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--mist-200)
}

.c-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--indigo-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.c-card h4 {
    font-family: 'Plus Jakarta Sans';
    font-size: .82rem;
    color: var(--slate-900);
    font-weight: 700;
    margin-bottom: 2px
}

.c-card p {
    color: var(--slate-500);
    font-size: .76rem;
    line-height: 1.5
}

/* MEETING REQUEST BOX */
.meeting-box {
    background: linear-gradient(135deg, var(--indigo), var(--violet-dark));
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 10px;
    color: var(--white)
}

.meeting-box h4 {
    font-family: 'Plus Jakarta Sans';
    font-size: .88rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white)
}

.meeting-box p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 10px
}

.meeting-box .btn {
    width: 100%;
    justify-content: center
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-900);
    padding: 48px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px
}

.footer-about h3 {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    margin-bottom: 10px
}

.footer-about p {
    color: var(--slate-500);
    font-size: .78rem;
    line-height: 1.7
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Plus Jakarta Sans';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 10px
}

.footer-links a {
    display: block;
    color: var(--slate-500);
    font-size: .76rem;
    padding: 4px 0;
    transition: var(--tr)
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-contact h4 {
    color: var(--white);
    font-family: 'Plus Jakarta Sans';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 10px
}

.footer-contact p {
    color: var(--slate-500);
    font-size: .76rem;
    line-height: 1.8
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 16px 0
}

.footer-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.footer-bar-left {
    color: var(--slate-600);
    font-size: .72rem
}

.footer-bar-right {
    font-size: .72rem;
    color: var(--slate-600)
}

.footer-bar-right a {
    color: var(--gold);
    font-weight: 700
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 0 0;
    margin-top: 8px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    color: var(--slate-500);
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--violet);
    color: var(--white);
    transform: translateY(-3px)
}

.footer-social a svg {
    width: 14px;
    height: 14px;
    fill: currentColor
}

/* ANIMATIONS */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rvl {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .6s ease, transform .6s ease
}

.rvl.on {
    opacity: 1;
    transform: translateX(0)
}

.rvr {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s ease, transform .6s ease
}

.rvr.on {
    opacity: 1;
    transform: translateX(0)
}

.rvs {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .5s ease, transform .5s ease
}

.rvs.on {
    opacity: 1;
    transform: scale(1)
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-text {
        order: 2
    }

    .hero-img {
        order: 1
    }

    .hero-btns {
        justify-content: center
    }

    .duo,
    .duo.flip,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .duo.flip {
        direction: ltr
    }

    .ms-grid,
    .feat-grid,
    .info-grid,
    .stat-row {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--indigo);
        flex-direction: column;
        padding: 80px 24px;
        gap: 0;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .3)
    }

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .nav-links a {
        padding: 12px 0
    }

    .nav-links a.active::after {
        display: none
    }

    .ms-grid,
    .feat-grid,
    .info-grid,
    .stat-row,
    .work-grid {
        grid-template-columns: 1fr
    }

    .footer-bar .container {
        flex-direction: column;
        text-align: center
    }
}