/* ==========================================
   UP Police Cyber Security Internship Journey
   Google-Inspired Premium Tech Stylesheet
   ========================================== */

:root {
    --google-blue: #a855f7; /* Neon Violet */
    --google-red: #06b6d4; /* Electric Cyan */
    --google-yellow: #f59e0b; /* Golden Amber */
    --google-green: #10b981; /* Emerald Mint */
    
    /* Default Light Mode */
    --bg-dark: #f8fafc;
    --card-bg-glass: rgba(255, 255, 255, 0.75);
    --border-color-glass: rgba(168, 85, 247, 0.08);
    
    --primary-color: #a855f7;
    --secondary-color: #06b6d4;
    
    --primary-glow: rgba(168, 85, 247, 0.08);
    --accent-glow: rgba(6, 182, 212, 0.08);
    
    --text-color: #0f172a;
    --text-secondary: #475569;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body.dark-theme {
    --bg-dark: #070214;
    --card-bg-glass: rgba(18, 9, 38, 0.65);
    --border-color-glass: rgba(168, 85, 247, 0.25);
    --primary-glow: rgba(168, 85, 247, 0.35);
    --accent-glow: rgba(6, 182, 212, 0.35);
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
}

/* Base Subpage Styles */
body.internship-page {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-image: radial-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    overflow-x: hidden;
    position: relative;
}

body.internship-page::before, body.internship-page::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

body.internship-page::before {
    top: 15%;
    left: -15%;
    animation: float1 25s ease-in-out infinite;
}

body.internship-page::after {
    top: 55%;
    right: -15%;
    animation: float2 30s ease-in-out infinite;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 100px) scale(1.15); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -70px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Page Intro/Hero Header */
.internship-hero {
    position: relative;
    padding: 10rem 0 5rem 0;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.12), transparent 60%);
    overflow: hidden;
}

.internship-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--bg-dark));
    z-index: 1;
}

.hero-meta-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--google-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.hero-meta-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--google-blue);
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7); }
    70% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
    100% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.internship-hero h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.internship-hero h1 span.highlight-gblue {
    background: linear-gradient(135deg, var(--text-color) 30%, var(--google-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .internship-hero h1 span.highlight-gblue {
    background: linear-gradient(135deg, #fff 30%, var(--google-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.internship-hero .hero-org {
    color: var(--text-secondary);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
}

.internship-hero .hero-org strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Quick Stats Bar */
.internship-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-pill-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color-glass);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-pill-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.stat-pill-card i {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.stat-pill-card.blue i { color: var(--google-blue); }
.stat-pill-card.red i { color: var(--google-red); }
.stat-pill-card.yellow i { color: var(--google-yellow); }
.stat-pill-card.green i { color: var(--google-green); }

.stat-pill-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.stat-pill-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Down Indicator */
.hero-scroll-prompt {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-scroll-prompt:hover {
    color: var(--google-blue);
}

.hero-scroll-prompt i {
    animation: bounceSlow 2s infinite;
}

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Page Content Split Layout */
.internship-content-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 4rem;
    padding-bottom: 8rem;
}

/* Sidebar Index Menu */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--google-blue);
    padding-left: 0.75rem;
}

.day-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    border-radius: 20px;
    padding: 0.85rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow-y: auto;
    max-height: calc(100vh - 230px);
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 85, 247, 0.3) transparent;
}

.day-nav-list::-webkit-scrollbar {
    width: 4px;
}

.day-nav-list::-webkit-scrollbar-track {
    background: transparent;
}

.day-nav-list::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.3);
    border-radius: 10px;
}

.day-nav-list::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.6);
}

.day-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 0.85rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    width: 100%;
}

.day-nav-item a:hover {
    color: var(--text-color);
    background: var(--nav-link-hover-bg, rgba(0, 0, 0, 0.03));
    border-color: var(--border-color-glass);
}

.day-nav-item.active a {
    color: var(--primary-color);
    background: var(--nav-link-hover-bg, rgba(168, 85, 247, 0.08));
    border-left: 3px solid var(--google-blue);
    border-color: rgba(168, 85, 247, 0.2) rgba(168, 85, 247, 0.05) rgba(168, 85, 247, 0.05) rgba(168, 85, 247, 0.2);
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.03),
        inset 1px 0 0 rgba(168, 85, 247, 0.3);
}

.day-nav-item .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.15rem;
}

.day-nav-item .nav-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #475569;
    transition: color 0.25s;
}

.day-nav-item.active .nav-label {
    color: var(--google-blue);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.day-nav-item .nav-dot {
    width: 5px;
    height: 5px;
    background-color: #334155;
    border-radius: 50%;
    transition: all 0.25s ease;
}

@keyframes pulseDot {
    0% { transform: scale(1.2); box-shadow: 0 0 5px var(--day-accent); }
    50% { transform: scale(1.7); box-shadow: 0 0 15px var(--day-accent); }
    100% { transform: scale(1.2); box-shadow: 0 0 5px var(--day-accent); }
}

.day-nav-item.active .nav-dot {
    animation: pulseDot 2s infinite ease-in-out;
}

/* Dynamic Scroll-spy Sidebar Theme Colors */
.day-nav-item.active.active-blue a {
    border-left: 3px solid #00c6ff;
    background: linear-gradient(90deg, rgba(0, 198, 255, 0.1) 0%, rgba(0, 198, 255, 0.02) 100%);
    box-shadow: inset 1px 0 0 rgba(0, 198, 255, 0.3);
}
.day-nav-item.active.active-blue .nav-label {
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.4);
}
.day-nav-item.active.active-blue .nav-dot {
    background-color: #00c6ff;
    box-shadow: 0 0 8px #00c6ff;
}

.day-nav-item.active.active-red a {
    border-left: 3px solid #ff0844;
    background: linear-gradient(90deg, rgba(255, 8, 68, 0.1) 0%, rgba(255, 8, 68, 0.02) 100%);
    box-shadow: inset 1px 0 0 rgba(255, 8, 68, 0.3);
}
.day-nav-item.active.active-red .nav-label {
    color: #ff0844;
    text-shadow: 0 0 10px rgba(255, 8, 68, 0.4);
}
.day-nav-item.active.active-red .nav-dot {
    background-color: #ff0844;
    box-shadow: 0 0 8px #ff0844;
}

.day-nav-item.active.active-yellow a {
    border-left: 3px solid #f5d020;
    background: linear-gradient(90deg, rgba(245, 208, 32, 0.1) 0%, rgba(245, 208, 32, 0.02) 100%);
    box-shadow: inset 1px 0 0 rgba(245, 208, 32, 0.3);
}
.day-nav-item.active.active-yellow .nav-label {
    color: #f5d020;
    text-shadow: 0 0 10px rgba(245, 208, 32, 0.4);
}
.day-nav-item.active.active-yellow .nav-dot {
    background-color: #f5d020;
    box-shadow: 0 0 8px #f5d020;
}

