/* 
 * NexaSecure Tech - Professional Design System v2.0
 * Theme: Elite Cyber Defense / Ultra-Modern Dark
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
    /* Core Professional Palette */
    --bg-deep: #050811;
    --bg-surface: #0A0F1E;
    --bg-card: rgba(13, 20, 38, 0.6);

    --accent-blue: #00D1FF;
    --accent-glow: rgba(0, 209, 255, 0.4);
    --accent-purple: #7000FF;
    --accent-neon: #39FF14;

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* System Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Base Level Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img,
iframe,
video {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Premium Visual Effects */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

.glow-overlay {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* Glassmorphism 2.0 */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glass-hover:hover {
    border-color: rgba(0, 209, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 209, 255, 0.1);
    transform: translateY(-5px);
}

/* Layout System */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.container-narrow-left {
    max-width: 700px;
    margin-bottom: 80px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        backdrop-filter: blur(20px);
        z-index: 2000;
        padding: 100px 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(0, 209, 255, 0.1);
        display: block !important;
    }

    .desktop-nav.active {
        right: 0;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    }

    .desktop-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 2001;
    }
}

/* Flex & Alignment Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.justify-start {
    justify-content: flex-start;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.gap-0-5 {
    gap: 0.5rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-1-5 {
    gap: 1.5rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-2-5 {
    gap: 2.5rem;
}

.gap-3 {
    gap: 3rem;
}

.gap-4 {
    gap: 4rem;
}

.gap-5 {
    gap: 5rem;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 12px;
}

/* Navigation Overhaul */
#main-header {
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(5, 8, 17, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#main-header.scrolled {
    height: 70px;
    background: rgba(5, 8, 17, 0.85);
    border-bottom: 1px solid rgba(0, 209, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.list-none {
    list-style: none !important;
}

/* Status Components */
.status-secure {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-neon);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    box-shadow: 0 0 10px var(--accent-neon);
    animation: pulse-neon 2s infinite;
}

@keyframes pulse-neon {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* High-End Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.2);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 209, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 209, 255, 0.05);
}

.p-header-btn {
    padding: 0.6rem 1.5rem;
}

.p-1-2 {
    padding: 1.2rem;
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, #FFF 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
}

.fs-3-5 {
    font-size: 3.5rem;
}

.fs-3 {
    font-size: 3rem;
}

.fs-2-5 {
    font-size: 2.5rem;
}

.fs-2 {
    font-size: 2rem;
}

.fs-1-75 {
    font-size: 1.75rem;
}

.fs-1-5 {
    font-size: 1.5rem;
}

.fs-1-4 {
    font-size: 1.4rem;
}

.fs-1-25 {
    font-size: 1.25rem;
}

.fs-1-2 {
    font-size: 1.2rem;
}

.fs-1-15 {
    font-size: 1.15rem;
}

.fs-1-1 {
    font-size: 1.1rem;
}

.fs-0-95 {
    font-size: 0.95rem;
}

.fs-0-9 {
    font-size: 0.9rem;
}

.fs-0-85 {
    font-size: 0.85rem;
}

.fs-0-8 {
    font-size: 0.8rem;
}

.fs-0-7 {
    font-size: 0.7rem;
}

.fs-5rem {
    font-size: 5rem;
}

.fs-6rem {
    font-size: 6rem;
}

.lh-1-5 {
    line-height: 1.5;
}

.lh-1-6 {
    line-height: 1.6;
}

.lh-1-8 {
    line-height: 1.8;
}

.ls-tight {
    letter-spacing: -0.5px;
}

.ls-widest {
    letter-spacing: 2px;
}

