/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --bg-dark: #05070A;
    --accent-blue: #00D4FF;
    --text-white: #FFFFFF;
    --text-silver: #A0AAB2;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(0, 212, 255, 0.05);
    --glow-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Lenis smooth scroll */
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden !important;
    max-width: 100vw;
    line-height: 1.6;
    cursor: none; /* Custom cursor */
}

::selection {
    background-color: var(--accent-blue);
    color: var(--bg-dark);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

.text-blue {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.max-w-sm { max-width: 600px; margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Custom Cursor & Background Canvas
   ========================================================================== */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(5, 7, 10, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s;
}

.cursor-glow.active {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(5, 7, 10, 0) 70%);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

/* ==========================================================================
   Glassmorphism Cards
   ========================================================================== */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    border-radius: 16px;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05); /* subtle gold lighting */
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 90, 0, 0.03));
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   Interactive Buttons
   ========================================================================== */
.cta-btn, .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--text-white);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover, .submit-btn:hover {
    color: var(--text-white);
    background: transparent;
    border: 1px solid var(--accent-blue);
    box-shadow: var(--glow-shadow);
    transform: scale(1.05);
}

.cta-btn::after, .submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: 1;
}

.cta-btn:hover::after, .submit-btn:hover::after {
    left: 150%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    top: 100%;
    left: 0;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.cta-btn:hover .btn-glow, .submit-btn:hover .btn-glow {
    top: 0;
    border-radius: 0;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-blue);
    font-weight: 300;
}

.brand-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
}
.brand-text{
    display:flex;
    flex-direction:column;
}

/* Logo + Text Alignment */
.brand-logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    height: 2.8em;
    width: 2.8em;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
}
.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFFFFF, #A0AAB2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-blue);
}

.nav-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-white);
    cursor: pointer;
}

.mobile-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    transform-style: preserve-3d;
}

.cyber-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 1;
}

.cyber-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-top-color: rgba(0, 212, 255, 0.5);
    animation: spin 15s linear infinite;
}

.ring-2 {
    width: 600px;
    height: 600px;
    border-left-color: rgba(255, 90, 0, 0.3);
    animation: spin-reverse 25s linear infinite;
}

.ring-3 {
    width: 800px;
    height: 800px;
    border-bottom-color: rgba(0, 212, 255, 0.2);
    border-style: dashed;
    animation: spin 40s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0AAB2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0; /* For GSAP */
    transform: translateY(50px);
    line-height: 1.1;
    white-space: nowrap;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-silver);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================================================
   Sections General
   ========================================================================== */
section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-silver);
    margin-bottom: 3rem;
    max-width: 700px;
}

.subsection-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--text-silver);
}
.vision-mission{
    display:flex;
    justify-content:center;
    gap:40px;
    margin:0 auto 5rem;
    max-width:1400px;
}

.vm-card{
    width:650px;
    min-height:280px;
    padding:50px;
}

.vm-icon{
    font-size:2.8rem;
    margin-bottom:1.8rem;
}

.vm-card h3{
    font-size:2.1rem;
    margin-bottom:1.2rem;
}

.vm-card p{
    font-size:1.15rem;
    line-height:1.8;
}

@media (max-width: 1200px){
    .vision-mission{
        flex-direction:column;
        align-items:center;
    }

    .vm-card{
        width:90%;
        max-width:700px;
    }
}

@media (max-width: 768px){
    .vm-card{
        width:100%;
        padding:35px;
        min-height:auto;
    }

    .vm-card h3{
        font-size:1.8rem;
    }

    .vm-card p{
        font-size:1rem;
    }
}


