/* PROJECT: KADIROVV PORTFOLIO V3
    CONCEPT: NEON ARCHITECT / HIGH-END BACKEND
*/

:root {
    --bg: #020202;
    --primary: #00a1ff;
    --primary-glow: rgba(0, 161, 255, 0.3);
    --text: #ffffff;
    --text-dim: #888888;
    --card-bg: #080808;
    --border: rgba(255, 255, 255, 0.05);
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    overflow-x: hidden; 
    line-height: 1.6; 
}

/* --- BACKGROUND & CURSOR --- */
.grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 161, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 161, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* CURSOR: Professional Blur */
.cursor-glow {
    position: fixed; width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(0, 161, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 100;
    filter: blur(40px); transform: translate(-50%, -50%);
}

/* --- NAVIGATION --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 25px 8%; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid var(--border); 
}

.logo { 
    font-size: 1.3rem; 
    font-weight: 900; 
    letter-spacing: 3px; 
    text-transform: lowercase;
}

.logo span { color: var(--primary); }

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text); 
    font-size: 0.7rem; 
    font-weight: 700; 
    opacity: 0.4; 
    transition: 0.3s; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.nav-links a:hover { 
    opacity: 1; 
    color: var(--primary); 
}

.btn-small { 
    padding: 10px 20px; 
    border: 1px solid var(--primary); 
    color: var(--primary); 
    text-decoration: none; 
    font-size: 0.65rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

.btn-small:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* --- HERO SECTION --- */
.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    padding: 0 8%; 
    position: relative; 
}

.hero-container { 
    display: flex; 
    align-items: center; 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.hero-text-area { 
    flex: 1.2; 
    z-index: 10; 
}

.outline-text { 
    font-size: 0.85rem; 
    font-weight: 800; 
    letter-spacing: 8px; 
    color: var(--primary); 
    display: block; 
    margin-bottom: 15px; 
}

.main-title { 
    font-size: clamp(3.5rem, 9vw, 7.5rem); 
    font-weight: 900; 
    line-height: 0.85; 
    letter-spacing: -4px; 
    margin-bottom: 25px; 
}

.blue-text { 
    color: transparent; 
    -webkit-text-stroke: 1.5px var(--primary); 
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.sub-heading { 
    font-size: 1.15rem; 
    color: var(--text-dim); 
    max-width: 480px; 
    margin-bottom: 45px; 
    border-left: 3px solid var(--primary); 
    padding-left: 25px; 
}

/* --- LIGHT ROD & PORTRAIT --- */
.hero-visual { 
    flex: 1; 
    position: relative; 
    display: flex; 
    justify-content: flex-end; 
}

.portrait-container { 
    position: relative; 
    width: 100%; 
    max-width: 420px; 
    perspective: 1000px; 
}

.portrait-img { 
    width: 100%; 
    border-radius: 4px; 
    filter: grayscale(100%) brightness(0.8) contrast(1.1); 
    transition: 0.8s var(--transition); 
    z-index: 2; 
    position: relative;
}

.light-rod {
    position: absolute;
    left: -25px;
    top: 10%;
    width: 5px;
    height: 80%;
    background: #fff;
    border-radius: 20px;
    z-index: 3;
    /* Multilayered Glow for Realism */
    box-shadow: 
        0 0 10px #fff,
        0 0 30px var(--primary),
        0 0 60px var(--primary),
        -100px 0 150px 30px rgba(0, 161, 255, 0.25); /* The "Ambient Throw" */
}

.portrait-container:hover .portrait-img { 
    filter: grayscale(0%) brightness(1);
    transition: 1s;
}

/* --- COMMON SECTIONS --- */
.container { 
    padding: 120px 8%; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.tag { 
    color: var(--primary); 
    font-size: 0.75rem; 
    font-weight: 800; 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 15px; 
}

h2 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 900; 
    letter-spacing: -2px; 
    margin-bottom: 60px;
}

/* --- IDENTITY --- */
.about-grid { 
    display: grid; 
    grid-template-columns: 1.4fr 1fr; 
    gap: 80px; 
}

.about-text p { 
    font-size: 1.3rem; 
    color: var(--text-dim); 
    margin-bottom: 40px; 
}

.stats { 
    display: flex; 
    gap: 60px; 
}

.stat-item .number { 
    font-size: 3.5rem; 
    font-weight: 900; 
    color: var(--primary); 
    display: block; 
}

.stat-item p { 
    font-size: 0.8rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: #444; 
}

.skill-tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
}

.skill-tags span { 
    padding: 12px 20px; 
    background: var(--card-bg); 
    border: 1px solid #151515; 
    font-size: 0.8rem; 
    font-weight: 600; 
    color: var(--primary); 
}

/* --- AWARDS --- */
.awards-list { 
    border-left: 1px solid #111; 
    padding-left: 50px; 
    margin-left: 20px; 
}

.award-item { 
    position: relative; 
    margin-bottom: 60px; 
}

.award-dot { 
    position: absolute; 
    left: -55.5px; 
    top: 10px; 
    width: 10px; 
    height: 10px; 
    background: var(--primary); 
    border-radius: 50%; 
    box-shadow: 0 0 20px var(--primary); 
}

.award-year { 
    color: var(--primary); 
    font-weight: 900; 
    font-size: 1.1rem; 
    margin-bottom: 8px; 
}

.award-info h3 { 
    font-size: 1.6rem; 
    margin-bottom: 10px; 
}

.award-info p { 
    color: var(--text-dim); 
    max-width: 700px; 
}

/* --- PORTFOLIO --- */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px; 
}