.day-nav-item.active.active-green a {
    border-left: 3px solid #38ef7d;
    background: linear-gradient(90deg, rgba(56, 239, 125, 0.1) 0%, rgba(56, 239, 125, 0.02) 100%);
    box-shadow: inset 1px 0 0 rgba(56, 239, 125, 0.3);
}
.day-nav-item.active.active-green .nav-label {
    color: #38ef7d;
    text-shadow: 0 0 10px rgba(56, 239, 125, 0.4);
}
.day-nav-item.active.active-green .nav-dot {
    background-color: #38ef7d;
    box-shadow: 0 0 8px #38ef7d;
}

.day-nav-item .nav-subject {
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.25s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: left;
}

.day-nav-item.active .nav-subject {
    color: #e2e8f0;
}

/* Timeline Core Design */
.timeline-journey {
    position: relative;
    padding-left: 3rem;
}

.timeline-journey::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 7.5px;
    width: 3px;
    height: calc(100% - 30px);
    background: linear-gradient(180deg, 
        var(--google-blue) 0%, 
        var(--google-red) 25%, 
        var(--google-yellow) 50%, 
        var(--google-green) 75%, 
        var(--google-blue) 100%);
    border-radius: 10px;
    opacity: 0.8;
}

@keyframes timelineFlow {
    0% {
        top: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.timeline-journey::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 6.5px;
    width: 5px;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green), transparent);
    filter: blur(1px);
    border-radius: 10px;
    animation: timelineFlow 7s linear infinite;
    z-index: 1;
}

/* Timeline Cards */
.timeline-card-wrapper {
    position: relative;
    margin-bottom: 5rem;
}

.timeline-node-dot {
    position: absolute;
    left: -3rem;
    top: 25px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 4px solid #475569;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-card-wrapper.active-focus .timeline-node-dot {
    transform: translateX(-50%) scale(1.25);
}

/* Rotating accent themes per day card (Vibrant Gradients) */
.day-theme-blue {
    --day-accent: #00c6ff;
    --day-accent-rgb: 0, 198, 255;
    --day-gradient: linear-gradient(135deg, #00c6ff, #0072ff);
    --day-glow: rgba(0, 198, 255, 0.15);
}
.day-theme-red {
    --day-accent: #ff0844;
    --day-accent-rgb: 255, 8, 68;
    --day-gradient: linear-gradient(135deg, #ff0844, #ffb199);
    --day-glow: rgba(255, 8, 68, 0.15);
}
.day-theme-yellow {
    --day-accent: #f5d020;
    --day-accent-rgb: 245, 208, 32;
    --day-gradient: linear-gradient(135deg, #f5d020, #f53803);
    --day-glow: rgba(245, 208, 32, 0.15);
}
.day-theme-green {
    --day-accent: #38ef7d;
    --day-accent-rgb: 56, 239, 125;
    --day-gradient: linear-gradient(135deg, #11998e, #38ef7d);
    --day-glow: rgba(56, 239, 125, 0.15);
}

.timeline-card-wrapper.active-focus .timeline-node-dot {
    background: var(--day-gradient);
    border-color: #fff !important;
    box-shadow: 0 0 20px var(--day-accent), 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) scale(1.35);
}

.timeline-card-wrapper .timeline-node-dot {
    border-color: var(--day-accent);
    box-shadow: 0 0 8px var(--day-glow);
}

.timeline-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color-glass);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Mouse-tracking spot-light glow overlay */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--day-accent-rgb), 0.1), transparent 45%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--day-accent-rgb), 0.5);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.05),
        0 0 25px rgba(var(--day-accent-rgb), 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Left Accent Light Line inside timeline card */
.timeline-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--day-gradient);
    box-shadow: 0 0 12px var(--day-accent);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card:hover::after {
    width: 6px;
    opacity: 1;
}

/* Premium Floating Cyber SVGs inside Timeline Cards */
.timeline-card-svg-emblem {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    opacity: 0.05;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 0;
    animation: floatSVG 6s ease-in-out infinite;
}

.timeline-card:hover .timeline-card-svg-emblem {
    opacity: 0.15;
    transform: scale(1.2) rotate(8deg);
}

.day-theme-blue .timeline-card-svg-emblem { color: var(--day-accent); fill: currentColor; filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.3)); }
.day-theme-red .timeline-card-svg-emblem { color: var(--day-accent); fill: currentColor; filter: drop-shadow(0 0 12px rgba(255, 8, 68, 0.3)); }
.day-theme-yellow .timeline-card-svg-emblem { color: var(--day-accent); fill: currentColor; filter: drop-shadow(0 0 12px rgba(245, 208, 32, 0.3)); }
.day-theme-green .timeline-card-svg-emblem { color: var(--day-accent); fill: currentColor; filter: drop-shadow(0 0 12px rgba(56, 239, 125, 0.3)); }