/* count */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-radius: 12px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.stat-plus {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    vertical-align: top;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Team Carousel */
.team-section {
    position: relative;
    margin-bottom: 6rem;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.team-carousel {
    overflow: hidden;
    width: 100%;
    padding: 2.5rem 0;
}

.team-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card {
    flex: 0 0 300px;
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.member-img img {
    width: 250px;
    height: 250px;
    
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: var(--transition-smooth);
    box-sizing: border-box;
    transform: translateZ(0); 
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: var(--bg-dark);
}

.team-card.center-card {
    transform: scale(1.1);
}

.team-card.center-card .member-img {
    border-color: var(--accent-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-card p {
    color: var(--text-silver);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 50;
}

.carousel-btn:hover {
    background: var(--glass-hover);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);

}

/* Testimonials */
.testimonials-section {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    text-align: center;
    padding: 3rem;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.feedback {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.client-name {
    color: var(--accent-blue);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-silver);
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio {
    overflow: hidden;
}

.portfolio-showcase {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.portfolio-showcase::-webkit-scrollbar {
    display: none; 
}

.portfolio-item {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(5, 7, 10, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-arrow {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-silver);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-arrow:hover {
    color: #D4AF37; /* Neon Gold */
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.portfolio-arrow:active {
    transform: scale(0.95);
}

/* ==========================================================================
   Careers Section
   ========================================================================== */
.careers {
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
}

.careers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.career-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-item:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.08);
}

.career-item .role-title {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-align: left;
    color: var(--text-white);
}

@media (max-width: 768px) {
    .career-item {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }
    .career-item .role-title {
        text-align: center;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.input-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Dropdown UI */
.custom-select-ui {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    padding: 1rem 0;
    color: var(--text-silver);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--glass-border);
}

.custom-select-trigger .trigger-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: rgba(5, 7, 10, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 212, 255, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.02);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 0.8rem;
}

.custom-select-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 1rem 1.2rem;
    color: var(--text-silver);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.custom-option.selected {
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.05);
}

.custom-option:hover {
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.2);
    padding-left: 1.8rem;
}

.custom-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-blue), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--accent-blue);
}

.custom-option:hover::before, .custom-option.selected::before {
    transform: scaleY(1);
}

.input-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--text-silver);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent-blue);
}

