:root {
    --black: #050505;
    --neon-green: #D9E021;
    --deep-smoke: #0a2f07;
    --glass: rgba(15, 15, 15, 0.75);
    --font-main: 'Inter', -apple-system, sans-serif;
}

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

body {
    background-color: var(--black);
    font-family: var(--font-main);
    color: white;
    overflow-x: hidden;
}

/* --- THE WAVING GREEN SMOKE --- */
.smoke-container {
    position: fixed;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #050505 0%, #000 100%);
}

.smoke-blob {
    position: absolute;
    filter: blur(60px);
    mix-blend-mode: screen;
    opacity: 0.7;
    border-radius: 50%;
    display: none;
}

.brand-logo {
    height: 160px;
    width: auto;
    display: block;
    position: absolute;
    z-index: 10;
    left: -5px;
}

.blob-1 {
    width: 600px; height: 200px;
    background: linear-gradient(90deg, transparent 0%, #D9E021,  #D9E021,  #D9E021, transparent 100%);
    left: 5%; top: 50%;
    box-shadow: 0 0 100px #D9E021, 0 0 200px rgba(217, 224, 33, 0.4);
    border-radius: 50%;
}

.blob-2 {
    width: 500px; height: 150px;
    background: linear-gradient(90deg, transparent 0%, rgba(57, 255, 20, 0.3) 25%, rgba(57, 255, 20, 0.7) 55%, rgba(100, 255, 100, 0.5) 85%, transparent 100%);
    left: 10%; top: 45%;
    box-shadow: 0 0 80px rgba(57, 255, 20, 0.6);
    border-radius: 50%;
}

.blob-3 {
    width: 400px; height: 120px;
    background: linear-gradient(90deg, transparent 0%, rgba(100, 255, 100, 0.2) 30%, rgba(57, 255, 20, 0.6) 60%, rgba(150, 255, 150, 0.4) 90%, transparent 100%);
    left: 15%; top: 48%;
    box-shadow: 0 0 60px rgba(57, 255, 20, 0.5);
    border-radius: 50%;
}

/* --- ANIMATED LINES --- */
.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #D9E021, transparent);
    box-shadow: 0 0 20px #D9E021, 0 0 40px rgba(217, 224, 33, 0.5);
}

.line-1 {
    width: 800px;
    height: 2px;
    left: -800px;
    top: 30%;
    animation: slideLine 10s infinite linear;
}

.line-2 {
    width: 1000px;
    height: 3px;
    left: -1000px;
    top: 60%;
    animation: slideLine 12s infinite linear;
    animation-delay: -3s;
    opacity: 0.6;
}

.line-3 {
    width: 700px;
    height: 2px;
    left: -700px;
    top: 75%;
    animation: slideLine 14s infinite linear;
    animation-delay: -6s;
    opacity: 0.5;
}

.line-4 {
    width: 900px;
    height: 2px;
    left: -900px;
    top: 25%;
    animation: slideLine 11s infinite linear;
    animation-delay: -1s;
    opacity: 0.7;
}

.line-5 {
    width: 850px;
    height: 3px;
    left: -850px;
    top: 55%;
    animation: slideLine 13s infinite linear;
    animation-delay: -4s;
    opacity: 0.6;
}

.line-6 {
    width: 750px;
    height: 2px;
    left: -750px;
    top: 40%;
    animation: slideLine 15s infinite linear;
    animation-delay: -7s;
    opacity: 0.5;
}

.line-7 {
    width: 950px;
    height: 2px;
    left: -950px;
    top: 70%;
    animation: slideLine 9s infinite linear;
    animation-delay: -2s;
    opacity: 0.65;
}

@keyframes slideLine {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(calc(100vw + 1200px));
        opacity: 0;
    }
}

@keyframes curvePath {
    0% {
        transform: translateX(0) translateY(0) scaleX(1) scaleY(0.8) rotateZ(-25deg);
        opacity: 0.3;
    }
    20% {
        transform: translateX(20vw) translateY(-80px) scaleX(1.1) scaleY(0.7) rotateZ(-15deg);
        opacity: 0.6;
    }
    40% {
        transform: translateX(50vw) translateY(-150px) scaleX(1.2) scaleY(0.75) rotateZ(0deg);
        opacity: 0.8;
    }
    60% {
        transform: translateX(80vw) translateY(-100px) scaleX(1.15) scaleY(0.8) rotateZ(15deg);
        opacity: 0.7;
    }
    80% {
        transform: translateX(100vw) translateY(50px) scaleX(1) scaleY(0.85) rotateZ(25deg);
        opacity: 0.4;
    }
    100% {
        transform: translateX(120vw) translateY(150px) scaleX(0.8) scaleY(0.9) rotateZ(30deg);
        opacity: 0.1;
    }
}

/* --- SHAPE THEMES & LINE VARIATIONS (Added via Request) --- */