.day-theme-blue:hover .timeline-card-svg-emblem { color: #fff; filter: drop-shadow(0 0 22px rgba(0, 198, 255, 0.8)); }
.day-theme-red:hover .timeline-card-svg-emblem { color: #fff; filter: drop-shadow(0 0 22px rgba(255, 8, 68, 0.8)); }
.day-theme-yellow:hover .timeline-card-svg-emblem { color: #fff; filter: drop-shadow(0 0 22px rgba(245, 208, 32, 0.8)); }
.day-theme-green:hover .timeline-card-svg-emblem { color: #fff; filter: drop-shadow(0 0 22px rgba(56, 239, 125, 0.8)); }

@keyframes floatSVG {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* Card Header */
.card-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.day-number-label {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--day-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -1.5px;
}

.day-subject-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem;
    background: rgba(var(--day-accent-rgb), 0.06);
    border: 1px solid rgba(var(--day-accent-rgb), 0.18);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--day-accent);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-card:hover .day-subject-badge {
    background: rgba(var(--day-accent-rgb), 0.12);
    border-color: rgba(var(--day-accent-rgb), 0.35);
    box-shadow: 0 4px 20px rgba(var(--day-accent-rgb), 0.25);
    transform: scale(1.02);
}

.day-subject-badge i {
    color: var(--day-accent);
}

.timeline-card h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
}

/* Card Body Blocks */
.card-body-section {
    margin-bottom: 1.5rem;
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.card-body-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--day-accent);
    transition: width 0.3s ease;
    opacity: 0.8;
}

.card-body-section:hover {
    background: rgba(var(--day-accent-rgb), 0.04);
    border-color: rgba(var(--day-accent-rgb), 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.card-body-section:hover::before {
    width: 6px;
}

.card-body-section.learnings-box::before {
    display: none;
}

.card-body-section h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body-section h4 i {
    color: var(--day-accent);
}

.card-body-section ul {
    list-style: none;
    padding-left: 0.25rem;
}

.card-body-section ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-body-section ul li:hover {
    transform: translateX(6px);
    color: var(--text-color);
}

.card-body-section ul li::before {
    content: '→';
    font-family: inherit;
    font-weight: 700;
    position: absolute;
    left: 0;
    color: var(--day-accent);
    transition: all 0.3s ease;
}

.card-body-section ul li:hover::before {
    color: #ffffff;
    text-shadow: 0 0 10px var(--day-accent);
    transform: translateX(2px);
}

.card-body-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.card-body-section.learnings-box {
    background: rgba(var(--day-accent-rgb), 0.05);
    border: 1px solid rgba(var(--day-accent-rgb), 0.35);
    border-left: 5px solid var(--day-accent);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: inset 0 0 20px rgba(var(--day-accent-rgb), 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.timeline-card:hover .card-body-section.learnings-box {
    border-color: rgba(var(--day-accent-rgb), 0.35);
    background: linear-gradient(135deg, rgba(var(--day-accent-rgb), 0.06) 0%, rgba(15, 23, 42, 0.6) 100%);
    box-shadow: 0 8px 25px rgba(var(--day-accent-rgb), 0.08), inset 0 0 20px rgba(var(--day-accent-rgb), 0.03);
}

.timeline-card-action-footer {
    margin-top: 1.5rem;
    text-align: right;
    position: relative;
    z-index: 3;
}

.timeline-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--day-accent);
    text-decoration: none;
    border: 1px solid rgba(var(--day-accent-rgb), 0.2);
    padding: 0.55rem 1.15rem;
    border-radius: 30px;
    background: rgba(var(--day-accent-rgb), 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-action-btn i.fa-linkedin {
    color: #0a66c2;
    transition: color 0.3s ease;
}

.timeline-action-btn:hover {
    background: var(--day-accent);
    color: #fff !important;
    border-color: var(--day-accent);
    box-shadow: 0 0 15px rgba(var(--day-accent-rgb), 0.4);
    transform: translateY(-2px);
}

.timeline-action-btn:hover i.fa-linkedin {
    color: #020617;
}

/* ==========================================================================
   Split Sessions Layout
   ========================================================================== */
.session-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* Vertical divider line on desktop */
.session-split-grid::after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.12) 30%, 
        rgba(255, 255, 255, 0.12) 70%, 
        rgba(255, 255, 255, 0.03) 100%
    );
    transform: translateX(-50%);
}

.session-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.session-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.session-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--day-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(var(--day-accent-rgb), 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(var(--day-accent-rgb), 0.15);
    width: fit-content;
    box-shadow: 0 4px 15px rgba(var(--day-accent-rgb), 0.05);
    transition: all 0.3s ease;
}

.timeline-card:hover .session-label {
    background: rgba(var(--day-accent-rgb), 0.12);
    border-color: rgba(var(--day-accent-rgb), 0.25);
    box-shadow: 0 4px 20px rgba(var(--day-accent-rgb), 0.1);
}

.session-col h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.25rem 0;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.session-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.session-col ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.55;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.session-col ul li:hover {
    transform: translateX(6px);
    color: #ffffff;
}

.session-col ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--day-accent);
    font-family: inherit;
    font-weight: 700;
    transition: all 0.3s ease;
}

.session-col ul li:hover::before {
    color: #ffffff;
    text-shadow: 0 0 10px var(--day-accent);
}

/* Responsiveness for session grid */
@media (max-width: 992px) {
    .session-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .session-split-grid::after {
        display: none; /* Hide vertical line on stack */
    }
    
    /* Add a horizontal line separator between stacked sessions */
    .session-col.morning {
        padding-bottom: 1.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}


/* Photo Gallery Grid inside Timeline Card */
.day-photo-gallery {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.day-photo-gallery h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.gallery-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
    group: hover;
    transition: all 0.3s ease;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HUD Overlay on hover */
.hud-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
    padding: 1rem;
}

.hud-image-overlay i {
    font-size: 1.5rem;
    color: var(--day-accent);
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-image-overlay span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

/* Scanner Laser Line effect inside gallery preview */
.gallery-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--day-accent), transparent);
    box-shadow: 0 0 8px var(--day-accent);
    z-index: 3;
    opacity: 0;
    transform: translateY(-20px);
    transition: transform 0s;
}

.gallery-image-wrapper:hover::after {
    opacity: 1;
    animation: scannerLoop 2s linear infinite;
}

@keyframes scannerLoop {
    0% { transform: translateY(0); }
    100% { transform: translateY(150px); }
}

.gallery-image-wrapper:hover img {
    transform: scale(1.08);
}

.gallery-image-wrapper:hover .hud-image-overlay {
    opacity: 1;
}

.gallery-image-wrapper:hover .hud-image-overlay i,
.gallery-image-wrapper:hover .hud-image-overlay span {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 23, 0.96);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(168, 85, 247, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-image {
    transform: scale(1);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(8px);
}

.lightbox-nav-btn:hover {
    background: var(--google-blue);
    color: #fff;
    border-color: var(--google-blue);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 600px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.lightbox-index-indicator {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin-top: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s, background-color 0.3s;
    backdrop-filter: blur(8px);
}

.lightbox-close-btn:hover {
    color: #fff;
    background-color: var(--google-red);
    border-color: var(--google-red);
    transform: rotate(90deg);
}

/* Gallery Load More Button */
.gallery-load-more-btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(6, 182, 212, 0.04));
    border: 1px solid var(--border-color-glass);
    color: #cbd5e1;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-load-more-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.1));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
}

.gallery-load-more-btn:active {
    transform: translateY(0);
}

.gallery-load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .prev-btn {
        left: -15px;
    }
    .next-btn {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
        background: rgba(15, 23, 42, 0.85);
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .lightbox-image {
        max-height: 60vh;
    }
    .lightbox-caption {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Floating Navigation Back & Skip Buttons */
.back-to-home-btn, .skip-to-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-home-btn {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    color: #e2e8f0;
}

.back-to-home-btn:hover {
    border-color: rgba(168, 85, 247, 0.5);
    color: var(--google-blue);
    transform: translateX(-4px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.2);
}

.skip-to-gallery-btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--border-color-glass);
    color: #fff;
}