.line-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.input-group input:focus ~ .line-glow,
.input-group textarea:focus ~ .line-glow,
.input-group select:focus ~ .line-glow {
    width: 100%;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
    cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
    padding-bottom: 1rem;
    background: #020305;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-silver);
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--bg-dark);
    background: var(--text-white);
    border-color: var(--text-white);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-links a, .footer-locations a, .email-link {
    display: block;
    color: var(--text-silver);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-locations ul {
    list-style: none;
}

.footer-links a:hover, .footer-locations a:hover, .email-link:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #4a5568;
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;   /*  center horizontally */
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.ils-logo-footer {
    height: 2.8rem;
    width: 2.8rem;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

/* Footer brand-wrapper: stack text vertically */
.footer-logo-row .brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.ev-logo-footer {
    height: 2.2rem;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-content, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-card {
        flex: 0 0 250px;
    }
    .member-img { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        white-space: normal;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .team-card {
        flex: 0 0 100%;
    }
    
    .portfolio-item {
        flex: 0 0 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   New Hero Staggered Titles & Animations
   ========================================================================== */
.brand-logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo-space {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staggered-title {
    position: relative;
    display: inline-block;
}

.word-wrapper {
    display: inline-block;
}

.word {
    display: inline-block;
    opacity: 0;
}

.word.ready-hover {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.4s ease;
}

.slide-left { transform: translateX(-100px); }
.slide-right { transform: translateX(100px); }

/* Micro hover effect */
.word.ready-hover:hover {
    transform: scale(1.05) translateZ(0) !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.glow-pulse .word {
    animation: subtleTextGlow 3s infinite alternate ease-in-out;
}

@keyframes subtleTextGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.05); }
    100% { text-shadow: 0 0 25px rgba(255, 255, 255, 0.3), 0 0 15px rgba(0, 212, 255, 0.2); }
}

/* Light streak effect */
.light-streak-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.light-streak {
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    opacity: 0;
    filter: blur(4px);
}

@keyframes softPulse {
    0% { transform: translateY(0); box-shadow: 0 0 10px rgba(0, 212, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); }
    100% { transform: translateY(-8px); box-shadow: 0 0 25px rgba(0, 212, 255, 0.3); border-color: rgba(0, 212, 255, 0.4); }
}


/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 2rem;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transform: scale(1.1);
    animation: none;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.member-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--glass-border);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-img,
.member-img img {
    border-radius: 50% !important;
}

/* mobile fix */
@media (max-width: 768px) {
    .member-img {
        width: 180px;
        height: 180px;
    }
}


/*==========================================================================
Chatbot
========================================================================== */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chatbot-toggle,
.chatbot-window {
    pointer-events: auto;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--text-white);
    color: var(--bg-dark);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.chatbot-toggle:hover {
    color: var(--text-white);
    background: transparent;
    border: 1px solid var(--accent-blue);
    box-shadow: var(--glow-shadow);
    transform: scale(1.05);
}

.chatbot-window {
    width: 350px;
    max-height: 500px;
    margin-bottom: 1rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #000000;
    border-bottom: 1px solid var(--glass-border);
}

.chatbot-title {
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-title i {
    color: var(--accent-blue);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--text-silver);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chatbot-close:hover {
    color: var(--text-white);
}

.chatbot-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 350px;
}

.chatbot-body::-webkit-scrollbar {
    width: 6px;
}
.chatbot-body::-webkit-scrollbar-track {
    background: transparent;
}
.chatbot-body::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.chat-msg {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeInMsg 0.3s ease-out forwards;
}

@keyframes fadeInMsg {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 4px;
    color: var(--text-white);
}

.user-msg {
    align-self: flex-end;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-bottom-right-radius: 4px;
    color: var(--text-white);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chat-option-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-silver);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.chat-option-btn:hover {
    border-color: var(--accent-blue);
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.chatbot-input-area {
    display: flex;
    padding: 1rem;
    background: rgba(5, 7, 10, 0.5);
    border-top: 1px solid var(--glass-border);
}

.chatbot-input-area input {
    flex: 1;
    background: #000000;
    border: none;
    color: var(--text-white);
    font-size: 0.9rem;
    outline: none;
    padding-right: 1rem;
}

.chatbot-input-area input::placeholder {
    color: var(--text-silver);
}

.chatbot-input-area button {
    background: transparent;
    border: none;
    color: var(--accent-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.chatbot-input-area button:disabled {
    color: var(--text-silver);
    cursor: not-allowed;
    transform: none;
    text-shadow: none;
}

@media (max-width: 768px) {
    .chatbot-window {
        width: 300px;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .chatbot-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   SECTION: WHAT SETS US APART 
   ========================================================================== */

.premium-wsa-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: #000000;
}

#wsa-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.75;
}

.wsa-ambient-flare {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(0,212,255,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

/* ── Cybernetic Grid ── */
.wsa-cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
    opacity: 0.8;
}

/* ── Intersecting Spotlight Beams ── */
.wsa-spotlight-beam {
    position: absolute;
    top: -20%;
    width: 55vw;
    height: 120vh;
    background: conic-gradient(from 180deg at 50% 0%, transparent 42%, rgba(0, 212, 255, 0.1) 50%, transparent 58%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    will-change: transform, opacity;
}
.wsa-spotlight-left {
    left: -15vw;
    transform: rotate(18deg);
}
.wsa-spotlight-right {
    right: -15vw;
    transform: rotate(-18deg);
}

/* ── Horizon Flare Line ── */
.wsa-horizon-flare {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.7) 35%, #FFFFFF 50%, rgba(0, 212, 255, 0.7) 65%, transparent 100%);
    box-shadow: 0 0 25px #00d4ff;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transform: translateY(-50%) scaleX(0);
    will-change: transform, opacity;
}

.premium-wsa-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.5rem;
}

/* ── Top Side: Centered Title ── */
.wsa-title-area {
    position: relative;
    width: 100%;
    text-align: center;
}

.wsa-title-content {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wsa-eyebrow-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    padding: 0.4rem 1.2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.wsa-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #00d4ff;
    text-transform: uppercase;
}

.wsa-main-title {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.wsa-title-silver {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    background: linear-gradient(to bottom, #ffffff 20%, #777777 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.wsa-title-blue {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.wsa-title-blue::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #00d4ff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.85;
    animation: bluePulseTitle 3s ease-in-out infinite alternate;
}

@keyframes bluePulseTitle {
    from { opacity: 0.6; filter: blur(15px); }
    to { opacity: 1; filter: blur(35px); }
}

.wsa-main-desc {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Bottom Side: Cards Grid ── */
.wsa-cards-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

/* ── Holographic Cards ── */
.wsa-holo-card {
    position: relative;
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 340px;
    max-width: 450px;
    border-radius: 24px;
    padding: 1px;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    transform-origin: center;
    opacity: 0.1;
    perspective: 1000px;
}

/* Animated Gradient Border Chaser */
.wsa-card-glow-chaser {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,212,255,0.6) 50%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.wsa-holo-card:hover .wsa-card-glow-chaser {
    opacity: 1;
    animation: chaserBorder 3s linear infinite;
}

@keyframes chaserBorder {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.wsa-card-glass {
    position: relative;
    z-index: 2;
    background: rgba(10, 15, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 23px;
    padding: 3.5rem 3rem;
    height: 100%;
    overflow: hidden;
}

.wsa-card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(0, 212, 255, 0.3);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
    transition: all 0.4s ease;
}
.corner-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.corner-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.corner-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.wsa-holo-card:hover .wsa-card-corner {
    border-color: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
    width: 18px;
    height: 18px;
}

.wsa-scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.25), transparent);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wsa-holo-card:hover .wsa-scan-line {
    opacity: 1;
    animation: wsaScanSweep 2s ease-in-out infinite;
}

@keyframes wsaScanSweep {
    0% { top: -20%; }
    100% { top: 120%; }
}

.wsa-holo-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0,212,255,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.wsa-holo-card:hover .wsa-holo-bg {
    opacity: 1;
}

.wsa-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.wsa-holo-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    transition: color 0.4s ease, transform 0.4s ease;
}

.wsa-holo-card:hover .wsa-holo-number {
    color: rgba(0,212,255,0.15);
    transform: translateY(-5px);
}

.wsa-holo-icon {
    position: relative;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    border-radius: 50%;
    background: rgba(0,212,255,0.05);
    border: 1px solid rgba(0,212,255,0.25);
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
    transition: all 0.4s ease;
}

.holo-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0,212,255,0.4);
    animation: ringSpin 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.holo-ring-outer {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px dotted rgba(255,255,255,0.25);
    animation: ringSpin 14s linear reverse infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.holo-ring-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    opacity: 0;
}

.wsa-holo-card:hover .holo-ring,
.wsa-holo-card:hover .holo-ring-outer {
    opacity: 1;
}

.wsa-holo-card:hover .holo-ring-pulse {
    animation: wsaPulseRing 1.5s infinite;
}

@keyframes wsaPulseRing {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.6); opacity: 1; }
    100% { box-shadow: 0 0 0 20px rgba(0, 212, 255, 0); opacity: 0; }
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

.wsa-holo-card:hover .wsa-holo-icon {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 0 30px rgba(0,212,255,0.8);
    transform: scale(1.1) rotate(5deg);
}

.wsa-holo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.wsa-holo-desc {
    font-size: 1.05rem;
    color: var(--text-silver);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .premium-wsa-container {
        gap: 3rem;
    }
    
    .wsa-holo-card {
        flex: 1 1 calc(50% - 2.5rem);
    }
}

@media (max-width: 768px) {
    .wsa-card-glass {
        padding: 2.5rem 2rem;
    }
    
    .wsa-holo-title {
        font-size: 1.5rem;
    }
    
    .wsa-main-title {
        font-size: 2.8rem;
    }
    
    .wsa-holo-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .wsa-eyebrow-box::before, .wsa-line {
        display: none;
    }
}
/* ==========================================================================
   SECTION: INDUSTRIES WE SERVE 
   ========================================================================== */
.cinematic-sectors {
    min-height: 120vh;
    padding: 10rem 0;
    background: radial-gradient(circle at 50% 90%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.industries-title-wrapper {
    margin-bottom: 5rem;
}

.industries-grid-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
}

#industries-connections-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.industries-sectors-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

@media (max-width: 1024px) {
    .industries-sectors-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-sectors-container {
        grid-template-columns: 1fr;
    }
}

/* Sector Node Glass Cards */
.industry-sector-node {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.industry-sector-node:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 212, 255, 0.15),
                inset 0 0 15px rgba(0, 212, 255, 0.05);
}

.sector-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
    transform-style: preserve-3d;
}

.sector-icon-3d {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateZ(30px);
    transform-style: preserve-3d;
}

.sector-content {
    transform: translateZ(15px);
}

.sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.sector-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    line-height: 1.3;
}

.industry-sector-node:hover h3 {
    color: var(--accent-blue);
}

.sector-content p {
    font-size: 0.88rem;
    color: var(--text-silver);
    line-height: 1.6;
}

.skyscraper-district {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: 60px;
    height: 60px;
}

.skyscraper-district .building {
    width: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 2px 2px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 4px 0;
    transition: background 0.3s, border-color 0.3s;
}

.skyscraper-district .building span {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 1px;
}

.skyscraper-district .b-1 { height: 70%; }
.skyscraper-district .b-2 { height: 100%; border-color: var(--accent-blue); background: rgba(0, 212, 255, 0.05); }
.skyscraper-district .b-3 { height: 50%; }

.industry-sector-node:hover .skyscraper-district .building {
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.industry-sector-node:hover .skyscraper-district .building span {
    background: var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue);
    animation: buildingLights 1.5s infinite alternate;
}

.industry-sector-node:hover .skyscraper-district .b-1 span { animation-delay: 0.2s; }
.industry-sector-node:hover .skyscraper-district .b-2 span { animation-delay: 0.5s; }
.industry-sector-node:hover .skyscraper-district .b-3 span { animation-delay: 0.8s; }

.luxury-showroom {
    position: relative;
    width: 60px;
    height: 60px;
}

.hanger-rack {
    position: absolute;
    top: 15%; left: 10%; right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.floating-mannequin {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.4);
    position: absolute;
    top: 25%; left: 25%;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.1));
    animation: floatHolo 3s ease-in-out infinite alternate;
}

.industry-sector-node:hover .floating-mannequin {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 15px var(--accent-blue));
}