/* Line Variations - Adaptive */
/* Default State Variations */
body:not([class*="shape-"]) .line.dashed {
    background: none !important;
    border: none;
    border-bottom: 2px dashed var(--neon-green);
    box-shadow: none;
    filter: drop-shadow(0 0 5px var(--neon-green));
}
body:not([class*="shape-"]) .line.dotted {
    background: none !important;
    border: none;
    border-bottom: 3px dotted var(--neon-green);
    box-shadow: none;
    filter: drop-shadow(0 0 5px var(--neon-green));
}
body:not([class*="shape-"]) .line.double {
    background: none !important;
    border: none;
    border-bottom: 4px double var(--neon-green);
    height: 6px !important;
    box-shadow: none;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

/* Shape State Variations Removed */

/* Default State (Lines) - Restoring slideLine as requested */
.line {
    /* Use longhand to preserve animation-delay from .line-X */
    animation-name: slideLine;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    
    /* Reset position */
    transform: none;
    
    /* Maintain gradient for default lines */
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    border-radius: 5px;
    clip-path: none;
    border: none;
}

/* Shape Themes Removed */

/* --- SHAPE THEMES & SNAKE LINES --- */

/* Common Shape Properties */
body[class*="shape-"] .line {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    background: rgba(217, 224, 33, 0.05); /* Transparent Green */
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green);
    opacity: 0.8;
}

/* 1. SNAKE LINE THEME (Theme 2) */
body.theme-snake .line {
    animation-name: snakeMove;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    left: -100px; /* Reset left so it flows from left */
    transform: none; /* Let keyframes handle transform */
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    border: none;
    box-shadow: 0 0 20px #D9E021, 0 0 40px rgba(217, 224, 33, 0.5);
}

@keyframes snakeMove {
    0% {
        transform: translateX(0) translateY(0) scaleX(1) scaleY(0.8) rotateZ(-25deg);
        opacity: 0.3;
    }
    20% {
        transform: translateX(20vw) translateY(-80px) scaleX(1.1) scaleY(0.7) rotateZ(-15deg);
        opacity: 0.6;
    }
    40% {
        transform: translateX(50vw) translateY(-150px) scaleX(1.2) scaleY(0.75) rotateZ(0deg);
        opacity: 0.8;
    }
    60% {
        transform: translateX(80vw) translateY(-100px) scaleX(1.15) scaleY(0.8) rotateZ(15deg);
        opacity: 0.7;
    }
    80% {
        transform: translateX(100vw) translateY(50px) scaleX(1) scaleY(0.85) rotateZ(25deg);
        opacity: 0.4;
    }
    100% {
        transform: translateX(120vw) translateY(150px) scaleX(0.8) scaleY(0.9) rotateZ(30deg);
        opacity: 0.1;
    }
}

/* 2. CIRCLE */
body.shape-circle .line {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50%;
    animation: floatCircle 20s infinite;
    left: auto !important; /* Reset specific line positions */
}

/* 3. SQUARE */
body.shape-square .line {
    width: 150px !important;
    height: 150px !important;
    border-radius: 0;
    animation: floatSquare 18s infinite;
    left: auto !important;
}

/* 4. TRIANGLE */
body.shape-triangle .line {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: none !important;
    border-left: 100px solid transparent !important;
    border-right: 100px solid transparent !important;
    border-bottom: 170px solid rgba(217, 224, 33, 0.15) !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 10px var(--neon-green));
    animation: floatTriangle 22s infinite;
    left: auto !important;
}

/* Randomize positions for shapes (overriding line defaults) */
body[class*="shape-"] .line-1 { left: -10vw; top: 20%; animation-delay: 0s; }
body[class*="shape-"] .line-2 { left: -10vw; top: 15%; animation-delay: -5s; }
body[class*="shape-"] .line-3 { left: -10vw; top: 60%; animation-delay: -10s; }
body[class*="shape-"] .line-4 { left: -10vw; top: 70%; animation-delay: -2s; }
body[class*="shape-"] .line-5 { left: -10vw; top: 40%; animation-delay: -7s; }
body[class*="shape-"] .line-6 { left: -10vw; top: 80%; animation-delay: -12s; }
body[class*="shape-"] .line-7 { left: -10vw; top: 30%; animation-delay: -4s; }


/* ANIMATIONS FOR SHAPES - UPDATED FOR FULL SCREEN MOVEMENT */
@keyframes floatCircle {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30vw, -10vh) rotate(90deg); }
    50% { transform: translate(60vw, 10vh) rotate(180deg); }
    75% { transform: translate(90vw, -5vh) rotate(270deg); }
    100% { transform: translate(120vw, 0) rotate(360deg); }
}

@keyframes floatSquare {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40vw, 15vh) rotate(120deg); }
    66% { transform: translate(80vw, -15vh) rotate(240deg); }
    100% { transform: translate(120vw, 0) rotate(360deg); }
}

@keyframes floatTriangle {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30vw, 20vh) rotate(90deg); }
    50% { transform: translate(60vw, -20vh) rotate(180deg); }
    75% { transform: translate(90vw, 10vh) rotate(270deg); }
    100% { transform: translate(120vw, 0) rotate(360deg); }
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 20px; width: 100%;
    z-index: 1000;
    padding: 0 20px;
}