.card { 
    background: var(--card-bg); 
    padding: 50px; 
    border: 1px solid #111; 
    transition: 0.5s var(--transition); 
}

.card:hover { 
    border-color: var(--primary); 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-tag { 
    font-size: 0.65rem; 
    font-weight: 900; 
    color: var(--primary); 
    margin-bottom: 20px; 
    letter-spacing: 2px;
}

.card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.card p { color: var(--text-dim); }

.card-footer { 
    margin-top: 40px; 
    font-weight: 800; 
    font-size: 0.75rem; 
    color: var(--primary); 
    text-transform: uppercase; 
    opacity: 0.5; 
}

/* --- CONTACT --- */
.contact-box { 
    background: #050505; 
    border: 1px solid #111; 
    padding: 80px 10%; 
    text-align: center; 
}

.contact-form { 
    max-width: 750px; 
    margin: 50px auto; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.form-row { 
    display: flex; 
    gap: 20px; 
}

input, textarea { 
    width: 100%; 
    padding: 22px; 
    background: #0a0a0a; 
    border: 1px solid #151515; 
    color: #fff; 
    font-family: inherit; 
    font-size: 1rem; 
    transition: 0.3s; 
}

input:focus, textarea:focus { 
    border-color: var(--primary); 
    outline: none; 
    background: #0d0d0d;
}

.social-links { 
    margin-top: 60px; 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    border-top: 1px solid #111; 
    padding-top: 40px; 
}

.social-links a { 
    color: var(--text-dim); 
    text-decoration: none; 
    font-size: 0.75rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

.social-links a:hover { 
    color: var(--primary); 
    transform: translateY(-5px); 
}

/* --- REVEAL ANIMATIONS --- */
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: 1.5s var(--transition); 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator { 
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%); 
    opacity: 0.4; 
}

.mouse { 
    width: 26px; 
    height: 42px; 
    border: 2px solid #fff; 
    border-radius: 20px; 
    position: relative; 
}

.mouse::before { 
    content: ''; 
    width: 4px; 
    height: 8px; 
    background: #fff; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    top: 10px; 
    border-radius: 2px; 
    animation: scroll 2s infinite; 
}

@keyframes scroll { 
    0% { opacity: 1; top: 10px; } 
    100% { opacity: 0; top: 25px; } 
}

/* --- BUTTONS --- */
.btn-main { 
    padding: 20px 45px; 
    background: var(--primary); 
    color: #fff; 
    text-decoration: none; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    border: none; 
    cursor: pointer; 
    transition: 0.4s; 
}

.btn-main:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(0, 161, 255, 0.3); 
}

.btn-ghost { 
    padding: 20px 45px; 
    border: 1px solid #222; 
    color: #fff; 
    text-decoration: none; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: 0.4s; 
}

.btn-ghost:hover { 
    border-color: var(--primary); 
    background: rgba(0, 161, 255, 0.05); 
}

footer { 
    text-align: center; 
    padding: 60px 0; 
    color: #333; 
    font-size: 0.7rem; 
    letter-spacing: 2px; 
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-title { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text-area { margin-bottom: 60px; }
    .hero-visual { justify-content: center; }
    .sub-heading { border-left: none; padding-left: 0; margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .form-row { flex-direction: column; }
    .nav-links { display: none; } /* Mobile menu needed if complex */
}
:root {
    --bg: #020202;
    --primary: #00a1ff;
    --primary-glow: rgba(0, 161, 255, 0.4);
    --text: #ffffff;
    --text-dim: #888888;
    --card-bg: #080808;
    --border: rgba(255, 255, 255, 0.05);
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.6; }

/* --- BACKGROUND --- */
.grid-overlay { position: fixed; inset: 0; background-image: linear-gradient(rgba(0,161,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,161,255,0.02) 1px, transparent 1px); background-size: 60px 60px; z-index: -1; }
.cursor-glow { position: fixed; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,161,255,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 100; filter: blur(60px); transform: translate(-50%, -50%); }

/* --- NAV --- */

.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.7rem; font-weight: 700; opacity: 0.4; transition: 0.3s; text-transform: uppercase; }
.nav-links a:hover { opacity: 1; color: var(--primary); }

/* --- HERO (REVERTED SIZES + NEW LIGHTING) --- */
.hero { height: 100vh; display: flex; align-items: center; padding: 0 8%; position: relative; overflow: hidden; }

/* The Ambient Lighting "Wash" */
.ambient-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 161, 255, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.hero-container { display: flex; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; z-index: 5; }
.hero-text-area { flex: 1.2; }
.main-title { font-size: clamp(3rem, 8.5vw, 6.8rem); font-weight: 900; line-height: 0.9; letter-spacing: -4px; margin-bottom: 25px; }
.blue-text { color: transparent; -webkit-text-stroke: 1.5px var(--primary); text-shadow: 0 0 40px var(--primary-glow); }
.outline-text { font-size: 0.8rem; font-weight: 800; letter-spacing: 7px; color: var(--primary); display: block; margin-bottom: 15px; }
.sub-heading { font-size: 1.1rem; color: var(--text-dim); max-width: 460px; margin-bottom: 45px; border-left: 2px solid var(--primary); padding-left: 25px; }

/* Portrait & Neon Rod */
.hero-visual { flex: 1; display: flex; justify-content: flex-end; position: relative; }
.portrait-container { position: relative; width: 100%; max-width: 410px; transition: 0.6s var(--transition); }
.portrait-img { width: 100%; border-radius: 2px; filter: grayscale(100%) contrast(1.1); transition: 0.8s var(--transition); z-index: 2; position: relative; }

.light-rod {
    position: absolute;
    left: -15px;
    top: 15%;
    width: 4px;
    height: 70%;
    background: #fff;
    z-index: 3;
    border-radius: 10px;
    /* Soft, Wide Neon Glow */
    box-shadow: 
        0 0 10px #fff,
        0 0 20px var(--primary),
        -20px 0 80px 10px var(--primary-glow),
        -60px 0 150px 30px rgba(0, 161, 255, 0.15); /* Pushes light toward the text */
}

/* --- SECTIONS --- */
.container { padding: 120px 8%; max-width: 1400px; margin: 0 auto; }
.tag { color: var(--primary); font-size: 0.7rem; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; display: block; }
h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 60px; letter-spacing: -2px; }

/* AWARDS LIST */
.awards-list { border-left: 1px solid #111; padding-left: 45px; margin-left: 20px; }
.award-item { position: relative; margin-bottom: 50px; }
.award-dot { position: absolute; left: -50.5px; top: 10px; width: 10px; height: 10px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 15px var(--primary); }
.award-year { color: var(--primary); font-weight: 900; margin-bottom: 5px; }

/* PORTFOLIO CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.card { background: var(--card-bg); padding: 50px; border: 1px solid #111; transition: 0.5s var(--transition); }
.card:hover { border-color: var(--primary); transform: translateY(-8px); }
.card-tag { color: var(--primary); font-size: 0.65rem; font-weight: 800; margin-bottom: 15px; letter-spacing: 2px; }

/* CONTACT */
.contact-box { background: #050505; border: 1px solid #111; padding: 80px 10%; text-align: center; }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
input, textarea { width: 100%; padding: 20px; background: #0a0a0a; border: 1px solid #151515; color: #fff; font-family: inherit; }
input:focus { border-color: var(--primary); outline: none; }
.social-links { margin-top: 50px; display: flex; justify-content: center; gap: 35px; border-top: 1px solid #111; padding-top: 35px; }
.social-links a { color: var(--text-dim); text-decoration: none; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; transition: 0.3s; }
.social-links a:hover { color: var(--primary); transform: translateY(-3px); }

/* --- BUTTONS --- */
.btn-main { padding: 18px 40px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; border: none; cursor: pointer; transition: 0.4s; }
.btn-main:hover { box-shadow: 0 15px 35px var(--primary-glow); transform: translateY(-2px); }
.btn-ghost { padding: 18px 40px; border: 1px solid #222; color: #fff; text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; }

/* --- REVEAL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1.2s var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }

.scroll-indicator { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); opacity: 0.3; }
.mouse { width: 25px; height: 40px; border: 2px solid #fff; border-radius: 20px; position: relative; }
.mouse::before { content: ''; width: 4px; height: 8px; background: #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 8px; border-radius: 2px; animation: scroll 2s infinite; }
@keyframes scroll { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }

footer { text-align: center; padding: 50px 0; color: #333; font-size: 0.7rem; letter-spacing: 2px; }

@media (max-width: 850px) {
    .hero-container { flex-direction: column; text-align: center; margin-top: 80px; }
    .hero-visual { justify-content: center; margin-top: 40px; }
    .sub-heading { margin: 0 auto 40px; border-left: none; padding-left: 0; }
    .form-row { flex-direction: column; }
}


.a-verification {
    text-decoration: none; 
    color: var(--text); 
    font-size: 0.7rem; 
    font-weight: 700; 
    opacity: 0.4; 
    transition: 0.3s; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.a-verification:hover { 
    opacity: 1; 
    color: var(--primary); 
}

/* Disable custom cursor on touch devices to prevent bugs */
@media (hover: none) and (pointer: coarse) {
    .cursor-glow { display: none; }
}

/* --- NAV --- */
nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 8%; position: fixed; width: 100%; top: 0; z-index: 1000; backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.logo { font-size: 1.3rem; font-weight: 900; letter-spacing: 3px; z-index: 1001; }
.logo span { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.7rem; font-weight: 700; opacity: 0.4; transition: 0.3s; text-transform: uppercase; }
.nav-links a:hover { opacity: 1; color: var(--primary); }

.nav-cta { z-index: 1001; }
.btn-small { padding: 10px 20px; border: 1px solid var(--primary); color: var(--primary); text-decoration: none; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; transition: 0.3s; }
.btn-small:hover { background: var(--primary); color: white; box-shadow: 0 0 20px var(--primary-glow); }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.menu-toggle .bar { width: 25px; height: 3px; background-color: var(--text); transition: all 0.3s ease-in-out; }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 8% 0; position: relative; overflow: hidden; }
.ambient-glow { position: absolute; top: 50%; right: 10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 161, 255, 0.15) 0%, transparent 70%); filter: blur(100px); z-index: 1; pointer-events: none; transform: translateY(-50%); }
.hero-container { display: flex; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; z-index: 5; }
.hero-text-area { flex: 1.2; }
.main-title { font-size: clamp(2.8rem, 8vw, 6.8rem); font-weight: 900; line-height: 0.9; letter-spacing: -3px; margin-bottom: 25px; }
.blue-text { color: transparent; -webkit-text-stroke: 1.5px var(--primary); text-shadow: 0 0 40px var(--primary-glow); }
.outline-text { font-size: 0.8rem; font-weight: 800; letter-spacing: 7px; color: var(--primary); display: block; margin-bottom: 15px; }
.sub-heading { font-size: 1.1rem; color: var(--text-dim); max-width: 460px; margin-bottom: 45px; border-left: 2px solid var(--primary); padding-left: 25px; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-visual { flex: 1; display: flex; justify-content: flex-end; position: relative; }
.portrait-container { position: relative; width: 100%; max-width: 410px; transition: 0.6s var(--transition); }
.portrait-img { width: 100%; border-radius: 4px; filter: grayscale(100%) brightness(0.9) contrast(1.1); transition: 0.8s var(--transition); z-index: 2; position: relative; }
.portrait-container:hover .portrait-img { filter: grayscale(0%) brightness(1); transition: 1s; }

.light-rod {
    position: absolute; left: -15px; top: 15%; width: 4px; height: 70%; background: #fff; z-index: 3; border-radius: 10px;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--primary), -20px 0 80px 10px var(--primary-glow), -60px 0 150px 30px rgba(0, 161, 255, 0.15);
}

/* --- SECTIONS --- */
.container { padding: 100px 8%; max-width: 1400px; margin: 0 auto; }
.tag { color: var(--primary); font-size: 0.7rem; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; display: block; }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 50px; letter-spacing: -2px; }

/* IDENTITY */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
.about-text p { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 40px; }
.stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item .number { font-size: 3rem; font-weight: 900; color: var(--primary); display: block; }
.stat-item p { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: #444; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tags span { padding: 10px 18px; background: var(--card-bg); border: 1px solid #151515; font-size: 0.8rem; font-weight: 600; color: var(--primary); }

/* AWARDS */
.awards-list { border-left: 1px solid #111; padding-left: 40px; margin-left: 10px; }
.award-item { position: relative; margin-bottom: 50px; }
.award-dot { position: absolute; left: -45.5px; top: 10px; width: 10px; height: 10px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 15px var(--primary); }
.award-year { color: var(--primary); font-weight: 900; margin-bottom: 5px; }
.award-info h3 { font-size: 1.4rem; margin-bottom: 10px; }
.award-info p { color: var(--text-dim); }
.a-verification { display: inline-block; margin-top: 10px; text-decoration: none; color: var(--text); font-size: 0.7rem; font-weight: 700; opacity: 0.4; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.a-verification:hover { opacity: 1; color: var(--primary); }

/* PORTFOLIO */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.card { background: var(--card-bg); padding: 40px; border: 1px solid #111; transition: 0.5s var(--transition); }
.card:hover { border-color: var(--primary); transform: translateY(-8px); }
.card-tag { color: var(--primary); font-size: 0.65rem; font-weight: 800; margin-bottom: 15px; letter-spacing: 2px; }

/* CONTACT */
.contact-box { background: #050505; border: 1px solid #111; padding: 60px 5%; text-align: center; }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
input, textarea { width: 100%; padding: 18px; background: #0a0a0a; border: 1px solid #151515; color: #fff; font-family: inherit; }
input:focus, textarea:focus { border-color: var(--primary); outline: none; }
.social-links { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; border-top: 1px solid #111; padding-top: 35px; }
.social-links a { color: var(--text-dim); text-decoration: none; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; transition: 0.3s; }
.social-links a:hover { color: var(--primary); transform: translateY(-3px); }

/* BUTTONS */
.btn-main, .btn-ghost { display: inline-block; padding: 18px 35px; text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; cursor: pointer; border: none; text-align: center; }
.btn-main { background: var(--primary); color: #fff; }
.btn-main:hover { box-shadow: 0 15px 35px var(--primary-glow); transform: translateY(-2px); }
.btn-ghost { border: 1px solid #222; color: #fff; background: transparent; }
.btn-ghost:hover { border-color: var(--primary); background: rgba(0, 161, 255, 0.05); }

/* ANIMATIONS & EXTRAS */
.reveal { opacity: 0; transform: translateY(30px); transition: 1.2s var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }
.scroll-indicator { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); opacity: 0.3; display: none; } /* Hidden on mobile by default */
footer { text-align: center; padding: 40px 0; color: #333; font-size: 0.7rem; letter-spacing: 2px; }

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Navbar to Hamburger Menu */
    .menu-toggle { display: flex; }
    .nav-links { 
        position: fixed; top: 0; left: -100%; width: 100vw; height: 100vh; 
        background: rgba(2, 2, 2, 0.98); flex-direction: column; justify-content: center; align-items: center; 
        transition: 0.5s ease; z-index: 1000; gap: 40px; 
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.5rem; opacity: 1; }
    .nav-cta { display: none; } /* Hide CTA button on small screens to fit menu */

    /* Hero Section Adjustments */
    .hero { padding: 120px 5% 50px; height: auto; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-visual { justify-content: center; margin-top: 60px; width: 100%; }
    .sub-heading { margin: 0 auto 40px; border-left: none; padding-left: 0; }
    .hero-actions { justify-content: center; }
    .ambient-glow { width: 300px; height: 300px; right: 50%; transform: translate(50%, -50%); }

    /* General Padding */
    .container { padding: 80px 5%; }
    h2 { margin-bottom: 40px; }
    
    /* Contact Form */
    .form-row { flex-direction: column; gap: 15px; }
    .btn-main, .btn-ghost { width: 100%; }

    /* Awards */
    .awards-list { padding-left: 25px; }
    .award-dot { left: -30.5px; }
}