:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #00ff88;
    --accent-color: #7209b7;
    --accent-gold: #ffd700;
    --dark-bg: #0a0e27;
    --darker-bg: #05070f;
    --card-bg: #1a1f3a;
    --text-light: #e0e0e0;
    --text-lighter: #b0b0b0;
    --success: #00ff88;
    --gradient-1: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #7209b7 100%);
    --gradient-2: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-3: linear-gradient(135deg, #00d4ff 0%, #7209b7 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ULTRA-PREMIUM CYBER-TECH PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #040714;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(112, 0, 255, 0.1) 40%, transparent 70%);
    animation: loader-pulse-glow 3s infinite alternate ease-in-out;
}

@keyframes loader-pulse-glow {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.15); opacity: 0.9; }
}

.cyber-loader-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.cyber-brand {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
    margin-bottom: 2rem;
    animation: cyber-glow 2s infinite alternate;
}

@keyframes cyber-glow {
    0% { filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4)); }
    100% { filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.8)); }
}

.cyber-ring-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.cyber-ring-wrapper .ring {
    position: absolute;
    border-radius: 50%;
}

.cyber-ring-wrapper .outer-ring {
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #00f0ff;
    border-right-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    animation: spin-clockwise 1.5s linear infinite;
}

.cyber-ring-wrapper .middle-ring {
    width: 75%;
    height: 75%;
    border: 2px dashed transparent;
    border-bottom-color: #7000ff;
    border-left-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
    animation: spin-counter-clockwise 2s linear infinite;
}

.cyber-ring-wrapper .inner-core {
    width: 50%;
    height: 50%;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.4);
    animation: core-pulse 1s ease-in-out infinite alternate;
}

.cyber-logo-icon {
    font-size: 1.5rem;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
    z-index: 3;
}

@keyframes spin-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-counter-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes core-pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

.cyber-progress-box {
    width: 280px;
    text-align: center;
}

.cyber-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

.cyber-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00f0ff, #7000ff);
    border-radius: 4px;
    box-shadow: 0 0 12px #00f0ff;
    transition: width 0.1s linear;
}

.cyber-status-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.status-pulse {
    color: var(--text-muted, #8892b0);
}

.status-percent {
    color: #00f0ff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circuit-line {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: glow 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px var(--primary-color); }
    50% { box-shadow: 0 0 30px var(--primary-color), 0 0 40px var(--primary-color); }
}

/* ===== SECTION ANIMATIONS ===== */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== PREMIUM SAAS FLOATING NAVBAR ===== */
.saas-header-wrapper {
    padding: 1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    pointer-events: none;
}

.saas-navbar {
    max-width: 1240px;
    margin: 0 auto;
    background: rgba(10, 14, 39, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    padding: 0.55rem 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.saas-header-wrapper.scrolled .saas-navbar {
    background: rgba(5, 8, 22, 0.88);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.15);
    padding: 0.45rem 1.15rem;
}

.saas-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Brand */
.saas-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.saas-brand:hover {
    transform: translateY(-1px) scale(1.02);
}

.brand-logo-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.saas-brand:hover .brand-logo-wrap {
    border-color: #00ff88;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.saas-logo-img {
    height: 28px;
    width: auto;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Menu */
.saas-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.saas-nav-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.saas-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.saas-nav-link .nav-icon {
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.saas-nav-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.25);
}

.saas-nav-link:hover .nav-icon {
    transform: translateY(-2px) scale(1.15);
    color: #00ff88;
}

.saas-nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.15);
    box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.4), 0 0 15px rgba(0, 212, 255, 0.2);
    font-weight: 700;
}

.saas-nav-link.active .nav-icon {
    color: #00d4ff;
}

/* SaaS CTA Button */
.saas-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    background: linear-gradient(135deg, #00d4ff 0%, #7209b7 100%);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.saas-btn-primary .btn-glow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.saas-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.55), 0 0 20px rgba(0, 255, 136, 0.4);
    color: #ffffff;
}

.saas-btn-primary:hover .btn-glow-bg {
    opacity: 1;
}

.saas-btn-primary .btn-text {
    position: relative;
    z-index: 1;
}

/* Toggler */
.saas-toggler {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
}

.toggler-line {
    width: 20px;
    height: 2px;
    background: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile responsive drawer */
@media (max-width: 991px) {
    .saas-header-wrapper {
        padding: 0.75rem 1rem;
    }
    .saas-navbar {
        border-radius: 24px;
        padding: 0.6rem 1rem;
    }
    .saas-toggler {
        display: flex;
    }
    .saas-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0.75rem;
        background: rgba(8, 12, 32, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(0, 212, 255, 0.25);
        border-radius: 20px;
        padding: 1.25rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }
    .saas-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .saas-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .saas-nav-link {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    .saas-nav-actions {
        width: 100%;
    }
    .saas-btn-primary {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #050b1e 0%, #0a1f38 50%, #004d40 100%);
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #050b1e 0%, #0a1f38 50%, #004d40 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 600;
}

.btn-cta {
    background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-size: 1.15rem;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6);
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-dark), var(--accent-color));
}

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

.floating {
    animation: float 6s ease-in-out infinite;
}