.nav-wrapper {
    width: 100%; max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(40px) saturate(120%);
    -webkit-backdrop-filter: blur(40px) saturate(120%);
    border: 1.5px solid rgba(239, 255, 20, 0.4);
    border-radius: 50px;
    padding: 10px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(57, 255, 20, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative; /* Added for absolute positioning of island */
    height: 70px; /* Slimmer navbar */
}

.nav-wrapper:hover {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(255, 251, 20, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(57, 255, 20, 0.15);
}

.brand { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
    color: white; 
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.brand:hover {
    color: #D9E021;
}

.brand-icon {
    background: linear-gradient(135deg, #D9E021, rgba(217, 224, 33, 0.7));
    color: black;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    box-shadow: 0 0 20px #D9E021;
    font-weight: bold;
    transition: all 0.3s;
}

.brand-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #D9E021;
}

/* --- DYNAMIC ISLAND MENU --- */
.dynamic-island {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 45px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    height: 44px;
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.5s cubic-bezier(0.3, 1.5, 0.3, 1), 
                height 0.5s cubic-bezier(0.3, 1.5, 0.3, 1),
                border-radius 0.5s ease,
                background 0.3s ease;
    overflow: hidden;
    z-index: 2000;
    box-shadow: 0 0 0px rgba(0,0,0,0);
}

.dynamic-island:hover {
    background: #111;
    border-color: rgba(217, 224, 33, 0.4);
    box-shadow: 0 0 15px rgba(217, 224, 33, 0.15);
}

.dynamic-island.active {
    width: 220px;
    height: 320px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: #D9E021;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(217, 224, 33, 0.1);
    border-radius: 24px;
    top: 12px;
    transform: none;
}

/* Toggle / Hamburger */
.island-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2001;
    transition: all 0.3s ease;
}

/* Hamburger Bars */
.bar {
    width: 20px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.dynamic-island:hover .bar {
    background-color: #D9E021;
}

/* Animation to Cross */
.dynamic-island.active .bar-1 {
    transform: translateY(7px) rotate(45deg);
    background-color: #D9E021;
}

.dynamic-island.active .bar-2 {
    opacity: 0;
    transform: translateX(10px);
}

.dynamic-island.active .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #D9E021;
}

/* Menu Content */
.island-content {
    opacity: 0;
    width: 100%;
    margin-top: 50px;
    pointer-events: none;
    transition: all 0.2s ease;
    transform: translateY(-10px);
    visibility: hidden;
}

.dynamic-island.active .island-content {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    transition-delay: 0.1s;
    visibility: visible;
}

.island-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.island-links li {
    width: 100%;
    text-align: center;
}

.island-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    display: block;
    padding: 8px 15px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
}

.island-links a:hover {
    color: #D9E021;
    background: rgba(255,255,255,0.05);
    transform: translateX(2px);
}

.cta-link {
    color: #D9E021 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(217, 224, 33, 0.3);
    margin-top: 5px !important;
}

.cta-link:hover {
    background: rgba(217, 224, 33, 0.1) !important;
    box-shadow: 0 0 15px rgba(217, 224, 33, 0.2);
}

/* --- MOBILE NAVIGATION & SIDEBAR --- */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    z-index: 2002;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.close-sidebar {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    background: rgba(217, 224, 33, 0.15);
    transform: rotate(90deg);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-links li a {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-links li a:hover {
    color: #D9E021;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(217, 224, 33, 0.2);
    transform: translateX(10px);
}

/* Mobile Media Query Updates */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .dynamic-island {
        display: none !important; /* Hide dynamic island on mobile */
    }

    .nav-wrapper {
        padding: 10px 20px;
        justify-content: space-between;
    }
}


/* --- GLASS HERO PANEL --- */
.hero-left {
    position: relative;
    padding: 80px 70px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.021);
    border: 2px solid #D9E021;
    box-shadow:
        0 50px 140px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 80px rgba(57, 255, 20, 0.08);
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.hero-left:hover {
    border-color: #D9E021;
    background: rgba(20, 20, 20, 0.233);
    transform: translateY(-8px);
    box-shadow:
        0 60px 160px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 100px rgba(57, 255, 20, 0.15);
}

/* --- SHINE EFFECT --- */
.hero-left::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(255, 255, 255, 0.12) 40%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.12) 60%,
        transparent 75%
    );
    transform: rotate(15deg);
    animation: glassShine 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glassShine {
    0%, 100% { transform: rotate(15deg) translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(15deg) translateX(100%); opacity: 0; }
}

/* Optional subtle noise texture */
.hero-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='1'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
    pointer-events: none;
}




.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.15;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 2px 2px rgba(0, 0, 0, 0.034),
        0 0 30px rgba(255, 255, 255, 0);
    animation: titleSlideIn 0.9s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes titleSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    animation: ctaFadeIn 1s cubic-bezier(0.2, 0.9, 0.2, 1) 0.3s backwards;
}