.medical-innovation {
    position: relative;
    width: 60px;
    height: 60px;
}

.dna-helix {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateChrome 10s linear infinite;
}

.dna-helix .dot-dna {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}

.dna-helix .d-1 { top: 10%; left: 30%; }
.dna-helix .d-2 { bottom: 10%; right: 30%; }
.dna-helix .d-3 { top: 50%; left: 10%; }
.dna-helix .d-4 { top: 50%; right: 10%; }

.cross-pulse {
    position: absolute;
    top: 25%; left: 25%;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
}

.industry-sector-node:hover .cross-pulse {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 12px var(--accent-blue));
    animation: pulseCore 1.2s infinite alternate;
}

.industry-sector-node:hover .dna-helix .dot-dna {
    background: var(--accent-blue);
    box-shadow: 0 0 6px var(--accent-blue);
}

.futuristic-campus {
    position: relative;
    width: 60px;
    height: 60px;
}

.neural-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-nodes .n-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.n-node.nn-1 { top: 15%; left: 15%; }
.n-node.nn-2 { top: 15%; right: 15%; }
.n-node.nn-3 { bottom: 15%; left: 45%; }

.graduation-holo {
    position: absolute;
    top: 25%; left: 25%;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
}

.industry-sector-node:hover .graduation-holo {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 15px var(--accent-blue));
    animation: floatHolo 2s ease-in-out infinite alternate;
}