.skip-to-gallery-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(6, 182, 212, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* ==========================================
   Responsive Adaptations
   ========================================== */

@media (max-width: 1024px) {
    .internship-content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Top horizontal navigation indicator carousel on smaller viewports */
    .sidebar-sticky {
        position: sticky;
        top: 80px;
        z-index: 100;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        background: rgba(2, 6, 23, 0.9);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .sidebar-title {
        display: none;
    }
    
    .day-nav-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: none;
        background: transparent;
        padding: 0.25rem 0;
        gap: 0.5rem;
        border-radius: 0;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    
    .day-nav-list::-webkit-scrollbar {
        display: none; /* Hide scrollbar Webkit */
    }
    
    .day-nav-item a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .day-nav-item.active a {
        border-left: none;
        border-bottom: 2px solid var(--google-blue);
        background: rgba(168, 85, 247, 0.1);
    }
    
    .day-nav-item .nav-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-journey {
        padding-left: 2rem;
    }
    
    .timeline-journey::before {
        left: 5px;
    }
    
    .timeline-node-dot {
        left: -2rem;
        width: 16px;
        height: 16px;
        border-width: 3px;
        top: 22px;
    }
    
    .timeline-card {
        padding: 1.5rem;
    }
    
    .day-number-label {
        font-size: 1.8rem;
    }
    
    .timeline-card h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .card-body-section {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .timeline-journey {
        padding-left: 1.5rem;
    }
    
    .timeline-journey::before {
        left: 3px;
        width: 2px;
    }
    
    .timeline-node-dot {
        left: -1.5rem;
        width: 12px;
        height: 12px;
        border-width: 2px;
        top: 20px;
    }
    
    .card-header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Phase 1: Selection Journey & Government Styling
   ========================================== */

.selection-journey-section {
    padding: 4rem 0;
    border-bottom: 1px dashed rgba(168, 85, 247, 0.15);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.selection-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.selection-title-wrapper i {
    font-size: 2.2rem;
    color: var(--google-blue);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}

.selection-title-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.selection-title-wrapper h2 span {
    color: var(--google-blue);
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.selection-step-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color-glass);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.selection-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--google-blue);
    box-shadow: 0 0 10px var(--google-blue);
}

.selection-step-card.success-step::before {
    background-color: var(--google-green);
    box-shadow: 0 0 10px var(--google-green);
}

.selection-step-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 85, 247, 0.1);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--google-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.selection-step-card.success-step .step-num {
    color: var(--google-green);
}

.selection-step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.selection-step-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-date {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step-badge-check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid rgba(52, 168, 83, 0.2);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--google-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Emblem styling */
.gov-hero-emblem {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
    animation: emblemPulse 4s infinite ease-in-out;
}

@keyframes emblemPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4)); }
}

/* Fix mobile styles for sidebar anchors when Horizontal scroll-spy subnav is active */
@media (max-width: 1024px) {
    .day-nav-item a {
        padding: 0.5rem 0.75rem;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .day-nav-item .nav-header {
        margin-bottom: 0;
        width: auto;
    }
    
    .day-nav-item .nav-subject {
        display: none; /* Hide subheadings on mobile horizontal navigation list to save screen space */
    }
}

/* ==========================================
   Hero Dual & Triple Brand Emblems Layout
   ========================================== */
.hero-emblem-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-brand-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.6);
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(168, 85, 247, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-brand-logo:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3), 0 0 25px rgba(168, 85, 247, 0.35);
    border-color: rgba(168, 85, 247, 0.4);
}

@media (max-width: 576px) {
    .hero-emblem-row {
        gap: 1.25rem;
    }
    .hero-brand-logo {
        width: 70px;
        height: 70px;
        padding: 4px;
    }
    .gov-hero-emblem {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================
   Program Leadership & Mentors Sections
   ========================================== */
.mentors-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark), rgba(2, 6, 23, 0.8), var(--bg-dark));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mentor-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.08), transparent 60%);
    z-index: 0;
    transition: opacity 0.4s ease;
}

.mentor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.5);
    background: var(--card-bg-glass);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
}

.mentor-card:hover::before {
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent 60%);
}

.mentor-avatar-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.mentor-avatar-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
    z-index: 0;
    padding: 2px;
    opacity: 0.75;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.mentor-card:hover .mentor-avatar-border {
    transform: rotate(180deg);
    opacity: 1;
}

.mentor-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0f172a;
    z-index: 1;
    position: relative;
    background: #020617;
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
    letter-spacing: -0.2px;
}

.mentor-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--google-blue);
    margin-bottom: 0.75rem;
    z-index: 1;
    position: relative;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.mentor-organization {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.mentor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: auto;
    z-index: 1;
    position: relative;
}

.mentor-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    border-radius: 6px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mentor-card:hover .mentor-tag {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
    color: var(--primary-color);
}

/* Coordinating Team Section Styling */
.coordinators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coordinator-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coordinator-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 168, 83, 0.3);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 12px 30px -12px rgba(52, 168, 83, 0.2);
}

.coordinator-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 1.25rem;
    z-index: 1;
}

.coordinator-avatar-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--google-green), var(--google-blue));
    z-index: 0;
    padding: 1.5px;
    opacity: 0.6;
    transition: transform 0.4s ease;
}

.coordinator-card:hover .coordinator-avatar-border {
    transform: rotate(-180deg);
    opacity: 0.9;
}

.coordinator-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0f172a;
    z-index: 1;
    position: relative;
    background: #020617;
}

.coordinator-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    z-index: 1;
}

.coordinator-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--google-green);
    margin-bottom: 0.5rem;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coordinator-info {
    font-size: 0.8rem;
    color: #94a3b8;
    z-index: 1;
}

/* ==========================================
   Dedicated Interactive Media Gallery Styles
   ========================================== */
.gallery-section {
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.05), transparent 60%);
}

/* Redesigned Gallery Command Bar & Tabs Switcher */
.gallery-command-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto 3rem auto;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gallery-tab-switcher {
    display: flex;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.25rem;
    gap: 0.25rem;
}

.gallery-tab-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.gallery-tab-btn:hover {
    color: #fff;
}

.gallery-tab-btn.active {
    background: linear-gradient(135deg, var(--google-blue), #00c6ff);
    color: #fff;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.gallery-action-btn {
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.1), rgba(17, 153, 142, 0.15));
    border: 1px solid rgba(56, 239, 125, 0.3);
    color: #38ef7d;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.05);
}

.gallery-action-btn:hover {
    border-color: #38ef7d;
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.25), rgba(17, 153, 142, 0.3));
    color: #fff;
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.35);
    transform: translateY(-2px);
}

.gallery-action-btn:active {
    transform: translateY(0);
}