.robot-icon {
    font-size: 15rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

/* ===== STAT BOX ===== */
.stat-box {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

/* ===== PROGRAM CARDS ===== */
.program-card-mini {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.program-card-mini:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.program-icon-mini {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.program-card-mini h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, rgba(114,9,183,0.15) 50%, rgba(0,255,136,0.12) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.25);
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
    padding: 5rem 0;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.cta-section p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-lighter);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: rgba(26, 31, 58, 0.3);
}

/* ===== PROGRAM CARD ===== */
.program-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.program-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.program-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.program-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.program-features {
    list-style: none;
    padding: 0;
}

.program-features li {
    padding: 0.8rem 0;
    color: var(--text-lighter);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.program-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ===== ABOUT CARD ===== */
.about-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border-left: 6px solid var(--primary-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.about-card h4 {
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.9;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h5 {
    color: var(--text-light);
    font-weight: 700;
}

/* ===== TEAM CARD ===== */
.team-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.3);
}

.team-header {
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.team-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.tech-stack-title {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 800;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 2px solid rgba(0, 212, 255, 0.4);
    font-weight: 700;
}

.member-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.member-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.lead-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* ===== EVENT CARD ===== */
.event-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    border-left: 6px solid var(--primary-color);
    height: 100%;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.event-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.event-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.event-description {
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.event-details {
    margin-top: 1.5rem;
}

.event-date, .event-location {
    color: var(--text-lighter);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(255, 0, 110, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* ===== FEEDBACK FORM ===== */
.feedback-form-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.3);
    padding: 3rem;
    border-radius: 20px;
}

.form-control, .form-select {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 1rem;
}

.form-control::placeholder {
    color: var(--text-lighter);
}

.form-control:focus, .form-select:focus {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.3);
}

.form-label {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.7rem;
    font-family: 'Orbitron', monospace;
}

/* ===== FEEDBACK CARD ===== */
.feedback-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.feedback-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
}

.author-name {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.author-role {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.star-rating {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(5, 7, 15, 0.98);
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

footer h5, footer h6 {
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .page-header h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .robot-icon { font-size: 8rem; }
    .btn-cta { padding: 1rem 2rem; font-size: 1rem; }
    .values-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}

/* ===== HOVER FOOTER WITH TEXT HOVER EFFECT ===== */
.hover-footer-wrapper {
    position: relative;
    background: rgba(15, 15, 17, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 2rem;
    margin: 3rem 1.5rem 2rem 1.5rem;
    padding: 3.5rem 2rem 1rem 2rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 212, 255, 0.05);
}

.hover-footer-gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(125% 125% at 50% 10%, rgba(15, 15, 17, 0.4) 50%, rgba(60, 162, 250, 0.2) 100%);
}

.hover-footer-container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.brand-heart {
    color: #3ca2fa;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px #3ca2fa;
}

.brand-name {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.brand-subtext {
    color: var(--text-lighter, #a0aec0);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-links a, .footer-contact a, .footer-contact li {
    color: var(--text-lighter, #cbd5e0);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #3ca2fa;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.footer-contact i {
    color: #3ca2fa;
    font-size: 1rem;
}

.pulse-link {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.link-pulse {
    width: 8px;
    height: 8px;
    background-color: #3ca2fa;
    border-radius: 50%;
    margin-left: 6px;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(60, 162, 250, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(60, 162, 250, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(60, 162, 250, 0); }
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #3ca2fa;
    transform: translateY(-2px);
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* SVG TEXT HOVER EFFECT */
.text-hover-effect-container {
    width: 100%;
    height: 18rem;
    margin-top: -3rem;
    margin-bottom: -5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.text-hover-svg {
    width: 100%;
    height: 100%;
    user-select: none;
    cursor: pointer;
}

.svg-text {
    font-family: 'Orbitron', 'Helvetica', sans-serif;
    font-size: 4.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.svg-text.base-text {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.15);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.text-hover-svg:hover .base-text {
    opacity: 0.7;
}

.svg-text.stroke-text {
    fill: transparent;
    stroke: #3ca2fa;
    stroke-opacity: 0.8;
}

.svg-text.gradient-text {
    fill: transparent;
}

/* ==========================================================================
   ACETERNITY UI EXACT MOVING BORDER COMPONENT (VANILLA CSS + SVG)
   ========================================================================== */
.aceternity-border-wrapper {
    position: relative;
    padding: 2px;
    overflow: hidden;
    background: transparent;
    border-radius: 1.75rem;
    width: 100%;
}

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

.moving-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--card-accent, #00d4ff) 10%, rgba(0, 212, 255, 0.5) 45%, transparent 75%);
    opacity: 0.95;
    pointer-events: none;
    z-index: 2;
    filter: blur(5px);
    will-change: transform;
}

.aceternity-border-content {
    position: relative;
    z-index: 3;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: calc(1.75rem - 2px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 100%;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.aceternity-border-wrapper:hover .aceternity-border-content {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px var(--card-accent, rgba(0, 212, 255, 0.35));
}

/* ===== ANIME.JS ENHANCEMENTS & SVG CANVAS STYLING ===== */
.circuit-svg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.anime-circuit-path {
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.3s ease;
}

.anime-circuit-node {
    filter: drop-shadow(0 0 8px #00d4ff);
    transition: filter 0.3s ease;
}

.anime-kinetic-line {
    display: block;
    will-change: transform, opacity;
    transform-origin: left center;
}

/* ===== BACKGROUND WATERMARK LOGO ===== */
.watermark-logo-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(280px, 50vw, 650px);
    height: auto;
    pointer-events: none;
    z-index: -2;
    opacity: 0.05;
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.4));
    user-select: none;
    animation: watermarkPulse 10s ease-in-out infinite alternate;
}

.watermark-logo-bg img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes watermarkPulse {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.04; }
    100% { transform: translate(-50%, -50%) scale(1.05) rotate(2deg); opacity: 0.07; }
}