.industry-sector-node:hover .neural-nodes .n-node {
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--accent-blue);
}

.restaurant-hub {
    position: relative;
    width: 60px;
    height: 60px;
}

.digital-platter {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 25%; left: 25%;
}

.circuit-ring {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 8%; left: 8%;
    animation: rotateChrome 12s linear infinite;
}

.dish-smoke span {
    position: absolute;
    width: 2px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 0;
}

.dish-smoke span:nth-child(1) { top: 10%; left: 40%; animation: smokeRise 2s infinite ease-out; }
.dish-smoke span:nth-child(2) { top: 15%; left: 50%; animation: smokeRise 2s infinite ease-out 0.6s; }
.dish-smoke span:nth-child(3) { top: 12%; left: 60%; animation: smokeRise 2s infinite ease-out 1.2s; }

.industry-sector-node:hover .digital-platter {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 12px var(--accent-blue));
}

.industry-sector-node:hover .circuit-ring {
    border-color: var(--accent-blue);
    filter: drop-shadow(0 0 4px var(--accent-blue));
}

.industry-sector-node:hover .dish-smoke span {
    background: var(--accent-blue);
}

.command-center {
    position: relative;
    width: 60px;
    height: 60px;
}

.podium-speaker {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 25%; left: 25%;
}

.holo-signal-waves span {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.w-1 { width: 30px; height: 30px; animation: waveRipple 2.2s infinite ease-out; }
.w-2 { width: 45px; height: 45px; animation: waveRipple 2.2s infinite ease-out 0.7s; }
.w-3 { width: 60px; height: 60px; animation: waveRipple 2.2s infinite ease-out 1.4s; }

.industry-sector-node:hover .podium-speaker {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 12px var(--accent-blue));
}

.industry-sector-node:hover .holo-signal-waves span {
    border-color: var(--accent-blue);
}

/* 7. Startup Platform (Startups) */
.startup-platform {
    position: relative;
    width: 60px;
    height: 60px;
}