.gallery-action-btn i {
    color: #38ef7d;
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.gallery-action-btn:hover i {
    transform: rotate(180deg);
}

/* Dedicated Grid size and layout for Gallery Section */
.gallery-section .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-section .gallery-image-wrapper {
    aspect-ratio: 4/3;
    border: 1px solid rgba(6, 182, 212, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --day-accent: var(--primary-color); /* Set day-accent variable for laser overlay color */
}

.gallery-section .gallery-image-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

/* Premium Image Placeholder HUD (glassmorphic fallback design) */
.image-placeholder-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 1px dashed rgba(6, 182, 212, 0.25);
    border-radius: 12px;
    gap: 0.75rem;
    transition: all 0.3s ease;
    padding: 1rem;
    text-align: center;
}

.image-placeholder-hud i {
    font-size: 2.2rem;
    color: rgba(6, 182, 212, 0.35);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.2));
    transition: all 0.3s ease;
}

.image-placeholder-hud span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-image-wrapper:hover .image-placeholder-hud {
    color: #fff;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(6, 182, 212, 0.05));
}

.gallery-image-wrapper:hover .image-placeholder-hud i {
    color: var(--primary-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px var(--primary-color));
}

/* Mobile Responsiveness adjustments for Gallery filters */
@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .gallery-filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    .gallery-section {
        padding: 4rem 0;
    }
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
}

/* ==========================================================================
   Program Gallery Highlights Slider & Archive Redesign
   ========================================================================== */
.gallery-slider-wrapper {
    position: relative;
    margin: 3rem 0;
    padding: 0 1rem;
}

.gallery-slider-container {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    padding: 1rem 0;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
}

.gallery-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-slider-container:active {
    cursor: grabbing;
}

.gallery-slide-card {
    flex: 0 0 420px;
    scroll-snap-align: start;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(6, 182, 212, 0.15);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide-card:hover img {
    transform: scale(1.08);
}

.gallery-slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.4) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.slide-card-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slide-card-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    width: fit-content;
}

.slide-card-hud h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Slider Nav Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    color: #fff;
}

.slider-nav-btn.prev {
    left: -20px;
}

.slider-nav-btn.next {
    right: -20px;
}

/* Slider Progress Bar */
.slider-progress-wrapper {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.1s ease;
}

/* Archive Panel & Toggle Button */
.gallery-archive-toggle-wrapper {
    text-align: center;
    margin: 4rem 0 2rem 0;
}

.archive-toggle-btn {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
}

.archive-toggle-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.archive-toggle-btn .toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.archive-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Collapsible Panel styling */
.gallery-archive-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.gallery-archive-panel.expanded {
    max-height: 10000px; /* high dummy value to allow expansion */
    opacity: 1;
}

/* Redesigned Gallery Command Bar & Tabs Switcher Responsiveness */
@media (max-width: 768px) {
    .gallery-command-bar {
        flex-direction: column;
        border-radius: 24px;
        padding: 1.25rem;
        gap: 1.25rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .gallery-tab-switcher {
        width: 100%;
        justify-content: space-between;
    }

    .gallery-tab-btn {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-action-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
    }
}

/* Media responsive adjustments for gallery slides */
@media (max-width: 1024px) {
    .gallery-slide-card {
        flex: 0 0 350px;
    }
    .slider-nav-btn {
        display: none; /* Rely on scroll/touch drag on tablet & mobile */
    }
}

@media (max-width: 576px) {
    .gallery-slide-card {
        flex: 0 0 280px;
    }
}

/* ==========================================================================
   Personal Reflection Section (13-Day Journey) Styling
   ========================================================================== */
.reflection-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08), transparent 50%);
}

.reflection-card {
    position: relative;
    background: var(--card-bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color-glass);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--card-shadow);
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reflection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--google-blue), var(--google-red));
}

.reflection-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.1);
}

.reflection-glow-field {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.reflection-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.reflection-quote-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--google-blue), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.reflection-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
    margin: 0;
}

.reflection-body {
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.reflection-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.reflection-body p:last-child {
    margin-bottom: 0;
}

.reflection-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.reflection-signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sig-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.sig-title {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reflection-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    color: var(--google-blue);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.reflection-badge i {
    font-size: 0.95rem;
}

/* Responsiveness for Reflection Section */
@media (max-width: 768px) {
    .reflection-card {
        padding: 2.25rem;
    }
    .reflection-header {
        gap: 1rem;
    }
    .reflection-quote-icon {
        font-size: 2rem;
    }
    .reflection-body p {
        font-size: 1rem;
        text-align: left;
    }
    .reflection-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding-top: 1.5rem;
    }
}

/* Navigation Scroll Spy & Link Highlights */
.main-nav ul li a {
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-red));
    transition: width 0.3s ease;
}

.main-nav ul li a.active {
    color: var(--google-blue) !important;
    font-weight: 600;
}

.main-nav ul li a.active::after {
    width: 100%;
}

/* ==========================================================================
   Achievements & Recognition (Awards Section) Styling
   ========================================================================== */
.awards-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(251, 188, 5, 0.05), transparent 40%);
}

.awards-highlight-banner {
    background: linear-gradient(135deg, rgba(251, 188, 5, 0.15) 0%, rgba(234, 67, 53, 0.05) 100%);
    border: 1px solid rgba(251, 188, 5, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    box-shadow: 0 0 40px rgba(251, 188, 5, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.awards-highlight-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(251, 188, 5, 0.1) 50%, transparent 55%);
    animation: shineSweep 6s infinite linear;
    pointer-events: none;
}

@keyframes shineSweep {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(30%, 30%) rotate(0deg); }
}

.award-badge-premium {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 10%, var(--google-yellow) 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(251, 188, 5, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.award-badge-premium i {
    color: var(--google-yellow);
    filter: drop-shadow(0 0 10px rgba(251, 188, 5, 0.6));
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.award-item-card {
    background: var(--card-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.award-item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 188, 5, 0.4);
    box-shadow: 0 20px 40px rgba(251, 188, 5, 0.15);
}

.award-media-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    background: rgba(2, 6, 23, 0.6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-item-card:hover .award-photo {
    transform: scale(1.05);
}

.award-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(251, 188, 5, 0.1), rgba(2, 6, 23, 0.9));
    color: var(--google-yellow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.award-placeholder i {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(251, 188, 5, 0.4));
    animation: floatIcon 3s infinite ease-in-out;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.award-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.award-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.award-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.award-card-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* ==========================================================================
   LinkedIn Coverage Section Styling
   ========================================================================== */
.linkedin-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.05), transparent 40%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.linkedin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.linkedin-post-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
}

.linkedin-post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.li-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.li-profile-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.li-profile-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.li-author-info {
    display: flex;
    flex-direction: column;
}

.li-author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.li-post-date {
    font-size: 0.75rem;
    color: #64748b;
}

.li-brand-icon {
    font-size: 1.5rem;
    color: #0a66c2;
    filter: drop-shadow(0 0 5px rgba(10, 102, 194, 0.3));
}

.li-card-body {
    margin-bottom: 1.5rem;
}

.li-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.li-card-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1rem;
}

.li-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.li-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--google-blue);
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.25);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.li-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.li-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.li-action-btn:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.4);
    transform: translateY(-1px);
}