@keyframes ctaFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Screenshot-style CTA */
.outline-btn {
    background: rgba(57, 255, 20, 0.05);
    border: 2px solid #D9E021;
    color: #D9E021;
    padding: 16px 42px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: inset 0 0 15px rgba(57, 255, 20, 0.05);
}

.outline-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(57, 255, 20, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.outline-btn:hover {
    border-color: #D9E021;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 40px rgba(239, 255, 20, 0.5), inset 0 0 25px rgba(255, 251, 20, 0.12);
    transform: translateY(-5px);
}

.outline-btn:hover::before {
    opacity: 1;
}
.network-bg {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 120px 120px, 80px 80px, 80px 80px;
    z-index: -2;
    opacity: 0.25;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 251, 20, 0.18), rgba(255, 251, 20, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #D9E021;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1.5px solid rgba(255, 251, 20, 0.4);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15), inset 0 0 15px rgba(57, 255, 20, 0.05);
    animation: badgePulse 2s ease-in-out infinite, badgeFadeIn 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
    transition: all 0.3s ease;
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.25), inset 0 0 20px rgba(57, 255, 20, 0.08);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(57, 255, 20, 0.1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(57, 255, 20, 0.2);
    }
}

.dot {
    width: 8px;
    height: 8px;
    background: #D9E021;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px #D9E021;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 251, 20, 0.25);
    flex-wrap: wrap;
    animation: statsSlideIn 1.1s cubic-bezier(0.2, 0.9, 0.2, 1) 0.5s backwards;
}

@keyframes statsSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    filter: drop-shadow(0 0 10px rgba(255, 251, 20, 0.4));
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D9E021, rgba(217, 224, 33, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.3;
}

h1 { font-size: 4.5rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; line-height: 1.15; }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.9));
    animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    width: 100%;
    max-width: 900px;
}

