/* CSS Variables for Deep Space Theme */
:root {
    --bg-space-dark: #13001f;
    --bg-space-mid: #090011;
    --bg-space-deep: #040008;
    
    --primary-glow: #ff52a2; /* Hot Pink */
    --secondary-glow: #a76eff; /* Lavender Violet */
    --accent-pink: #ff8ac2; /* Soft Pastel Pink */
    
    --text-primary: #fbf0f6;
    --text-secondary: #e2cce0;
    --text-muted: #af9ba9;
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 82, 162, 0.25);
    --glass-glow: rgba(255, 82, 162, 0.15);
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

/* Light Theme Variables */
body.light-mode {
    --bg-space-dark: #fff0f5; /* Lavender Blush */
    --bg-space-mid: #ffe3f0; /* Pastel Soft Pink */
    --bg-space-deep: #fff9fc; /* Snowy Rose */
    
    --primary-glow: #d6006e; /* Deep Magenta */
    --secondary-glow: #803bff; /* Deep Lavender */
    --accent-pink: #ff4d9c; /* Vibrant Pink */
    
    --text-primary: #2a081a; /* Dark Berry */
    --text-secondary: #5c2d46;
    --text-muted: #8e5e78;
    
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(214, 0, 110, 0.08);
    --glass-border-hover: rgba(214, 0, 110, 0.2);
    --glass-glow: rgba(255, 82, 162, 0.08);
}

body.light-mode .gradient-text {
    background: linear-gradient(135deg, #150f24 10%, var(--secondary-glow) 50%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.light-mode .circle-bg {
    stroke: rgba(0, 0, 0, 0.05);
}
body.light-mode .profile-avatar {
    background: #ffffff;
}
body.light-mode .meta-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
}
body.light-mode .skill-badge {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}
body.light-mode .skill-badge:hover {
    background: rgba(99, 5, 214, 0.05);
    border-color: rgba(99, 5, 214, 0.2);
    color: var(--text-primary);
}
body.light-mode .contact-detail-item:hover .icon-wrapper {
    color: var(--text-primary);
}
body.light-mode .form-group input, body.light-mode .form-group textarea {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}
body.light-mode .form-group input:focus, body.light-mode .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.04);
}
body.light-mode .center-star {
    background: radial-gradient(circle, #ffffff 20%, var(--primary-glow) 60%, transparent 100%);
}
body.light-mode .planet-3 {
    background: #000000;
}

/* Light Theme Contrast Overrides */
body.light-mode .section-title,
body.light-mode .about-bio h3,
body.light-mode .education-main h3,
body.light-mode .metric-info h3,
body.light-mode .metric-value,
body.light-mode .contact-info h3,
body.light-mode .contact-form-container h3 {
    color: var(--text-primary);
}

body.light-mode .btn-secondary {
    color: var(--text-primary);
    border-color: var(--primary-glow);
}

body.light-mode .btn-secondary:hover {
    background: rgba(255, 82, 162, 0.04);
    box-shadow: 0 0 20px rgba(255, 82, 162, 0.2);
}

body.light-mode .quote-box p {
    color: var(--text-primary);
}

body.light-mode .nav-link:hover,
body.light-mode .nav-link.active {
    color: var(--primary-glow);
    background: rgba(255, 82, 162, 0.05);
    box-shadow: 0 0 15px rgba(255, 82, 162, 0.1) inset;
}

body.light-mode .header {
    background: rgba(255, 240, 246, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 0 30px rgba(255, 82, 162, 0.05);
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-space-deep);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Galaxy Background Canvas */
#galaxy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at center, var(--bg-space-mid) 0%, var(--bg-space-deep) 100%);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-space-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 82, 162, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 82, 162, 0.6);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Typography & Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, var(--secondary-glow) 50%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 30px rgba(255, 82, 162, 0.4);
}

.accent-glow {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--secondary-glow);
}

.dot {
    color: var(--secondary-glow);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--secondary-glow);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    font-family: var(--font-accent);
    color: var(--secondary-glow);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.8rem;
    color: var(--secondary-glow);
    filter: drop-shadow(0 0 8px var(--secondary-glow));
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-glow), var(--primary-glow));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 82, 162, 0.12), 0 0 1px 1px rgba(255, 82, 162, 0.18) inset;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 82, 162, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(255, 82, 162, 0.8), 0 0 0 4px rgba(255, 82, 162, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--secondary-glow);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 245, 255, 0.05);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.4);
    transform: translateY(-3px);
}

