/* ===== DESIGN SYSTEM — Red / Grey / Black ===== */
:root {
    /* 60% — Dominant (Backgrounds) */
    --black-deep: #080809;

    /* 20% — Secondary (Cards/Surfaces) */
    --black-card: #121215;
    --black-surface: #1a1a1f;

    /* 10% — Accent (Red) */
    --red-primary: #E63946;
    --red-dark: #B5212D;
    --red-bright: #FF4D5A;
    --red-glow: rgba(230, 57, 70, 0.3);

    /* 5% — Primary Text/Headings (White) */
    --white: #FDFDFD;

    /* 5% — Secondary Text/Details (Light Grey) */
    --grey-100: #E2E2E8;
    --grey-200: #C2C2CC;
    --grey-400: #8E8E9A;
    --grey-600: #4A4A55;
    --grey-800: #2A2A30;

    --font-display: 'Calibri', sans-serif;
    --font-body: 'Calibri', sans-serif;
    --transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --glow-shadow: 0 0 30px var(--red-glow);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-body);
    background: var(--black-deep);
    color: var(--grey-200);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

strong {
    color: var(--red-primary);
    font-weight: 600;
}

::selection {
    background: var(--red-primary);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ANIMATED BACKGROUND SHAPES ===== */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.06;
    will-change: transform;
}

.bg-shape--triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--red-primary);
}

.bg-shape--circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--red-primary);
    border-radius: 50%;
}

.bg-shape--square {
    width: 50px;
    height: 50px;
    border: 3px solid var(--grey-600);
    transform: rotate(45deg);
}

.bg-shape--hex {
    width: 50px;
    height: 28px;
    background: var(--red-dark);
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.bg-shape--cross {
    width: 40px;
    height: 40px;
    position: relative;
}

.bg-shape--cross::before,
.bg-shape--cross::after {
    content: '';
    position: absolute;
    background: var(--grey-500);
}

.bg-shape--cross::before {
    width: 100%;
    height: 6px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.bg-shape--cross::after {
    width: 6px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.bg-shape--diamond {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid var(--red-bright);
    transform: rotate(45deg);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 57, 70, 0.15);
    padding: 0.75rem 2rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--red-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-400);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    z-index: 1;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.title-line {
    display: block;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--white);
    letter-spacing: -3px;
}

.title-accent {
    color: var(--red-primary);
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--grey-500);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--grey-400);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--red-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-500);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--red-primary);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--red-bright);
    box-shadow: 0 8px 40px rgba(230, 57, 70, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--grey-700);
}

.btn-outline:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: rgba(230, 57, 70, 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease 0.3s both;
}

.hero-shape-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-shape {
    position: absolute;
    inset: 0;
    border: 2px solid;
    border-radius: 20%;
    animation: rotateShape 12s linear infinite;
}

.shape-1 {
    border-color: var(--red-primary);
    animation-duration: 12s;
    opacity: 0.6;
}

.shape-2 {
    border-color: var(--grey-600);
    animation-duration: 18s;
    animation-direction: reverse;
    inset: 30px;
    border-radius: 30%;
    opacity: 0.4;
}

.shape-3 {
    border-color: var(--red-dark);
    animation-duration: 25s;
    inset: 60px;
    border-radius: 40%;
    opacity: 0.3;
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pulse-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.ring-2 {
    animation-delay: 1.5s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-center-icon {
    font-size: 3.5rem;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--red-glow));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-600);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.3;
        height: 25px;
    }
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    z-index: 1;
    padding: 7rem 0;
}

.section-dark {
    background: var(--black-card);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red-primary);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.text-accent {
    color: var(--red-primary);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--red-primary);
    margin: 1rem auto 0;
    border-radius: 100px;
}

.sub-heading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--red-primary);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--grey-200);
    margin-bottom: 1.25rem;
    line-height: 1.85;
}

.about-text p {
    color: var(--grey-400);
    margin-bottom: 1rem;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.identity-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--black-card);
    border: 1px solid rgba(226, 226, 232, 0.05);
    /* 5% Tier Light Grey */
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1rem;
    color: var(--grey-200);
}

.identity-card:hover {
    border-color: var(--red-primary);
    background: rgba(230, 57, 70, 0.05);
    transform: translateX(8px);
}

.identity-icon {
    font-size: 1.2rem;
}

/* ===== ORGANIZATIONS ===== */
.org-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.org-card {
    background: var(--black-card);
    border: 1px solid rgba(226, 226, 232, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.org-card:hover::before {
    transform: scaleX(1);
}

.org-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: var(--glow-shadow);
    transform: translateY(-4px);
}

.org-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red-primary);
    background: rgba(230, 57, 70, 0.1);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.org-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.org-role {
    font-size: 0.85rem;
    color: var(--grey-500);
    font-weight: 500;
}

