/* ========================
   DESIGN TOKENS
   ======================== */
:root {
    --navy: #020817;
    --navy-2: #0f172a;
    --navy-3: #1e293b;
    --accent: #10b981;
    --accent-dark: #059669;
    --gold: #f59e0b;
    --gold-light: rgba(245, 158, 11, 0.15);
    --accent-glow: rgba(16, 185, 129, 0.18);
    --glass-bg: rgba(15, 23, 42, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 18px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================
   RESET & BASE
   ======================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    line-height: 1.15;
}

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

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

ul {
    list-style: none;
}

/* ========================
   UTILITIES
   ======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-gap {
    padding: 4.5rem 0;
}

.highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-primary.full-w {
    width: 100%;
    justify-content: center;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid var(--glass-border);
    color: var(--text);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-text h1,
.hero-text .hero-title,
.hero-text .hero-desc {
    animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-text .hero-title {
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-text .hero-desc {
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-actions {
    animation: revealUp 0.8s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.profile-tools span {
    animation: float 3s ease-in-out infinite;
}

.profile-tools span:nth-child(2n) {
    animation-delay: 0.5s;
}

.profile-tools span:nth-child(3n) {
    animation-delay: 1s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) rotate(8deg);
}

.section-head.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--text-muted);
    max-width: 580px;
}

/* AOS animation */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-aos].aos-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   NAVIGATION
   ======================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    background: transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(2, 8, 23, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--accent);
}

.logo-dot {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: #34d399 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================
   HERO
   ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-glow);
    top: -10%;
    right: -5%;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-light);
    bottom: 10%;
    left: -5%;
    animation-delay: -4s;
}

@keyframes pulse {

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

    50% {
        opacity: .7;
        transform: scale(1.08)
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-green {
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.tag-gold {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 1.15rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 2.2rem;
}

.hero-desc strong {
    color: var(--text);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Profile Card */
.profile-card {
    padding: 1.8rem;
    text-align: center;
}

.profile-img-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.profile-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.badge-sm {
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: var(--navy-3);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-sm.green {
    background: var(--accent-glow);
    color: var(--accent);
}

.profile-tools {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.3rem;
    color: var(--text-muted);
}

.profile-tools span {
    transition: var(--transition);
    cursor: default;
}

.profile-tools span:hover {
    color: var(--accent);
    transform: scale(1.2);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

/* ========================
   VISA BANNER
   ======================== */
.visa-banner {
    background: var(--navy-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0;
}

.visa-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.visa-label {
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visa-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
}

.visa-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 150px;
    transition: var(--transition);
}

.visa-pill:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--gold);
}

.visa-pill i {
    font-size: 1.4rem;
    color: var(--gold);
}

.visa-pill strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
}

.visa-pill span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================
   ABOUT
   ======================== */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.about-highlight-item i {
    color: var(--accent);
    flex-shrink: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.about-card {
    padding: 1.5rem;
}

.about-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.about-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================
   SERVICES
   ======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.15rem;
}

.service-card>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.service-features i {
    color: var(--accent);
    font-size: 0.7rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.8rem;
}

/* ========================
   SKILLS
   ======================== */
.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.skill-bar-item {
    margin-bottom: 1.5rem;
}

.skill-bar-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-bar-head span:last-child {
    color: var(--accent);
}

.bar-track {
    height: 8px;
    background: var(--navy-3);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #34d399);
    border-radius: 50px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-tags h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--navy-2);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.tag-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.tag-item i {
    color: var(--accent);
}

/* ========================
   EXPERIENCE / TIMELINE
   ======================== */
.timeline {
    margin-top: 4rem;
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.65rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.tl-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.tl-dot {
    position: absolute;
    left: -2.55rem;
    top: 1.8rem;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--navy);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.tl-card {
    padding: 2rem;
}

.tl-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.tl-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.tl-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.tl-company {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tl-badge {
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--navy-3);
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.tl-badge.current {
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.tl-points {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tl-points li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.tl-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tl-tags span {
    font-size: 0.72rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: var(--navy-3);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

/* ========================
   EDUCATION
   ======================== */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.edu-card {
    padding: 1.8rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.edu-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.edu-year {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.edu-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.edu-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.edu-gpa {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.cert-card {
    padding: 1.5rem;
    text-align: center;
}

.cert-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.cert-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cert-year {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.4rem;
    display: block;
}

/* ========================
   ACHIEVEMENTS
   ======================== */
.ach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.ach-card {
    padding: 2rem;
    text-align: center;
}

.ach-card>i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: block;
}

.ach-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}

.ach-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================
   CONTACT
   ======================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2.5rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

a.contact-item:hover {
    color: var(--accent);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item strong {
    color: var(--text);
    font-weight: 500;
}

.social-row {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: var(--navy-3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

/* Form */
.contact-form {
    padding: 2.5rem;
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--navy-2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
}

/* ========================
   FOOTER
   ======================== */
footer {
    background: var(--navy-2);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
    }

    .skills-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 260px;
        background: var(--navy-2);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .nav-links.open {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

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

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-text h1 {
        font-size: 3rem;
    }

    .visa-inner {
        flex-direction: column;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .tl-dot {
        left: -1.5rem;
    }
}

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }
}