.btn i {
    transition: var(--transition-quick);
}

.btn:hover i {
    transform: translateX(4px);
}

/* Header & Floating Navigation */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: 70px;
    background: rgba(19, 0, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 82, 162, 0.1);
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-accent);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: var(--transition-quick);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.15) inset;
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-primary);
}

.theme-toggle {
    font-size: 1.15rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    margin-left: 1.5rem;
    z-index: 1001;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-glow);
    border-color: var(--secondary-glow);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.25);
    transform: scale(1.05);
}

body.light-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.03);
}

body.light-mode .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 15px rgba(99, 5, 214, 0.25);
}

/* Sections Global */
section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.hero-content {
    flex: 1.2;
    z-index: 10;
}

.welcome-text {
    font-family: var(--font-accent);
    color: var(--secondary-glow);
    font-weight: 600;
    letter-spacing: 5px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
    min-height: 40px;
    font-family: var(--font-accent);
}

.hero-tagline #typing-text {
    background: linear-gradient(90deg, var(--secondary-glow), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    color: var(--accent-pink);
    animation: blink 0.8s infinite;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

/* Pure CSS Solar System / Constellation Animation */
.constellation-graphic {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-star {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffffff 20%, var(--primary-glow) 60%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    z-index: 5;
    animation: pulseGlow 4s infinite alternate;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(167, 110, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-1 {
    width: 160px;
    height: 160px;
    animation: rotateOrbit 12s linear infinite;
}

.orbit-2 {
    width: 250px;
    height: 250px;
    animation: rotateOrbit 20s linear infinite reverse;
}

.orbit-3 {
    width: 340px;
    height: 340px;
    animation: rotateOrbit 30s linear infinite;
}

.planet {
    position: absolute;
    border-radius: 50%;
}

.planet-1 {
    width: 14px;
    height: 14px;
    background: var(--secondary-glow);
    top: -7px;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.planet-2 {
    width: 18px;
    height: 18px;
    background: var(--accent-pink);
    right: -9px;
    box-shadow: 0 0 20px var(--accent-pink);
}

.planet-3 {
    width: 12px;
    height: 12px;
    background: #ffffff;
    bottom: -6px;
    box-shadow: 0 0 10px #ffffff;
}

/* About Section CSS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: stretch;
}

.profile-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-frame::after {
    content: '';
    position: absolute;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border: 2px dashed rgba(255, 82, 162, 0.3);
    border-radius: 50%;
    animation: rotateOrbit 25s linear infinite;
}

.glowing-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-glow), var(--primary-glow), var(--accent-pink));
    border-radius: 50%;
    animation: rotateOrbit 8s linear infinite;
    z-index: 1;
}

.profile-avatar {
    width: 94%;
    height: 94%;
    background: var(--bg-space-dark);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.profile-avatar img.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-icon {
    font-size: 4.5rem;
    color: var(--secondary-glow);
    filter: drop-shadow(0 0 15px var(--secondary-glow));
    animation: hoverFloating 3s ease-in-out infinite alternate;
}

.about-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.role-badge {
    color: var(--secondary-glow);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.meta-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.icon-glow {
    font-size: 1.2rem;
    color: var(--secondary-glow);
    text-shadow: 0 0 10px var(--secondary-glow);
}

.meta-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-item strong {
    font-size: 0.95rem;
    color: #ffffff;
}

.about-bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.about-bio h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-bio p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.quote-box {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 82, 162, 0.05);
    border-left: 4px solid var(--primary-glow);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    color: rgba(255, 82, 162, 0.1);
    z-index: 0;
}

.quote-box p {
    font-style: italic;
    color: #ffffff;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
}

/* Education Dashboard CSS */
.education-dashboard {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pulse-beacon-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.pulse-beacon {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-glow);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--secondary-glow);
    animation: beaconPulse 2s infinite;
}

.status-tag {
    font-family: var(--font-accent);
    color: var(--secondary-glow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.education-main h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.college-title {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.duration {
    font-family: var(--font-accent);
    color: var(--accent-pink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.education-main .description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.education-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.education-highlights i {
    font-size: 1rem;
    color: var(--secondary-glow);
    width: 24px;
}

/* Metrics subgrid */
.education-metrics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.radial-progress-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.radial-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.circle-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314.159;
    transition: stroke-dashoffset 2s ease-out;
}

.circle-10th {
    stroke: var(--secondary-glow);
    filter: drop-shadow(0 0 6px var(--secondary-glow));
}

.circle-12th {
    stroke: var(--primary-glow);
    filter: drop-shadow(0 0 6px var(--primary-glow));
}

.metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.metric-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.metric-info .marks {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.score-highlight {
    color: var(--accent-pink);
    font-weight: 700;
}

.metric-info .metric-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Skills Grid Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.skills-category-card {
    display: flex;
    flex-direction: column;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cat-icon {
    font-size: 1.6rem;
    color: var(--secondary-glow);
}

.skills-category-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.cat-intro {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-quick);
}

.skill-badge i {
    font-size: 1rem;
}

.skill-badge:hover {
    background: rgba(125, 18, 255, 0.05);
    border-color: rgba(125, 18, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 18, 255, 0.15);
}

/* Custom Skill Icon Colors */
.py-color { color: #3776AB; }
.sql-color { color: #00F5FF; }
.java-color { color: #E76F51; }
.html-color { color: #E34F26; }
.css-color { color: #1572B6; }
.js-color { color: #F7DF1E; }

/* Contact Section CSS */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3, .contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(125, 18, 255, 0.1);
    border: 1px solid rgba(125, 18, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-glow);
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(125, 18, 255, 0.1);
    transition: var(--transition-quick);
}

.contact-detail-item:hover .icon-wrapper {
    background: rgba(0, 245, 255, 0.15);
    border-color: var(--secondary-glow);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    transform: scale(1.05);
}

.contact-detail-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-item strong {
    font-size: 1rem;
    color: var(--text-primary);
}

/* Social Orbit Icons */
.social-orbits {
    display: flex;
    gap: 1.25rem;
}

.social-link-orb {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-link-orb:hover {
    color: #ffffff;
    background: rgba(125, 18, 255, 0.1);
    border-color: var(--primary-glow);
    box-shadow: 0 0 20px rgba(125, 18, 255, 0.4);
    transform: translateY(-4px) rotate(360deg);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary-glow);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.15), 0 0 1px 1px rgba(0, 245, 255, 0.1) inset;
}

.form-btn {
    align-self: flex-start;
    border: none;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-family: var(--font-accent);
    display: none;
}

.form-status.success {
    color: var(--secondary-glow);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
    display: block;
}

.form-status.error {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(236, 56, 188, 0.3);
    display: block;
}

/* Footer CSS */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 21, 0.8);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stellar-tag {
    font-family: var(--font-accent);
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Keyframes Animations */
@keyframes blink {
    50% { opacity: 0; }
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(125, 18, 255, 0.3);
        transform: scale(0.95);
    }
    to {
        box-shadow: 0 0 50px var(--primary-glow), 0 0 100px rgba(125, 18, 255, 0.6);
        transform: scale(1.05);
    }
}

@keyframes hoverFloating {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-8px);
    }
}

@keyframes beaconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 245, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 255, 0);
    }
}

/* Scroll-Reveal Base Setup */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-anim {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .welcome-text { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.2s; }
.hero-content .hero-tagline { animation-delay: 0.3s; }
.hero-content .hero-description { animation-delay: 0.4s; }
.hero-content .hero-buttons { animation-delay: 0.5s; }
.hero-visual { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        gap: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .about-grid, .education-dashboard, .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    section {
        padding: 4rem 0 2rem;
        min-height: auto;
    }

    .header {
        width: 95%;
        padding: 0 1.5rem;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 21, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding: 6rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Mobile light mode menu styles */
    body.light-mode .nav-menu {
        background: rgba(255, 240, 246, 0.98);
        border-left: 1px solid rgba(214, 0, 110, 0.08);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }
    
    body.light-mode .nav-link {
        color: var(--text-secondary);
    }
    
    body.light-mode .nav-link:hover,
    body.light-mode .nav-link.active {
        color: var(--primary-glow);
        background: rgba(255, 82, 162, 0.05);
    }
    
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 2rem;
        min-height: 100vh;
    }
    
    .hero-description {
        margin: 0 auto 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .constellation-graphic {
        width: 280px;
        height: 280px;
    }
    
    .orbit-1 { width: 130px; height: 130px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 270px; height: 270px; }
    
    .about-grid, .education-dashboard, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .education-metrics {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-tagline {
        font-size: 1.3rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .glass-card {
        padding: 1.5rem;
    }
    .metric-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}