.text-center {
    text-align: center;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-secondary-light {
    color: var(--text-secondary);
    font-weight: 300;
}

.text-muted {
    color: var(--text-muted);
}

.text-muted-ls {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.color-primary {
    color: var(--text-primary);
}

.color-blue {
    color: var(--accent-blue);
}

.color-purple {
    color: var(--accent-purple);
}

.color-neon {
    color: var(--accent-neon);
}

.color-white {
    color: #FFF;
}

/* Spacing Utilities */
.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.m-auto-80 {
    margin: 0 auto 80px;
}

.m-auto-20 {
    margin: 0 auto 20px;
}

.p-1rem {
    padding: 1rem;
}

.p-20 {
    padding: 20px;
}

.p-24 {
    padding: 24px;
}

.p-3rem {
    padding: 3rem;
}

.p-80-0-40 {
    padding: 80px 0 40px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-80 {
    padding-top: 80px;
}

/* Component Styles */
.footer-logo-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-38 {
    width: 38px;
}

.h-38 {
    height: 38px;
}

.br-10 {
    border-radius: 10px;
}

.br-md {
    border-radius: var(--border-radius-md);
}

.br-lg {
    border-radius: var(--border-radius-lg);
}

.logo-img {
    width: 24px;
    filter: brightness(0) invert(1);
}

.logo-img-sm {
    width: 18px;
    filter: brightness(0) invert(1);
}

.shadow-glow-blue {
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

/* Footer Components */
.border-top-glow {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-glow-bottom {
    border-bottom: 1px solid rgba(0, 209, 255, 0.1);
}

.cap-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.op-5 {
    opacity: 0.5;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-item {
    margin-bottom: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 209, 255, 0.2);
    border-color: var(--accent-blue);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    padding: 8px 15px;
    border-radius: 8px;
    background: var(--accent-blue);
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
}

/* Page Specific Decorations */
.hero-bg-1 {
    top: -10%;
    right: -5%;
}

.hero-bg-2 {
    bottom: 10%;
    left: -5%;
}

.services-bg-1 {
    top: -5%;
    right: -5%;
}

.internships-bg-1 {
    top: -10%;
    left: -5%;
}

.contact-bg-1 {
    bottom: -10%;
    right: -5%;
}

.ceo-bg-1 {
    top: -10%;
    right: -5%;
}

.art-glow-blue {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: var(--accent-blue);
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
}

/* Shared Components */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-blue {
    background: rgba(0, 209, 255, 0.1);
}

.service-icon-purple {
    background: rgba(112, 0, 255, 0.1);
}

.service-icon-neon {
    background: rgba(57, 255, 20, 0.1);
}

/* Admin Base */
.admin-login-body {
    background: var(--bg-deep);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(13, 25, 48, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--bg-surface);
    height: 100vh;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
}

.admin-main-content {
    margin-left: 250px;
    flex: 1;
    padding: 40px;
}

/* Utilities */
.relative {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.no-underline {
    text-decoration: none;
}

.fw-600 {
    font-weight: 600;
}

.w-fit {
    width: fit-content;
}

.hide-desktop {
    display: none;
}

.aspect-ratio-16-10 {
    aspect-ratio: 16/10;
}

.bg-surface {
    background: var(--bg-surface);
}

.bg-deep {
    background: var(--bg-deep);
}

.no-resize {
    resize: none;
}

.glow-text-blue:hover {
    text-shadow: 0 0 15px var(--accent-glow);
}

.glow-icon {
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

/* Animations */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.max-w-900 {
    max-width: 900px;
}

.z-index-2 {
    z-index: 2;
}


.text-left {
    text-align: left;
}

.flex-1 {
    flex: 1;
}

.mr-1-5 {
    margin-right: 1.5rem;
}

.ml-10 {
    margin-left: 10px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-300 {
    min-height: 300px;
}

.overflow-hidden {
    overflow: hidden;
}

.border-none {
    border: none;
}

.grayscale-invert {
    filter: grayscale(1) invert(0.9) contrast(1.1) brightness(0.8);
}

.object-cover {
    object-fit: cover;
}

.aspect-square {
    aspect-ratio: 1;
}

.opacity-70 {
    opacity: 0.7;
}

.z-index-2 {
    z-index: 2;
}


.tag-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.gradient-fade-up {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-deep), transparent);
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.h-50 {
    height: 50%;
}

.absolute {
    position: absolute;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.color-danger {
    color: #ff4d4d;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-50 {
    opacity: 0.5;
}


/* Way of Working Section */
.way-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.way-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.way-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 209, 255, 0.05), transparent);
    pointer-events: none;
}

.way-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.way-icon-box i {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.way-icon-blue {
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.2), rgba(0, 209, 255, 0.05));
    color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.1);
}

.way-icon-purple {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(112, 0, 255, 0.05));
    color: var(--accent-purple);
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.1);
}

.way-icon-neon {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.05));
    color: var(--accent-neon);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.1);
}