.primary-btn {
    background: linear-gradient(135deg, #D9E021, rgba(217, 224, 33, 0.9));
    border: none;
    color: black;
    padding: 16px 42px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(255, 251, 20, 0.4), 0 0 20px rgba(251, 255, 20, 0.2);
    letter-spacing: 0.5px;
    display: inline-block;
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 60px rgba(255, 251, 20, 0.6), 0 0 30px rgba(231, 255, 20, 0.3);
}

.primary-btn:hover::after {
    width: 220px;
    height: 220px;
}

.primary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.primary-btn:hover::before {
    opacity: 1;
}

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

/* --- DETAILS SECTION + ANIMATIONS --- */
.details-section { padding: 100px 0; display: flex; justify-content: center; align-items: center; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.details-card { position: relative; background: linear-gradient(180deg, rgba(15,15,15,0.8), rgba(15,15,15,0.6)); padding: 36px; border-radius: 20px; border: 1px solid rgba(57,255,20,0.06); box-shadow: 0 20px 50px rgba(0,0,0,0.6); overflow: hidden; }
.details-card::after { content: ""; position: absolute; left: -30%; top: -30%; width: 160%; height: 160%; background: radial-gradient(circle at 20% 20%, rgba(57,255,20,0.06), transparent 20%); transform-origin: center; animation: rotateGlow 12s linear infinite; pointer-events: none; }
.details-title { font-size: 2rem; margin-bottom: 8px; color: #D9E021; font-weight: 800; text-shadow: 0 0 18px rgba(217,224,33,0.06); }
.lead { color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.details-grid { display: flex; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
.detail-item { flex: 1 1 300px; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); padding: 20px; border-radius: 12px; transition: transform 0.6s cubic-bezier(.2,.9,.2,1), box-shadow 0.3s; }
.detail-item:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 12px 40px rgba(0,0,0,0.55); }
.detail-item h3 { color: #D9E021; margin-bottom: 10px; font-size: 1.05rem; }
.detail-item ul { list-style: none; color: rgba(255,255,255,0.88); padding-left: 0; }
.detail-item ul li { padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.03); }
.secondary-btn { display: inline-block; padding: 12px 26px; border-radius: 100px; background: transparent; color: #D9E021; border: 1px solid rgba(217,224,33,0.25); text-decoration: none; font-weight: 700; transition: transform .25s, box-shadow .25s; }
.secondary-btn:hover { transform: translateY(-6px); box-shadow: 0 14px 50px rgba(57,255,20,0.08); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(40px) rotateX(6deg); will-change: transform, opacity; transition: opacity .9s cubic-bezier(.2,.9,.2,1), transform .9s cubic-bezier(.2,.9,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0) rotateX(0deg); }

.socials { display: flex; gap: 12px; margin-top: 12px; }
.socials a { color: rgba(255,255,255,0.78); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.03); padding-bottom: 2px; }

@keyframes rotateGlow { 0% { transform: rotate(0deg); } 50% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } }

@media (max-width: 780px) {
    .details-grid { flex-direction: column; }
    .glass-card { padding: 40px 20px; }
    h1 { font-size: 2.4rem; }
}

/* --- SIDE DOCK (iOS Style) --- */
.side-dock {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.side-dock.collapsed {
    transform: translateY(-50%) translateX(calc(-100% - 30px));
}

.side-dock .dock-toggle {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 40px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    z-index: 901;
}

.side-dock.collapsed .dock-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    right: -24px;
}

.side-dock.collapsed .dock-toggle svg {
    transform: rotate(180deg);
}

/* Also add a toggle button inside the dock for collapsing it */
.dock-toggle-inner {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.dock-toggle-inner:hover {
    color: #D9E021;
    background: rgba(217, 224, 33, 0.15);
}

.side-dock:hover {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(217, 224, 33, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dock-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
}

.dock-item svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.dock-item:hover {
    background: rgba(217, 224, 33, 0.15);
    color: #D9E021;
}

.dock-item:hover svg {
    transform: scale(1.15);
}

/* Tooltip */
.dock-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-item:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(15px);
}

@media (max-width: 768px) {
    .side-dock {
        display: flex;
        left: 10px;
        padding: 10px 5px;
        gap: 10px;
    }
    
    .dock-item {
        width: 36px;
        height: 36px;
    }

    .dock-item svg {
        width: 18px;
        height: 18px;
    }

    /* Adjust tooltip position for mobile to avoid off-screen or overlap */
    .dock-item:hover::after {
        display: none; /* Tooltips might be annoying on touch or clutter small screens */
    }
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 90px 0;
    position: relative;
}
.features-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D9E021;
    position: relative;
    text-shadow: 0 0 12px rgba(217, 224, 33, 0.4);
}

.features-subtitle::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #D9E021, transparent);
    box-shadow: 0 0 12px rgba(217, 224, 33, 0.6);
}


.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 50%, rgba(57, 255, 20, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.features-section > * {
    position: relative;
    z-index: 1;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.features-left {
    display: flex;
    align-items: flex-start;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.features-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-dash {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.service-item:hover {
    padding-left: 8px;
}

.service-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D9E021;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-plus {
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(255, 251, 20, 0.3);
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.service-item:hover .service-name {
    color: #D9E021;
}

/* --- ABOUT, PORTFOLIO, CONTACT --- */
.about-section, .portfolio-section, .contact-section {
    padding: 90px 0;
    position: relative;
}

.about-section::before, .portfolio-section::before, .contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 50%, rgba(57, 255, 20, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.about-section > *, .portfolio-section > *, .contact-section > * {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px;
    border-radius: 18px;
    border: 1.5px solid rgba(57, 255, 20, 0.15);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 251, 20, 0.35);
    box-shadow: 0 25px 60px rgba(57, 255, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

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

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.about-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: 20px;
    border: 1.5px solid rgba(57, 255, 20, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.about-card:hover {
    border-color: rgba(251, 255, 20, 0.3);
    box-shadow: 0 30px 80px rgba(57, 255, 20, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.about-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(251, 255, 20, 0.4);
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    padding: 90px 0;
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 50%, rgba(57, 255, 20, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-section > * {
    position: relative;
    z-index: 1;
}

.portfolio-showcase {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
}

.portfolio-showcase::-webkit-scrollbar {
    height: 6px;
}

.portfolio-showcase::-webkit-scrollbar-track {
    background: rgba(57, 255, 20, 0.1);
    border-radius: 10px;
}

.portfolio-showcase::-webkit-scrollbar-thumb {
    background: rgba(251, 255, 20, 0.3);
    border-radius: 10px;
}

.portfolio-showcase::-webkit-scrollbar-thumb:hover {
    background: rgba(251, 255, 20, 0.5);
}

.portfolio-item {
    flex: 0 0 auto;
    width: 250px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(57, 255, 20, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 251, 20, 0.35);
    box-shadow: 0 25px 70px rgba(251, 255, 20, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 90px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 50%, rgba(57, 255, 20, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.about-section > * {
    position: relative;
    z-index: 1;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
    width: fit-content;
}

.learn-more:hover {
    color: #D9E021;
    gap: 14px;
}

.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
}

/* Portfolio Slider */
/* Section spacing */
.portfolio-section {
    padding: 100px 0;
}

/* Carousel wrapper */
.portfolio-carousel {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

/* Carousel inner glass frame */
.portfolio-inner {
    border-radius: 28px;
    overflow: hidden;
}

/* Individual slide */
.portfolio-carousel .carousel-item {
    padding: 20px;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Glass work item */
.portfolio-carousel .work-item {
    display: block;
    border-radius: 24px;
    padding: 30px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift */
.portfolio-carousel .work-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 90px rgba(0,0,0,0.75),
        0 0 40px rgba(57,255,20,0.15);
}

/* Images */
.portfolio-carousel img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* ================================
   INDICATORS (DOTS)
================================ */
.portfolio-indicators {
    bottom: -45px;
}

.portfolio-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.portfolio-indicators .active {
    background-color: var(--neon-green);
    box-shadow: 0 0 12px rgba(57,255,20,0.8);
    transform: scale(1.3);
}

/* ================================
   ARROW CONTROLS
================================ */
.portfolio-control-prev,
.portfolio-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolio-control-prev {
    left: -70px;
}

.portfolio-control-next {
    right: -70px;
}

.portfolio-control-prev:hover,
.portfolio-control-next:hover {
    background: rgba(57,255,20,0.15);
    box-shadow: 0 0 25px rgba(57,255,20,0.5);
}

/* Override default bootstrap icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
    .portfolio-control-prev,
    .portfolio-control-next {
        display: none;
    }

    .portfolio-carousel {
        max-width: 100%;
    }

    .portfolio-carousel .carousel-item {
        padding: 10px;
    }
}

.work-item {
    min-width: 300px;
    height: 250px;
    display: block;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0;
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(57, 255, 20, 0.15);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.work-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(57, 255, 20, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.work-item:hover {
    transform: translateY(-12px);
    border-color: #D9E021;
    box-shadow: 0 25px 70px  #D9E021;
}

.work-item:hover::before {
    opacity: 1;
}

.work-item:hover img {
    transform: scale(1.05);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid  #D9E021;
    background: rgba(15, 15, 15, 0.7);
    color: #D9E021;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    border-color: var(--neon-green);
    background:  #D9E021;
    box-shadow: 0 0 15px  #D9E021;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.slider-dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px  #D9E021;
}

/* Bootstrap Carousel Customization */
.portfolio-carousel {
    position: relative;
    padding: 40px 0;
}

.portfolio-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.carousel-item {
    display: none;
    transition: none;
}

.carousel-item.active {
    display: flex;
    justify-content: center;
    animation: fadeIn 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.portfolio-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    bottom: auto;
    position: relative;
}

.portfolio-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.portfolio-indicators button.active {
    background: #D9E021;
    box-shadow: 0 0 10px  #D9E021;
}

.portfolio-indicators button:hover {
    background:  #D9E021;
}

/* Carousel Controls */
.portfolio-control-prev,
.portfolio-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(15, 15, 15, 0.062);
    border: 2px solid  #D9E021;
    border-radius: 50%;
    color: #D9E021;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.portfolio-control-prev {
    left: 20px;
}

.portfolio-control-next {
    right: 20px;
}

.portfolio-control-prev:hover,
.portfolio-control-next:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 20px;
    background: none;
    width: auto;
    height: auto;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    display: none;
}

   

.slider-dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px  #D9E021;
}

.contact-wrap {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    border: 1.5px solid  #D9E021;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info {
    flex: 1 1 320px;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.contact-info a {
    color: #D9E021;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
    box-shadow: 0 0 15px  #D9E021;
}

.phone {
    font-weight: 600;
    color: #D9E021;
}

.contact-form {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-row {
    display: flex;
    gap: 16px;
}

.input-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1.5px solid rgba(57, 255, 20, 0.2);
    color: white;
    padding: 14px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(57, 255, 20, 0.5);
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.site-footer {
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    border-top: 1.5px solid rgba(57, 255, 20, 0.15);
    margin-top: 60px;
    font-weight: 500;
}

@media (max-width: 980px) {
    .work-item { min-width: 250px; height: 200px; }
    .portfolio-control-prev { left: 10px; }
    .portfolio-control-next { right: 10px; }
    .portfolio-control-prev,
    .portfolio-control-next { width: 45px; height: 45px; font-size: 18px; }
    .slider-btn { width: 45px; height: 45px; font-size: 18px; left: 10px; right: 10px; }
    h1 { font-size: 3.2rem; }
    .hero-left { padding: 60px 50px; }
    .features-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .features-title { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    .work-item { min-width: 200px; height: 160px; }
    .portfolio-inner { min-height: 200px; }
    .portfolio-control-prev,
    .portfolio-control-next { width: 40px; height: 40px; font-size: 16px; }
    .portfolio-indicators button { width: 8px; height: 8px; }
    h1 { font-size: 2.8rem; }
    .hero-left { padding: 50px 40px; }
    .hero { padding: 100px 15px 60px; }
    .hero-tagline { max-width: 100%; }
    .cta-group { gap: 15px; }
    .outline-btn, .primary-btn { padding: 14px 32px; font-size: 0.95rem; }
    .hero-stats { gap: 32px; }
    .stat-number { font-size: 1.5rem; }
    .features-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .features-title { font-size: 1.6rem; }
}

@media (max-width: 520px) {
    .work-item { min-width: 150px; height: 120px; }
    .portfolio-inner { min-height: 150px; }
    .portfolio-control-prev,
    .portfolio-control-next { width: 36px; height: 36px; font-size: 14px; }
    .portfolio-control-prev { left: 5px; }
    .portfolio-control-next { right: 5px; }
    .portfolio-indicators { gap: 6px; margin-bottom: 20px; }
    .portfolio-indicators button { width: 8px; height: 8px; }
    .contact-wrap { flex-direction: column; }
    h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-left { padding: 40px 30px; border-radius: 20px; }
    .hero { padding: 80px 15px 50px; min-height: 85vh; }
    .hero-title { margin-bottom: 20px; }
    .hero-tagline { font-size: 1rem; margin-bottom: 30px; }
    .cta-group { flex-direction: column; width: 100%; }
    .outline-btn, .primary-btn { width: 100%; text-align: center; padding: 14px 24px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .status-badge { font-size: 0.85rem; }
    .features-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .features-title { font-size: 1.4rem; }
    .service-title { font-size: 1rem; }
    .service-description { font-size: 0.9rem; }
}
  
/* Background video styling (appended) */
.bg-video {
    position: fixed;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
    filter: saturate(0.95) contrast(0.95) brightness(0.98);
}

/* Slight overlay on top of video to keep text readable */
.bg-video-overlay {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.35) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .bg-video { animation: none; }
    .smoke-blob { animation-play-state: paused; }
}

/* --- STAR FOLLOWER EFFECT --- */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -0.5;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle,  #D9E021);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-green), 0 0 15px  #D9E021;
    pointer-events: none;
    animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.3);
    }
}

/* ========== SELECTED WORKS SECTION ========== */
.selected-works {
    background: #00000000;
    overflow: hidden;
    padding: 60px 0 !important;
}

/* Green underline */
.green-line {
    display: block;
    width: 50px;
    height: 3px;
    background: #D9E021;
    margin-top: 8px;
}

/* Slider wrapper */
.slider-wrapper {
    position: relative;
    height: 360px;
}

/* Track */
.slider-track {
    align-items: center;
    transition: transform 0.6s ease;
}

/* Glass Card */
.project-card {
    width: 260px;
    height: 320px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    overflow: hidden;
}

/* Shine */
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s;
}

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

/* Active center card */
.project-card.active {
    transform: scale(1.08);
    background: rgba(217,224,33,0.12);
    border-color: rgba(217,224,33,0.4);
}

/* Arrows */
.nav-arrow {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #D9E021;
    background: transparent;
    color: #D9E021;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.nav-arrow:hover {
    background: #D9E021;
    color: #000;
}

.nav-arrow.left { left: 40px; }
.nav-arrow.right { right: 40px; }

/* Dots */
.slider-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots span.active {
    background: #D9E021;
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .project-card {
        width: 260px;
        height: 310px;
    }
    
    .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .selected-works {
        padding: 60px 0 !important;
    }
    
    .project-card {
        width: 220px;
        height: 260px;
    }
    
    .carousel-inner {
        min-height: 300px;
    }
    
    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .portfolio-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .selected-works {
        padding: 40px 0 !important;
    }
    
    .project-card {
        width: 180px;
        height: 220px;
    }
    
    .carousel-inner {
        min-height: 240px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .nav-arrow.carousel-control-prev {
        left: 10px;
    }
    
    .nav-arrow.carousel-control-next {
        right: 10px;
    }
    
    .portfolio-indicators {
        gap: 8px;
        margin-bottom: 20px !important;
    }
    
    .portfolio-indicators button {
        width: 8px;
        height: 8px;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
}
/* client side  */

/* CLIENT SECTION */
.clients-section {
    padding: 140px 0;
    background: transparent;
    overflow: hidden;
}

/* SLIDER STRIP */
.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;

    background: rgba(255, 255, 255, 0);
}

/* NETFLIX FADE EDGES */
.clients-slider::before,
.clients-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0)
    );
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0)
    );
}

/* TRACK */
.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
    align-items: center;
}

/* LOGO GLASS CARD */
.clients-track img {
    height: 150px;
    width: 200px;
    padding: 5px 5px;
    object-fit: cover;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.05)
    );

    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.35);

    opacity: 0.95;
    filter: grayscale(5%);

    transition:
        transform 0.45s cubic-bezier(.22,1,.36,1),
        box-shadow 0.45s ease,
        opacity 0.45s ease;
}

/* HOVER */
.clients-track img:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.45);
}

/* AUTO SCROLL */
.slider-right .clients-track {
    animation: scrollRight 34s linear infinite;
}

.slider-left .clients-track {
    animation: scrollLeft 34s linear infinite;
}

/* FLOAT MICRO MOTION */
.clients-track img {
    animation: floatLogo 7s ease-in-out infinite;
}

.clients-track img:nth-child(even) {
    animation-delay: 2s;
}

/* KEYFRAMES */
@keyframes scrollRight {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@keyframes floatLogo {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* PAUSE ON HOVER */
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* MOBILE */
@media (max-width: 768px) {
    .clients-slider::before,
    .clients-slider::after {
        width: 90px;
    }

    .clients-track {
        gap: 60px;
    }

    .clients-track img {
        height: 52px;
        padding: 14px 20px;
        border-radius: 14px;
    }
}

.selected-works {
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}

.project-card {
    min-width: 260px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transform: scale(0.88);
    opacity: 0.6;

    transition: all 0.6s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ACTIVE (CENTER) */
.project-card.active {
    transform: scale(1);
    opacity: 1;
}

/* ARROWS */
.nav-arrow {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.nav-arrow:hover {
    background: rgba(255,255,255,0.15);
}
/* Section wrapper */
.thoughts-glass-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: transparent; /* fully transparent background */
}

/* Glass Card for Text */
.thoughts-glass-card {
    background: rgba(0, 0, 0, 0); /* very light transparent */
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1000px;
    text-align: center;
    color: #ffffff; /* text color inside glass */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0);
}

/* Subtitle */
.thoughts-subtitle {
    font-size: 2.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 1000;
    letter-spacing: 2px;
    color: #D9E021;
    margin-bottom: 1rem;
}

/* Main typing text */
.thoughts-title {
    font-size: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px; /* space for multiple lines */
    white-space: pre-wrap; /* preserve new lines */
}

/* Handwriting font */
.thoughts-handwriting {
    font-family: 'Inter', 'Bold';
    text-align: center;
    font-weight: 6000;
    font-size: larger;
    letter-spacing: 0.2rem;
    color: #ffffff; /* text inside glass */
}

/* Blinking cursor */
.thoughts-cursor {
    font-family: monospace;
    font-weight: bold;
    animation: blink 0.7s infinite;
    color: #ffffff;
}

@keyframes blink {
    0%,50%,100% { opacity: 1; }
    25%,75% { opacity: 0; }
}

/* Responsive */
@media(max-width:768px){
    .thoughts-title { font-size: 1.6rem; min-height: 100px; }
    .thoughts-glass-card { padding: 40px 20px; }
}

/* =========================
   FOOTER – GLASS STYLE
========================= */

.site-footer {
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
}

/* GLASS CONTAINER */
.footer-glass {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 50px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* BRAND */


.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
}

/* HEADINGS */
.footer-heading {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
}

/* LIST */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-list li:hover {
    color: #fff;
    transform: translateX(6px);
}

/* DIVIDER */
.footer-divider-line {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-glass {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-glass {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* TYPO */
.letter-space {
    letter-spacing: 0.15em;
    font-size: 0.75rem;
}

/* SLIDER */
.reviews-track {
    width: max-content;
    animation: scrollReviews 30s linear infinite;
}

.review-card {
    min-width: 440px;
    cursor: pointer;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.35s ease;
}

.reviews-section .review-card {
    min-height: 220px;
}



.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

@keyframes scrollReviews {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.reviews-track:hover {
    animation-play-state: paused;
}

.glass-modal {
    background: rgba(20,20,20,0.65);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    color: #fff;
}

.modal-review-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* ========== PORTFOLIO MODAL STYLES (MOBILE OPTIMIZED) ========== */
.glass-modal {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    color: white;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Header & Close Button */
.glass-modal .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    border: none !important;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}

.glass-modal .btn-close {
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 1;
    background-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    filter: invert(1) grayscale(100%) brightness(200%);
}

.glass-modal .btn-close:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: var(--neon-green);
    filter: brightness(0);
    opacity: 1;
}

/* Modal Layout */
.glass-modal .modal-body {
    padding: 0;
}

.glass-modal .row {
    margin: 0;
}

/* Text Content */
.modal-category {
    color: var(--neon-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.modal-title-custom {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Image Container */
.modal-image-container {
    height: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,15,15,1) 0%, transparent 25%);
    pointer-events: none;
    z-index: 2;
}

/* Carousel Controls (Glass Buttons) */
.modal-carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-inner:hover + .modal-carousel-control,
.carousel-inner:hover ~ .modal-carousel-control,
.modal-carousel-control:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    transform: translateY(-50%) scale(1.1);
}

.modal-carousel-control:hover .carousel-control-prev-icon,
.modal-carousel-control:hover .carousel-control-next-icon {
    filter: invert(1) brightness(0);
}

.carousel-control-prev.modal-carousel-control { left: 20px; }
.carousel-control-next.modal-carousel-control { right: 20px; }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .glass-modal .row {
        flex-direction: column-reverse;
    }
    
    .glass-modal .col-md-6.p-4 {
        padding: 60px 25px 40px !important; /* Increased top padding to prevent overlap */
        justify-content: flex-start !important;
        text-align: left !important;
        min-height: auto;
    }

    .modal-image-container {
        height: 300px !important;
        min-height: 300px !important;
        width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .modal-image-overlay {
        background: linear-gradient(to top, rgba(15,15,15,1) 0%, transparent 25%);
    }

    .glass-modal .modal-header {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
        z-index: 10; /* Ensure header stays on top but doesn't block clicks if possible */
    }

    .glass-modal .btn-close {
        margin: 0;
        margin-left: auto;
    }

    .modal-title-custom {
        font-size: 2rem;
    }

    .modal-carousel-control {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.3);
    }

    .carousel-control-prev.modal-carousel-control { left: 10px; }
    .carousel-control-next.modal-carousel-control { right: 10px; }
}

/* Portfolio Grid Items - Fixed Height */
.project-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    height: 280px; /* Fixed height for uniformity */
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box without stretching */
    display: block;
    transition: transform 0.5s ease;
}

.project-image-wrapper:hover img {
    transform: scale(1.05);
}