.org-name a {
    color: var(--white);
    transition: var(--transition-fast);
}

.org-name a:hover {
    color: var(--red-primary);
    text-decoration: underline;
}

.org-desc {
    color: var(--grey-400);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.org-contributions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.org-contributions li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: var(--grey-400);
}

.org-contributions li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--red-primary);
    font-weight: 700;
}

/* ===== EXPERIENCE ===== */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.exp-card {
    background: var(--black-card);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.exp-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow-shadow);
}

.exp-period {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 0.75rem;
}

.exp-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.exp-company {
    font-size: 0.9rem;
    color: var(--grey-500);
    display: block;
    margin-bottom: 1.25rem;
}

.exp-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.exp-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: var(--grey-400);
}

.exp-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--red-primary);
    font-weight: 700;
}

/* ===== DOMAINS ===== */
.domains-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.domain-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-300);
    transition: var(--transition);
    cursor: default;
}

.domain-pill:hover {
    border-color: var(--red-primary);
    background: rgba(230, 57, 70, 0.08);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.15);
}

.domain-dot {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== PROJECTS ===== */
.project-showcase {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto 1fr;
    background: var(--black-card);
    border: 1px solid rgba(226, 226, 232, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    gap: 1rem 3rem;
}

.project-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--red-primary), var(--red-dark));
    opacity: 0;
    transition: var(--transition);
}

.project-showcase:hover::before {
    opacity: 1;
}

.project-showcase:hover {
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.project-showcase-header {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cat-icon {
    font-size: 1.8rem;
}

.project-showcase-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.project-brief {
    grid-column: 1;
    grid-row: 2;
    color: var(--grey-200);
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.8;
    align-self: start;
}

.project-image-box {
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    transition: var(--transition);
    height: 100%;
    min-height: 250px;
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-image-box:hover img {
    transform: scale(1.05);
}

.project-image-box:hover {
    border-color: var(--red-primary);
    box-shadow: 0 4px 25px rgba(230, 57, 70, 0.2);
}


/* ===== PARTNERS ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--black-card);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.88rem;
    color: var(--grey-300);
}

.partner-card:hover {
    border-color: var(--red-primary);
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-3px);
}

.partner-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===== ACHIEVEMENTS ===== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

/* ===== SKILLS ===== */
.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.skill-bar-header span:first-child {
    color: var(--grey-300);
}

.skill-pct {
    color: var(--red-primary);
    font-weight: 600;
}

.skill-bar {
    height: 6px;
    background: var(--grey-800);
    border-radius: 100px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red-primary), var(--red-bright));
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.skill-fill.animated {
    width: var(--target-width);
}

.skill-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    border-radius: 100px;
}

.software-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.software-tag {
    padding: 0.6rem 1.25rem;
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-300);
    transition: var(--transition);
}

.software-tag:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: rgba(230, 57, 70, 0.08);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.leadership-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: var(--grey-300);
    transition: var(--transition);
}

.leadership-item:hover {
    border-color: var(--red-primary);
    transform: translateX(4px);
}

.leader-icon {
    font-size: 1.1rem;
}

/* ===== EDUCATION ===== */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.edu-card {
    background: var(--black-card);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.edu-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow-shadow);
}

.cert-card {
    border-color: rgba(230, 57, 70, 0.2);
}

.edu-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.edu-degree {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.edu-institution {
    font-size: 0.9rem;
    color: var(--grey-400);
    margin-bottom: 0.25rem;
}

.edu-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red-primary);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.edu-focus {
    font-size: 0.85rem;
    color: var(--grey-500);
    font-style: italic;
}

/* ===== VISION ===== */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--red-primary), transparent);
}

.vision-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
}

.vision-label {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.vision-card p {
    color: var(--grey-400);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info p {
    color: var(--grey-400);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--black-card);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--red-primary);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 1.3rem;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-500);
}

.contact-value {
    display: block;
    font-size: 0.9rem;
    color: var(--grey-200);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--black-card);
    border: 1px solid var(--grey-800);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-600);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    border-top: 1px solid var(--grey-800);
    background: var(--black-deep);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer-brand p {
    color: var(--grey-500);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.footer-ecosystem {
    font-size: 0.85rem;
    color: var(--grey-500);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.footer-ecosystem a {
    color: var(--grey-400);
    transition: var(--transition-fast);
}

.footer-ecosystem a:hover {
    color: var(--red-primary);
}

.footer-dot {
    color: var(--grey-700);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--grey-600);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .org-timeline {
        grid-template-columns: 1fr;
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image-box {
        grid-column: 1;
        grid-row: 3;
        min-height: 200px;
    }

    .skills-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .edu-grid {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 5rem;
    }

    .title-line {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .project-image-box {
        min-height: 180px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}