/* ==========================================================================
   LinkedIn Slider / Carousel Styling
   ========================================================================== */
.linkedin-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.linkedin-carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    padding: 1.5rem 0.5rem;
}

.linkedin-carousel-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari/Webkit */
}

.linkedin-carousel-track .linkedin-post-card {
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 cards on desktop */
    scroll-snap-align: start;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .linkedin-carousel-track .linkedin-post-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards on tablet */
    }
    .linkedin-carousel-container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .linkedin-carousel-track .linkedin-post-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    .linkedin-carousel-container {
        padding: 0;
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(8px);
}

.carousel-nav-btn:hover {
    background: var(--google-blue);
    border-color: var(--google-blue);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    color: #fff;
}

.carousel-nav-btn.prev {
    left: 0.5rem;
}

.carousel-nav-btn.next {
    right: 0.5rem;
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none; /* Hide navigation buttons on mobile, use swipe instead */
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--google-blue);
    width: 24px;
    border-radius: 10px;
}

.li-card-day {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(168, 85, 247, 0.12);
    color: var(--google-blue);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 20px;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.linkedin-post-card:hover .li-card-day {
    background: var(--google-blue);
    color: #fff;
    border-color: var(--google-blue);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.cta-home-btn:hover {
    background: #357ae8 !important;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.7) !important;
}

.cta-home-btn.secondary-cta {
    background: transparent !important;
    border: 1.5px solid rgba(234, 67, 53, 0.4) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(234, 67, 53, 0.15) !important;
}

.cta-home-btn.secondary-cta:hover {
    background: rgba(234, 67, 53, 0.1) !important;
    border-color: rgba(234, 67, 53, 0.8) !important;
    box-shadow: 0 0 25px rgba(234, 67, 53, 0.4) !important;
    transform: translateY(-2px);
}


/* Flight Journey Map styles */
.flight-journey-container {
    background: rgba(18, 9, 38, 0.45);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 24px;
    padding: 2.2rem 2.5rem;
    margin: 3.5rem auto 1.5rem auto;
    max-width: 650px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.flight-route-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    position: relative;
}

.route-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    z-index: 2;
}

.flag-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.route-node:hover .flag-icon-circle {
    transform: scale(1.12);
    border-color: #06b6d4;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
}

.flag-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.node-info {
    margin-top: 0.75rem;
}

.country-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.airport-code {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1px;
    font-weight: 500;
}

.route-path-svg-wrapper {
    flex-grow: 1;
    height: 90px;
    position: relative;
    margin: 0 -10px;
}

.journey-arc-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trail-glow-line {
    stroke-dasharray: 490;
    stroke-dashoffset: 490;
    animation: glowTrail 6s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes glowTrail {
    0% {
        stroke-dashoffset: 490;
    }
    100% {
        stroke-dashoffset: -490;
    }
}

.flying-plane {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* offset-path synced with the SVG arc path */
    offset-path: path('M 10 90 Q 240 -15 470 90');
    /* auto = browser computes tangent angle exactly; plane SVG nose points right */
    offset-rotate: auto;
    animation: flightTransition 5s infinite ease-in-out;
    z-index: 10;
    filter: drop-shadow(0 0 6px rgba(6,182,212,0.9)) drop-shadow(0 0 14px rgba(168,85,247,0.5));
}

.plane-svg-icon {
    width: 40px;
    height: 40px;
    display: block;
}

/* Contrail: animated dotted line that draws behind the plane */
.trail-glow-line {
    stroke-dasharray: 490;
    stroke-dashoffset: 490;
    animation: glowTrail 5s infinite ease-in-out;
}

@keyframes flightTransition {
    0% {
        offset-distance: 2%;
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    100% {
        offset-distance: 98%;
        opacity: 0;
    }
}

.flight-journey-status {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #cbd5e1;
    text-align: center;
    background: rgba(168, 85, 247, 0.07);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.05);
}

.flight-journey-status span {
    font-weight: 600;
}

@media (max-width: 600px) {
    .flight-journey-container {
        padding: 1.5rem 1rem;
        transform: scale(0.92);
        margin: 2rem auto 0.5rem auto;
    }
    .route-node {
        width: 100px;
    }
    .flag-icon-circle {
        width: 50px;
        height: 50px;
    }
    .country-name {
        font-size: 0.9rem;
    }
    .airport-code {
        font-size: 0.7rem;
    }
    .route-path-svg-wrapper {
        height: 70px;
    }
    .flying-plane {
        offset-path: path('M 5 70 Q 150 -10 295 70');
        font-size: 1rem;
    }
}


/* Advanced Flight Journey CSS Upgrades */
@keyframes gradientBorder {
    0% { border-color: rgba(168, 85, 247, 0.25); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(168, 85, 247, 0.08); }
    50% { border-color: rgba(6, 182, 212, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(6, 182, 212, 0.22); }
    100% { border-color: rgba(16, 185, 129, 0.25); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(16, 185, 129, 0.08); }
}

.flight-journey-container {
    animation: gradientBorder 8s infinite alternate ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Diagonal Scanline Overlay */
.radar-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.02) 25%, transparent 25%, transparent 50%, rgba(168, 85, 247, 0.02) 50%, rgba(168, 85, 247, 0.02) 75%, transparent 75%, transparent);
    background-size: 8px 8px;
    z-index: 1;
    pointer-events: none;
}

.radar-grid-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Radar Sonar Pulse Waves */
.radar-ping-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
    z-index: 3;
}

.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.pulse-violet {
    background: rgba(168, 85, 247, 0.35);
    animation: pingSonar 2.5s infinite cubic-bezier(0, 0, 0.2, 1);
}

.pulse-cyan {
    background: rgba(6, 182, 212, 0.35);
    animation: pingSonar 2.5s infinite cubic-bezier(0, 0, 0.2, 1);
}

.sonar-wave.delay-1 {
    animation-delay: 1.25s;
}