.gear-spinner {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 20%; left: 20%;
    animation: rotateChromeReverse 10s linear infinite;
}

.climbing-arrow {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.4);
    position: absolute;
    top: 15%; right: 15%;
    animation: arrowPulse 2s infinite alternate ease-in-out;
}

.industry-sector-node:hover .gear-spinner {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 10px var(--accent-blue));
    animation: rotateChromeReverse 4s linear infinite;
}

.industry-sector-node:hover .climbing-arrow {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 12px var(--accent-blue));
}

/* ==========================================================================
   CSS KEYFRAMES 
   ========================================================================== */
@keyframes rotateChrome {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateChromeReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.98); opacity: 0.4; }
    100% { transform: scale(1.02); opacity: 0.9; }
}

@keyframes pulseOrb {
    0% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }
    100% { box-shadow: 0 0 35px rgba(0, 212, 255, 0.8); }
}

@keyframes floatHolo {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes barGrow {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1.1); }
}

@keyframes drawPath {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

@keyframes flashDot {
    0% { opacity: 0.3; r: 3px; }
    100% { opacity: 1; r: 6px; }
}

@keyframes spinCoin1 {
    0% { transform: rotateY(0deg) translateZ(0); }
    100% { transform: rotateY(360deg) translateZ(0); }
}
@keyframes spinCoin2 {
    0% { transform: rotateY(0deg) rotateX(15deg) translateZ(0); }
    100% { transform: rotateY(-360deg) rotateX(15deg) translateZ(0); }
}
@keyframes spinCoin3 {
    0% { transform: rotateY(0deg) rotateX(-15deg) translateZ(0); }
    100% { transform: rotateY(360deg) rotateX(-15deg) translateZ(0); }
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes pulseCore {
    0% { transform: scale(0.8); box-shadow: 0 0 10px var(--accent-blue); }
    100% { transform: scale(1.2); box-shadow: 0 0 25px var(--accent-blue); }
}

@keyframes bulbFloat {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4)); }
    100% { transform: translateY(-6px) scale(1.05); filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8)); }
}

@keyframes flarePulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes explodeParticle1 {
    0% { transform: translate(0,0) scale(1); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translate(-30px, -30px) scale(0.2); opacity: 0; }
}
@keyframes explodeParticle2 {
    0% { transform: translate(0,0) scale(1); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translate(30px, -20px) scale(0.2); opacity: 0; }
}
@keyframes explodeParticle3 {
    0% { transform: translate(0,0) scale(1); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translate(-20px, 30px) scale(0.2); opacity: 0; }
}
@keyframes explodeParticle4 {
    0% { transform: translate(0,0) scale(1); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translate(25px, 25px) scale(0.2); opacity: 0; }
}

@keyframes ringGlowPulse {
    0% { border-color: rgba(0, 212, 255, 0.2); box-shadow: inset 0 0 5px rgba(0, 212, 255, 0.1); }
    100% { border-color: rgba(0, 212, 255, 0.7); box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.4), 0 0 15px rgba(0, 212, 255, 0.2); }
}

@keyframes rocketHover {
    0% { transform: rotate(-45deg) translateY(0); }
    100% { transform: rotate(-45deg) translateY(-8px); }
}

@keyframes sparkEmit {
    0% { height: 5px; opacity: 1; transform: translateY(0); }
    100% { height: 18px; opacity: 0; transform: translateY(20px); }
}

@keyframes supportCorePulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }
    100% { transform: scale(1.08); box-shadow: 0 0 30px rgba(0, 212, 255, 0.7); }
}

@keyframes supportWave {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes buildingLights {
    0% { background: rgba(0, 212, 255, 0.2); box-shadow: none; }
    100% { background: var(--accent-blue); box-shadow: 0 0 6px var(--accent-blue); }
}

@keyframes smokeRise {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translateY(-16px) scaleX(1.8); opacity: 0; }
}

@keyframes waveRipple {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@keyframes arrowPulse {
    0% { transform: translateY(0); opacity: 0.6; }
    100% { transform: translateY(-4px); opacity: 1; }
}

@keyframes scanLine {
    0% { top: 0%; opacity: 0.3; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}

@keyframes flamePulse {
    0% { transform: scale(0.8) translateY(0); opacity: 0.5; }
    100% { transform: scale(1.2) translateY(3px); opacity: 0.9; filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.8)); }
}