.way-card:hover .way-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.way-cta-btn {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}


/* Premium Service Cards */
.service-card-premium {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 50px 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 209, 255, 0.1);
}

.service-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card-premium:hover::after {
    transform: scaleX(1);
}

.service-icon-premium {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    transition: var(--transition-smooth);
}

.service-icon-premium i {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.service-card-premium:hover .service-icon-premium {
    transform: rotateY(180deg);
}

.learn-more-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.learn-more-link:hover {
    opacity: 1;
    gap: 12px;
}


/* Internship Page Enhancements */
.track-card-premium {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 25px;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.track-card-premium:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.track-blue {
    border-left-color: var(--accent-blue);
}

.track-purple {
    border-left-color: var(--accent-purple);
}

.track-neon {
    border-left-color: var(--accent-neon);
}

.track-white {
    border-left-color: #FFF;
}

.internship-form-container {
    padding: 40px;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 209, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.form-header-cyber {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.form-header-cyber i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    filter: drop-shadow(0 0 10px var(--accent-glow));
    margin-bottom: 15px;
}

.input-cyber-group {
    margin-bottom: 20px;
}

.input-cyber-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Form System Upgrades */
.input-glow {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-glow:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.2);
}

.no-appearance {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.success-alert {
    margin-top: 24px;
    padding: 18px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--accent-neon);
    border-radius: 12px;
    color: var(--accent-neon);
    text-align: center;
    font-size: 0.9rem;
    animation: slideUp 0.5s ease;
}

.error-msg {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid #ff4d4d;
    border-radius: 10px;
    color: #ff4d4d;
    text-align: center;
    font-size: 0.85rem;
}

/* Admin Portal Overhaul */
.admin-sidebar {
    width: 280px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0, 209, 255, 0.1);
    height: 100vh;
    padding: 40px 25px;
    position: fixed;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.admin-nav-link i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(0, 209, 255, 0.05);
    color: var(--accent-blue);
    border-color: rgba(0, 209, 255, 0.2);
    text-shadow: 0 0 10px var(--accent-glow);
}

.admin-nav-link.active {
    background: rgba(0, 209, 255, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 209, 255, 0.05);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.admin-stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.admin-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 209, 255, 0.1);
}

.admin-stat-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
    opacity: 0.8;
}

.admin-stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFF, var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-stat-card p {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Admin Table Design */
.admin-table-container {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.admin-resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.3);
    border-radius: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.admin-resume-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--accent-glow);
}

.admin-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.3);
    border-radius: 8px;
    color: #ff4646;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.admin-delete-btn:hover {
    background: #ff4646;
    color: white;
    box-shadow: 0 0 15px rgba(255, 70, 70, 0.4);
}

.admin-resume-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 34px;
    height: 34px;
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid rgba(0, 209, 255, 0.3);
    border-radius: 6px;
    color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.admin-resume-btn-sm:hover {
    background: var(--accent-blue);
    color: var(--bg-deep);
    box-shadow: 0 0 10px var(--accent-glow);
}

.admin-delete-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 34px;
    height: 34px;
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.3);
    border-radius: 6px;
    color: #ff4646;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.admin-delete-btn-sm:hover {
    background: #ff4646;
    color: white;
    box-shadow: 0 0 10px rgba(255, 70, 70, 0.4);
}

/* CEO Page Professional Components */
.ceo-profile-container {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

.ceo-profile-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 209, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 209, 255, 0.1);
}

.ceo-profile-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gradient-fade-up {
    background: linear-gradient(to top, var(--bg-deep), transparent);
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.stat-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card-v2:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.text-muted-ls {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.lh-1-8 {
    line-height: 1.8;
}

.fs-1-15 {
    font-size: 1.15rem;
}

.fs-2-5 {
    font-size: 2.5rem;
}

.cap-title {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

/* Animations Logic */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cyber-border-animated {
    position: relative;
}

.cyber-border-animated::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.internship-form-container:hover .cyber-border-animated::before {
    opacity: 1;
}

/* Stats Strip Responsive */
.stats-strip {
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.stats-grid-strip {
    text-align: center;
}

.stat-item-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid-strip {
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }
}