@keyframes pingSonar {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Coordinates Styling */
.coordinates {
    display: block;
    font-family: monospace;
    font-size: 0.65rem;
    color: #06b6d4;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Flight Path trail glow sync — override with correct 5s duration */
.trail-glow-line {
    animation: glowTrail 5s infinite ease-in-out;
}

@media (max-width: 600px) {
    .coordinates {
        font-size: 0.55rem;
        margin-bottom: 0.35rem;
    }
    .radar-ping-wrapper {
        width: 50px;
        height: 50px;
    }
}


/* ==========================================================================
   AIT-INTERNSHIP.CSS — MOBILE RESPONSIVE OVERHAUL
   AIT Bangkok Global Innovation Internship Subpage
   ========================================================================== */

/* ---- Fluid Typography ---- */
.internship-hero h1 {
    font-size: clamp(1.75rem, 5.5vw, 3.5rem) !important;
    line-height: 1.2;
}

/* Touch action on interactive elements */
.day-selector-btn, .gallery-load-more-btn, .cta-btn, .cta-home-btn {
    touch-action: manipulation;
}

/* iOS form zoom prevention */
input, textarea, select {
    font-size: 16px;
}

/* ---- 1024px: Tablet ---- */
@media (max-width: 1024px) {
    /* Journey layout stacked */
    .journey-layout {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .journey-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        top: auto !important;
    }

    /* Day selector scrollable row */
    .day-selector {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .day-selector-btn {
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Stats grid 2col */
    .internship-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Mentor grid 2col */
    .mentors-grid,
    .program-roster-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Gallery grid 2col */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ---- 768px: Large Phones ---- */
@media (max-width: 768px) {
    .internship-hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .internship-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Flight journey — tighter layout */
    .flight-journey-container {
        padding: 1.5rem 1.25rem;
        margin: 2rem auto 1rem;
        max-width: 100%;
    }

    .flight-route-wrapper {
        gap: 0.25rem;
    }

    .flag-icon-circle {
        width: 55px;
        height: 55px;
    }

    .country-name {
        font-size: 0.9rem;
    }

    .airport-code {
        font-size: 0.68rem;
    }

    .route-path-svg-wrapper {
        height: 80px;
    }

    .flying-plane {
        width: 30px;
        height: 30px;
    }
    .plane-svg-icon {
        width: 30px;
        height: 30px;
    }

    /* CTA stack */
    .cta-buttons-group,
    .cta-action-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.85rem;
    }
    .cta-btn, .cta-home-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

/* ---- 480px: Small Phones ---- */
@media (max-width: 480px) {
    /* Stats single col */
    .internship-stats-grid {
        grid-template-columns: 1fr !important;
    }

    /* Gallery single col */
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    /* Flight container — xs */
    .flight-journey-container {
        padding: 1.25rem 0.85rem;
        border-radius: 16px;
    }

    .flag-icon-circle {
        width: 48px;
        height: 48px;
    }

    .coordinates {
        font-size: 0.55rem;
        letter-spacing: 0;
    }

    .route-path-svg-wrapper {
        height: 65px;
    }

    .flying-plane {
        width: 26px;
        height: 26px;
        offset-path: path('M 5 65 Q 150 -8 290 65');
    }
    .plane-svg-icon {
        width: 26px;
        height: 26px;
    }

    .radar-grid-svg {
        display: none; /* Simplify on very small screens */
    }

    .flight-journey-status {
        font-size: 0.8rem;
        padding: 0.6rem 0.85rem;
    }

    /* Radar overlay too heavy on small screens */
    .radar-scanline {
        opacity: 0.3;
    }

    /* Day selector xs */
    .day-selector-btn {
        flex: 0 0 calc(33.33% - 0.35rem);
        font-size: 0.72rem;
        padding: 0.4rem 0.5rem;
    }
}

/* ---- 375px: iPhone SE / Very Small ---- */
@media (max-width: 375px) {
    .flag-icon-circle {
        width: 40px;
        height: 40px;
    }

    .country-name {
        font-size: 0.78rem;
    }

    .airport-code {
        font-size: 0.6rem;
    }

    .coordinates {
        display: none; /* Too cramped at 375px */
    }

    .sonar-wave {
        display: none; /* Simplify pulse animations */
    }

    .route-path-svg-wrapper {
        height: 55px;
    }

    .flying-plane {
        width: 22px;
        height: 22px;
        offset-path: path('M 5 50 Q 100 -5 195 50');
    }
    .plane-svg-icon {
        width: 22px;
        height: 22px;
    }

    .flight-journey-status span {
        font-size: 0.75rem;
    }

    .day-selector-btn {
        flex: 0 0 calc(50% - 0.25rem);
    }

    .internship-hero h1 {
        font-size: 1.5rem !important;
    }
}

/* ==========================================
   Featured Project Showcase: BusSetu
   ========================================== */
.project-showcase-section {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05), transparent 40%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.project-showcase-card {
    background: var(--card-bg-glass);
    border: 1.5px solid var(--border-color-glass);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(16px);
}

.project-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 50%);
    pointer-events: none;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.project-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.project-meta-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgba(14, 165, 233, 0.3));
}

.project-action-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.project-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.project-btn-secondary {
    background: var(--nav-link-hover-bg);
    border: 1.5px solid var(--border-color-glass);
    color: var(--text-color);
    font-weight: 700;
}

.project-btn-secondary:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.5);
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Right column team card */
.team-details-card {
    background: var(--card-bg-glass);
    border: 1.5px solid var(--border-color-glass);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    position: relative;
    box-shadow: var(--card-shadow);
}

.team-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.team-structure-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-structure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-structure-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.team-structure-item:last-child {
    border-bottom: none;
}

.team-role {
    color: #94a3b8;
}

.team-count {
    color: #fff;
    font-weight: 700;
}

.coming-soon-banner {
    margin-top: 1.5rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px dashed rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fdba74;
    font-size: 0.88rem;
}

.coming-soon-banner i {
    font-size: 1.1rem;
}

/* Responsiveness for project grid */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .project-showcase-card {
        padding: 2.5rem 2rem;
    }
}

/* Visibility overrides in light mode */
.timeline-item p,
.log-day-details p,
.log-card p,
.stat-label,
.selection-step p,
.reflection-card p,
.mentor-card p,
.hero-desc,
.intro-subtext,
.program-roster-section p,
.project-meta-desc,
.team-role {
    color: var(--text-secondary) !important;
}

.log-day-details h4,
.log-card h4,
.selection-step h4,
.reflection-card h4,
.mentor-card h4,
.project-title,
.team-name {
    color: var(--text-color) !important;
}

/* --- LIGHT THEME ADAPTATIONS (DEFAULT) --- */
body.internship-page {
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
}

.timeline-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.timeline-card:hover {
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.06),
        0 0 25px rgba(var(--day-accent-rgb), 0.08);
    border-color: rgba(var(--day-accent-rgb), 0.4);
}

.day-nav-list {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.day-nav-item a {
    color: var(--text-secondary);
}

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

.day-nav-item.active a {
    color: #fff !important;
}

.card-body-section.learnings-box {
    background: linear-gradient(135deg, rgba(var(--day-accent-rgb), 0.02) 0%, var(--card-bg-glass) 100%);
}

.timeline-card:hover .card-body-section.learnings-box {
    background: linear-gradient(135deg, rgba(var(--day-accent-rgb), 0.05) 0%, var(--card-bg-glass) 100%);
}

.card-body-section p {
    color: var(--text-secondary);
}

.mentor-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
}

.mentor-card:hover {
    background: var(--card-bg-glass);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 15px 40px -15px rgba(168, 85, 247, 0.15);
}

.mentor-role {
    color: var(--text-secondary);
}

.reflection-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.reflection-card:hover {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 20px 45px rgba(168, 85, 247, 0.08);
}

.reflection-quote {
    color: var(--text-color);
}

.reflection-sig-title {
    color: var(--text-secondary);
}

.timeline-card h2 {
    background: linear-gradient(90deg, var(--text-color), var(--day-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    color: var(--text-color) !important;
}

.project-showcase-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.04),
        0 0 25px rgba(14, 165, 233, 0.08);
}

.project-title {
    color: var(--text-color) !important;
    background: linear-gradient(90deg, var(--text-color), #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.project-desc {
    color: var(--text-secondary) !important;
}

.project-meta-list .project-meta-item {
    color: var(--text-secondary) !important;
}

.team-details-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-color-glass);
}

.team-structure-title {
    color: var(--text-color) !important;
}

.team-structure-item {
    border-bottom: 1px solid var(--border-color-glass) !important;
}

.team-role {
    color: var(--text-secondary) !important;
}

.team-count {
    color: var(--text-color) !important;
}

.project-btn-secondary {
    border: 1px solid var(--border-color-glass);
    color: var(--text-color);
}
.project-btn-secondary:hover {
    background: var(--nav-link-hover-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* --- DARK THEME OVERRIDES --- */
body.dark-theme.internship-page {
    background-image: radial-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px);
}

body.dark-theme .timeline-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(2, 6, 23, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-theme .timeline-card:hover {
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.65),
        0 0 35px rgba(var(--day-accent-rgb), 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.dark-theme .day-nav-list {
    background: rgba(15, 23, 42, 0.45);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-theme .day-nav-item a {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-theme .day-nav-item:hover a {
    color: #fff;
}

body.dark-theme .card-body-section.learnings-box {
    background: linear-gradient(135deg, rgba(var(--day-accent-rgb), 0.03) 0%, rgba(15, 23, 42, 0.45) 100%);
}

body.dark-theme .timeline-card:hover .card-body-section.learnings-box {
    background: linear-gradient(135deg, rgba(var(--day-accent-rgb), 0.06) 0%, rgba(15, 23, 42, 0.6) 100%);
}

body.dark-theme .card-body-section p {
    color: #cbd5e1;
}

body.dark-theme .mentor-card {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .mentor-card:hover {
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 15px 40px -15px rgba(168, 85, 247, 0.25), 0 0 20px rgba(168, 85, 247, 0.05);
}

body.dark-theme .mentor-role {
    color: #94a3b8;
}

body.dark-theme .reflection-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-theme .reflection-card:hover {
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-theme .reflection-sig-title {
    color: #94a3b8;
}

body.dark-theme .timeline-card h2 {
    background: linear-gradient(90deg, #ffffff, var(--day-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .stat-number {
    color: #fff !important;
}

body.dark-theme .project-showcase-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(8, 12, 30, 0.8) 100%);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(14, 165, 233, 0.15),
        inset 0 0 15px rgba(14, 165, 233, 0.05);
}

body.dark-theme .project-title {
    color: #fff !important;
    background: linear-gradient(90deg, #fff, #38bdf8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
body.dark-theme .project-desc {
    color: #94a3b8 !important;
}
body.dark-theme .project-meta-list .project-meta-item {
    color: #cbd5e1 !important;
}

body.dark-theme .team-details-card {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(14, 165, 233, 0.15);
}

body.dark-theme .team-structure-title {
    color: #fff !important;
}
body.dark-theme .team-structure-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
body.dark-theme .team-role {
    color: #94a3b8 !important;
}
body.dark-theme .team-count {
    color: #fff !important;
}

body.dark-theme .project-btn-secondary {
    border-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}
body.dark-theme .project-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.dark-theme .stat-pill-card h3 {
    color: #fff;
}

body.dark-theme .stat-pill-card p {
    color: #94a3b8;
}

body.dark-theme .day-nav-list {
    background: rgba(15, 23, 42, 0.45);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-theme .day-nav-item a:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .day-nav-item.active a {
    color: #fff;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.02) 100%);
}

body.dark-theme .timeline-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(2, 6, 23, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-theme .timeline-card:hover {
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.65),
        0 0 35px rgba(var(--day-accent-rgb), 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.dark-theme .timeline-card h2 {
    background: linear-gradient(90deg, #ffffff, var(--day-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

body.dark-theme .card-body-section {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.03);
}

body.dark-theme .card-body-section h4 {
    color: #94a3b8;
}

body.dark-theme .card-body-section ul li {
    color: #cbd5e1;
}

body.dark-theme .card-body-section ul li:hover {
    color: #ffffff;
}

body.dark-theme .card-body-section p {
    color: #cbd5e1;
}

body.dark-theme .card-body-section.learnings-box {
    background: linear-gradient(135deg, rgba(var(--day-accent-rgb), 0.03) 0%, rgba(15, 23, 42, 0.45) 100%);
}

body.dark-theme .mentor-card {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .mentor-card:hover {
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 15px 40px -15px rgba(168, 85, 247, 0.25), 0 0 20px rgba(168, 85, 247, 0.05);
}

body.dark-theme .mentor-name {
    color: #ffffff;
}

body.dark-theme .mentor-organization {
    color: #94a3b8;
}

body.dark-theme .mentor-tag {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

body.dark-theme .mentor-card:hover .mentor-tag {
    color: #fff;
}

body.dark-theme .reflection-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-theme .reflection-card:hover {
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-theme .reflection-header h2 {
    background: linear-gradient(135deg, #ffffff 40%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

body.dark-theme .reflection-body p {
    color: #cbd5e1;
}

body.dark-theme .sig-name {
    background: linear-gradient(90deg, #ffffff, var(--google-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

