:root {
    --neon-green: #39ff14;
    --dark-bg:black;
    --panel-bg: #111;
    --text-gray: #b5b5b5;
    --text-light: #f5f5f5;
}

body {
    margin: 0;
    background: var(--dark-bg);
    font-family: 'Segoe UI', sans-serif;
    /* overflow-x: hidden; */
}

/* ================= SCROLLBAR - CHROME / EDGE ================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111; /* Dark track */
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-green);
}

::-webkit-scrollbar-thumb:hover {
    background: #2fff00;
    box-shadow: 0 0 15px var(--neon-green),
                0 0 25px var(--neon-green);
}

/* ================= SCROLLBAR - FIREFOX ================= */

html {
    scrollbar-width: thin;
    scrollbar-color: var(--neon-green) #111;
}


/* ---- BACKGROUND PARTICLES ---- */
.particles {
    /* position: absolute; */
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff99;
    box-shadow: 0 0 12px #00ff99, 0 0 25px #00ff99;
    animation: rise linear infinite;
}

@keyframes rise {
    0% { transform: translateY(0) scale(0.7); opacity: 0.3; }
    100% { transform: translateY(-120vh) scale(1); opacity: 1; }
}















    .nav-link {
            color: var(--text-light);
            text-decoration: none;
            transition: 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--neon-green);
        }

        .nav-link.active {
            color: var(--neon-green);
            text-shadow: 0 0 8px var(--neon-green);
        }









        .floating-header-icons {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-header-icons i {
            position: absolute;
            font-size: 42px;
            color: rgba(57, 255, 20, .085);
            text-shadow: 0 0 12px rgba(57, 255, 20, .09);
            animation: floatIcon 10s ease-in-out infinite;
        }

        .floating-header-icons i:nth-child(1) {
            top: 60%;
            left: 5%;
        }

        .floating-header-icons i:nth-child(2) {
            top: 25%;
            left: 70%;
        }

        .floating-header-icons i:nth-child(3) {
            top: 42%;
            left: 17%;
        }

        .floating-header-icons i:nth-child(4) {
            top: 65%;
            left: 60%;
        }

        .floating-header-icons i:nth-child(5) {
            top: 83%;
            left: 85%;
        }

        .floating-header-icons i:nth-child(6) {
            top: 22%;
            left: 30%;
        }

        .floating-header-icons i:nth-child(7) {
            top: 45%;
            left: 83%;
        }

        .floating-header-icons i:nth-child(8) {
            top: 20%;
            left: 90%;
        }

        .floating-header-icons i:nth-child(9) {
            top: 60%;
            left: 92%;
        }

        .floating-header-icons i:nth-child(10) {
            top: 22%;
            left: 4%;
        }

        .floating-header-icons i:nth-child(11) {
            top: 83%;
            left: 12%;
        }

        .floating-header-icons i:nth-child(12) {
            top: 65%;
            left: 34%;
        }

        .floating-header-icons i:nth-child(13) {
            top: 92%;
            left: 50%;
        }

        .floating-header-icons i:nth-child(even) {
            animation-delay: 2s;
        }


        .floating-header-icons i:nth-child(3n) {
            animation-delay: 4s;
        }


        @keyframes floatIcon {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-25px);
            }

            100% {
                transform: translateY(0px);
            }
        }





/* Base grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    justify-items: center;
    align-items: center;
}

.icon-box i {
    font-size: 48px;
    transition: transform .25s ease;
}

/* Hover effect (optional but recommended) */
.icon-box:hover i {
    transform: scale(1.15);
}

/* Brand colors */
.icon-box:nth-child(1)  i { color: #E34F26; } /* HTML5 */
.icon-box:nth-child(2)  i { color: #1572B6; } /* CSS3 */
.icon-box:nth-child(3)  i { color: #F7DF1E; } /* JavaScript */
.icon-box:nth-child(4)  i { color: #61DAFB; } /* React */

.icon-box:nth-child(5)  i { color: #339933; } /* Node.js */
.icon-box:nth-child(6)  i { color: #3776AB; } /* Python */
.icon-box:nth-child(7)  i { color: #777BB4; } /* PHP */
.icon-box:nth-child(8)  i { color: #FF2D20; } /* Laravel */

.icon-box:nth-child(9)  i { color: #F05033; } /* Git */
.icon-box:nth-child(10) i { color: #ffffff; } /* GitHub */
.icon-box:nth-child(11) i { color: #2496ED; } /* Docker */
.icon-box:nth-child(12) i { color: #FF9900; } /* AWS */

.icon-box:nth-child(13) i { color: #21759B; } /* WordPress */
.icon-box:nth-child(14) i { color: #F24E1E; } /* Figma */
.icon-box:nth-child(15) i { color: #7952B3; } /* Bootstrap */
.icon-box:nth-child(16) i { color: #DD0031; } /* Angular */


/* 🔥 RESPONSIVE BREAKPOINTS */

/* Tablets (768px – 1024px) */
@media (max-width: 1024px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .icon-box i {
        font-size: 40px;
    }
}

/* Large phones (600px – 767px) */
@media (max-width: 767px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .icon-box i {
        font-size: 36px;
    }
}

/* Small phones (0 – 599px) */
@media (max-width: 599px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .icon-box i {
        font-size: 34px;
    }
}





/* ================= FIXED HEADER WRAPPER ================= */
.header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    z-index: 1000;
}

/* ================= TOP STRIP ================= */
.neon-top-strip {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

/* Contact */
.neon-contact {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--text-light);
}

.neon-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.neon-contact-item:hover {
    color: var(--neon-green);
}

/* Social */
.neon-social {
    display: flex;
    gap: 20px;
}

.neon-social a {
    color: var(--text-light);
    font-size: 16px;
    transition: 0.3s ease;
}

.neon-social a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

/* Scoped Icons */
.neon-top-strip .neon-icon {
    color: var(--neon-green);
}

@media (max-width: 992px) {

    .neon-top-strip {
        padding: 0 25px;
    }

    .neon-contact {
        gap: 20px;
        font-size: 13px;
    }

    .neon-social {
        gap: 15px;
    }

}
@media (max-width: 768px) {

    .neon-top-strip {
        height: auto;
        flex-direction: column;
        padding: 12px 20px;
        gap: 10px;
        text-align: center;
    }

    .neon-contact {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }

    .neon-contact-item {
        justify-content: center;
    }

    .neon-social {
        justify-content: center;
    }

}
@media (max-width: 480px) {

    .neon-contact {
        font-size: 12px;
    }

    .neon-social a {
        font-size: 14px;
    }

}




/* Scroll Progress */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #222;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green),
                0 0 20px var(--neon-green);
    transition: width 0.1s linear;
}

/* ================= NAVBAR ================= */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 90px;
    padding: 0 40px;
    background-color: black;
    border-bottom: 1px solid var(--neon-green);
}

/* Desktop nav groups */
.nav-group {
    display: flex;
    gap: 30px;
}

.left { justify-content: flex-start; }
.right { justify-content: flex-end; }

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

/* Logo */
.logo img {
    height: 80px;
    width: auto;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--panel-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 2px solid var(--neon-green);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 992px) {
    body {
        padding-top: 115px;
    }

    .navbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        height: 70px;
        padding: 0 20px;
        position: relative;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        height: 50px;
    }

    .nav-group {
        display: none;
    }

    .hamburger {
        display: flex;
        justify-self: end;
    }
}










/* SECTION */
#about {
    padding: 40px 0;
    perspective: 1400px;
}

/* LEFT CONTENT */
.tech-title {
    font-size: 56px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.tech-sub {
    color: var(--text-light);
    font-size: 22px;
    margin-bottom: 20px;
}

.tech-text {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 16px;
}

/* HOLOGRAPHIC BORDER */
.panel-wrapper {
    position: relative;
    border-radius: 18px;
}

.panel-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(57,255,20,0.6),
        transparent 40%,
        rgba(57,255,20,0.4)
    );
    z-index: 0;
    filter: blur(4px);
}

/* PANEL */
.tech-panel {
    position: relative;
    background: var(--panel-bg);
    border-radius: 18px;
    padding: 55px 40px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease, box-shadow 0.3s ease;
    z-index: 2;

    animation: subtlePulse 6s ease-in-out infinite;
}

/* Subtle breathing glow */
/* @keyframes subtlePulse {
    0% {
        box-shadow:
            0 0 15px rgba(57,255,20,0.12),
            0 0 30px rgba(57,255,20,0.05);
    }
    50% {
        box-shadow:
            0 0 25px rgba(57,255,20,0.2),
            0 0 60px rgba(57,255,20,0.08);
    }
    100% {
        box-shadow:
            0 0 15px rgba(57,255,20,0.12),
            0 0 30px rgba(57,255,20,0.05);
    }
} */

/* Strong glow on hover */
.tech-panel:hover {
    box-shadow:
        0 0 20px rgba(57,255,20,0.4),
        0 0 80px rgba(57,255,20,0.2);
}






/* Cursor light reflection */
/* .tech-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(57,255,20,0.25), transparent 60%);
    pointer-events: none;
    opacity: 0.6;
} */







/* Stats */
.panel-header {
    color: var(--neon-green);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    transform: translateZ(40px);
}

.stat-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
    transform: translateZ(30px);
}

.stat-line span:first-child {
    color: var(--text-gray);
}

.stat-number {
    color: var(--neon-green);
    font-weight: 700;
    transition: 0.3s ease;
}

.tech-panel:hover .stat-number {
    text-shadow: 0 0 10px rgba(57,255,20,0.7);
    transform: translateZ(50px) scale(1.05);
}

/* Responsive */
@media(max-width: 991px){
    .tech-title {
        font-size: 38px;
    }
}



.btn a {text-decoration: none; color: white;}
/* .btn a :hover{color: white;  background-color: green;} */

/* service css */

/* ================================
   HIGH-TECH SERVICE MATRIX
================================ */

#services {
    position: relative;
    padding: 160px 0 30px;
    background: black;
    overflow: hidden;
}

/* Subtle digital grid background */
#services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(57,255,20,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57,255,20,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
    pointer-events: none;
}

.services-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
    letter-spacing: 3px;
}

.services-sub {
    color: var(--text-gray);
    margin-top: 15px;
}

/* MATRIX GRID */

.services-matrix {
    margin-top: 80px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .services-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MODULE */

.service-module {
    position: relative;
    padding: 60px 50px;
    /* background: linear-gradient(145deg, #111, #151515); */
    background-image: url(/images/banner.jpg);
    border: 1px solid rgba(57,255,20,0.15);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 92% 100%, 0 100%);
    transition: 0.4s ease;
    transform-style: preserve-3d;
    border-top: 1px solid var(--neon-green);
    
}

/* Neon animated border effect */
.service-module::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        120deg,
        transparent,
        var(--neon-green),
        transparent
    );
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}

.service-module:hover::before {
    opacity: 0.2;
     box-shadow:
        0 0 50px rgba(57,255,20,0.4),
        0 0 120px rgba(57,255,20,0.2);
}

/* Glow + Lift */
.service-module:hover {
    transform: translateY(-12px) rotateX(3deg);
     box-shadow:
        0 0 50px rgba(57,255,20,0.4),
        0 0 120px rgba(57,255,20,0.2);
    border-color: rgba(57,255,20,0.4);
    
}


/* Text */

.service-module h4 {
    color: var(--neon-green);
    margin-bottom: 20px;
    font-size: 22px;
}

.service-module p {
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 500px;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .service-module {
        padding: 40px 30px;
        clip-path: none;
    }
}
/* Soft breathing glow */
@keyframes modulePulse {
    0% { box-shadow: 0 0 0 rgba(57,255,20,0.05); }
    50% { box-shadow: 0 0 30px rgba(57,255,20,0.08); }
    100% { box-shadow: 0 0 0 rgba(57,255,20,0.05); }
}

.service-module {
    animation: modulePulse 6s ease-in-out infinite;
}










/* goal css */

/* ================================
   STARTUP GROWTH SECTION
================================ */

#growth {
    padding: 160px 0 60px;
    background: black;
    position: relative;
    overflow: hidden;
}

/* Subtle neon background glow */
/* #growth::before {
    content: "";
    position: absolute;
    inset: -200px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(57,255,20,0.06),
        transparent 70%
    );
    animation: growthDrift 10s ease-in-out infinite alternate;
    pointer-events: none;
} */

@keyframes growthDrift {
    0% { transform: translate(0,0); }
    100% { transform: translate(30px,-20px); }
}

.growth-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
    letter-spacing: 3px;
}

.growth-lead {
    font-size: 1.4rem;
    margin-top: 20px;
    color: var(--text-light);
}

.growth-text {
    max-width: 750px;
    margin: 25px auto 50px;
    color: var(--text-gray);
    line-height: 1.8;
}

.growth-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.growth-item {
    padding: 15px 25px;
    border: 1px solid rgba(57,255,20,0.2);
    border-radius: 30px;
    color: var(--text-light);
    transition: 0.3s ease;
}

 .impact{color: var(--neon-green); }

.growth-item:hover {
    box-shadow: 0 0 25px rgba(57,255,20,0.25);
    transform: translateY(-5px);
}
/* Mobile: show buttons in 2×2 layout */
@media (max-width: 768px) {
    .growth-points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;  /* spacing between boxes */
    }
}




/* projct css */
/* =========================================
   PROJECT SECTION – NEON SYSTEM
========================================= */

#advertisers{
  background: var(--dark-bg);
  padding: 140px 0;
}

/* PAGE WRAPPER */
.page{
  max-width:1400px;
  margin-inline:auto;
  padding:22px;
}

/* PANEL BASE */
.panel{
  background: rgba(18,18,18,.7);
  border: 1px solid rgba(57,255,20,.15);
  border-radius: 18px;
  padding: 16px;
  transition: all .4s ease;

  box-shadow:
    0 15px 40px rgba(0,0,0,.85),
    0 0 25px rgba(57,255,20,.05);
}

/* GRID */
.top-grid{
  display:grid;
  grid-template-columns:200px 1fr 1fr;
  gap:20px;
}

/* STATS */
.stats{
  display:grid;
  gap:16px;
}

.stat h3{
  font-size:1.6rem;
  color: var(--neon-green);
  margin:0;
}

.stat span{
  font-size:.8rem;
  color: var(--text-gray);
}

/* BADGE */
.badge{
  position:absolute;
  top:12px;
  left:12px;
  font-size:.7rem;
  padding:5px 10px;
  border-radius:8px;
  background: rgba(57,255,20,.12);
  color: var(--neon-green);
  border:1px solid rgba(57,255,20,.35);
  letter-spacing:.5px;
  z-index:2;
}

/* PROJECT CARD */
.project{
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

/* IMAGE */
.project img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:14px;
  background:#111;
  transition: transform .6s ease;
}

/* TEXT */
.project h4{
  margin-top:12px;
  font-size:1rem;
  color: var(--text-light);
}

.project .desc{
  font-size:.8rem;
  color: var(--text-gray);
}

.project .desc-long{
  margin-top:6px;
  font-size:.78rem;
  color:#9a9a9a;
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* NEON HOVER EFFECT */
.project::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:20px;
  background:
    radial-gradient(
      600px circle at 50% 0%,
      rgba(57,255,20,.15),
      rgba(57,255,20,.06) 35%,
      transparent 65%
    );
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
  z-index:0;
}

.project:hover{
  transform: translateY(-8px);
  border-color: rgba(57,255,20,.45);
  box-shadow:
    0 25px 60px rgba(0,0,0,.95),
    0 0 60px rgba(57,255,20,.25);
}

.project:hover::after{
  opacity:1;
}

.project:hover img{
  transform: scale(1.06);
}

/* SECOND GRID */
.student-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

/* TOOLBOX */
.toolbox{
  margin-top:22px;
  padding:14px 0;
  overflow:hidden;
}

.marquee{
  overflow:hidden;
  background: rgba(18,18,18,.65);
  border:1px solid rgba(57,255,20,.15);
  border-radius:18px;
  padding:16px 0;
}

.marquee-track{
  display:flex;
  align-items:center;
  gap:45px;
  white-space:nowrap;
  width:max-content;
  animation:scroll 60s linear infinite;
}

.marquee-track img{
  width:34px;
  height:34px;
  flex-shrink:0;
  filter: none;
  transition:.3s ease;
}

.marquee-track img:hover{
  filter: grayscale(0%) brightness(1.4);
  transform: scale(1.15);
}

@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* RESPONSIVE */
@media(max-width:900px){
  .top-grid{
    grid-template-columns:1fr;
  }

  .student-grid{
    grid-template-columns:1fr;
  }
}
.neon-outline-title{
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;

    color: transparent;

    margin: 80px 0;
}














/* =========================================
   CYBER FOOTER
========================================= */

.cyber-footer{
    position: relative;
    background: var(--dark-bg);
    padding: 120px 6% 50px;
    overflow: hidden;
    border-top: 1px solid rgba(57,255,20,.15);
}

/* Subtle grid background */

.cyber-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        repeating-linear-gradient(
            to right,
            rgba(57,255,20,.04) 0,
            rgba(57,255,20,.04) 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            to bottom,
            rgba(57,255,20,.04) 0,
            rgba(57,255,20,.04) 1px,
            transparent 1px,
            transparent 60px
        );
    opacity:.2;
    pointer-events:none;
}

/* Floating background icons */
.floating-icons{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:1;
}

.floating-icons i{
    position:absolute;
    font-size:48px;
    color:rgba(57,255,20,.15);
    text-shadow:0 0 12px rgba(57,255,20,.3);
    animation: floatIcon 10s ease-in-out infinite;
}

/* Randomized positioning */
.floating-icons i:nth-child(1){ top:8%; left:10%; }
.floating-icons i:nth-child(2){ top:10%; left:70%; }
.floating-icons i:nth-child(3){ top:55%; left:25%; }
.floating-icons i:nth-child(4){ top:65%; left:60%; }
.floating-icons i:nth-child(5){ top:40%; left:45%; }
.floating-icons i:nth-child(6){ top:15%; left:35%; }
.floating-icons i:nth-child(7){ top:65%; left:80%; }
.floating-icons i:nth-child(8){ top:20%; left:90%; }
.floating-icons i:nth-child(9){ top:40%; left:65%; }
.floating-icons i:nth-child(10){ top:30%; left:2%; }

/* Different delays */
.floating-icons i:nth-child(even){
    animation-delay: 2s;
}
.floating-icons i:nth-child(3n){
    animation-delay: 4s;
}

@keyframes floatIcon{
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}
/* Layout */

.footer-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:60px;
    max-width:1300px;
    margin:auto;
}

/* Logo */

.footer-logo{
    font-size:1.8rem;
    font-weight:800;
    color:var(--neon-green);
    margin-bottom:20px;
    text-shadow:0 0 15px rgba(57,255,20,.4);
}

/* Text */

.footer-col p{
    color:var(--text-gray);
    line-height:1.8;
    font-size:.9rem;
}

.footer-col h4{
    color:var(--text-light);
    margin-bottom:20px;
    letter-spacing:1px;
}

/* Links */

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
    color:var(--text-gray);
    font-size:.9rem;
}

.footer-col ul li a{
    color:var(--text-gray);
    text-decoration:none;
    transition:.3s ease;
}

.footer-col ul li a:hover{
    color:var(--neon-green);
    text-shadow:0 0 10px rgba(57,255,20,.6);
}

/* Social icons */

.social-icons{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(57,255,20,.3);
    border-radius:50%;
    color:var(--neon-green);
    transition:.3s ease;
}

.social-icons a:hover{
    background:var(--neon-green);
    color:#000;
    box-shadow:0 0 20px rgba(57,255,20,.6);
    transform:translateY(-5px);
}

/* Bottom */

.footer-bottom{
    margin-top:80px;
    text-align:center;
    border-top:1px solid rgba(57,255,20,.15);
    padding-top:20px;
    font-size:.85rem;
    color:var(--text-gray);
}

/* Responsive */

@media(max-width:992px){
    .footer-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-wrapper{
        grid-template-columns:1fr;
    }
}

/* ================= SOCIAL FLOAT ANIMATION ================= */

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(57,255,20,.3);
    border-radius:50%;
    color:var(--neon-green);
    transition:.3s ease;

    animation: socialFloat 4s ease-in-out infinite;
}

/* Different delays so they don't move together */
.social-icons a:nth-child(1){ animation-delay:0s; }
.social-icons a:nth-child(2){ animation-delay:.5s; }
.social-icons a:nth-child(3){ animation-delay:1s; }
.social-icons a:nth-child(4){ animation-delay:1.5s; }

@keyframes socialFloat{
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}







/* ================= HERO SECTION ================= */

.hero-section{
    position: relative;
    min-height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 6%;
    overflow: hidden;
}

/* Grid background */

.hero-grid-bg{
    position:absolute;
    inset:0;
    background:
        repeating-linear-gradient(
            to right,
            rgba(57,255,20,.04) 0,
            rgba(57,255,20,.04) 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            to bottom,
            rgba(57,255,20,.04) 0,
            rgba(57,255,20,.04) 1px,
            transparent 1px,
            transparent 60px
        );
    opacity:.2;
}

/* Content */

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tag{
    display:inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 6px 14px;
    border: 1px solid rgba(57,255,20,.3);
    border-radius: 20px;
    color: var(--neon-green);
    margin-top: 30px;
}

/* Title */

.hero-title{
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
}

.hero-title span{
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57,255,20,.4);
}

/* Subtitle */

.hero-sub{
    margin-top: 25px;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Buttons */

.hero-buttons{
    margin-top: 40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap: wrap;
}

.btn-primary{
    padding: 14px 28px;
    background: var(--neon-green);
    color:#000;
    font-weight:600;
    border-radius: 8px;
    text-decoration:none;
    transition:.3s ease;
}

.btn-primary:hover{
    box-shadow:0 0 25px rgba(57,255,20,.6);
    transform: translateY(-4px);
}

.btn-outline{
    padding: 14px 28px;
    border:1px solid rgba(57,255,20,.4);
    color: var(--neon-green);
    border-radius:8px;
    text-decoration:none;
    transition:.3s ease;
}

.btn-outline:hover{
    background: rgba(57,255,20,.1);
    box-shadow:0 0 20px rgba(57,255,20,.4);
}

/* Floating icons */

.hero-icons{
    position:absolute;
    inset:0;
    pointer-events:none;
}

.hero-icons i{
    position:absolute;
    font-size:60px;
    color: rgba(57,255,20,.08);
    animation: floatHero 10s ease-in-out infinite;
}

.hero-icons i:nth-child(1){ top:26%; left:16%; }
.hero-icons i:nth-child(2){ top:70%; left:20%; animation-delay:2s; }
.hero-icons i:nth-child(3){ top:30%; right:15%; animation-delay:4s; }
.hero-icons i:nth-child(4){ bottom:20%; right:25%; animation-delay:6s; }
.hero-icons i:nth-child(5){ top:50%; left:50%; animation-delay:8s; }

@keyframes floatHero{
    0%,100%{ transform: translateY(0px); }
    50%{ transform: translateY(-30px); }
}




















     
















/* ------ MAIN SECTION ------ */
.section {
    position: relative;
    z-index: 2;
    padding: 180px 20px 20px;
    display: flex;
    justify-content: center;
}

.content-box {
    width: 100%;
    max-width: 1300px;
    border-radius: 26px;
    border: 2px solid rgba(0, 255, 150, 0.2);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 15px #01ff88 inset, 0 0 20px rgba(4, 255, 21, 0.938);
    padding: clamp(30px, 5vw, 60px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 60px);

    backdrop-filter: blur(12px);
}


/* ---------- LEFT CONTENT ---------- */
.left {
    flex: 1 1 50%;
}

.left h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.15;
    color: white;
}

.left h1 span {
    background: var(--neon-green);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

.left p {
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    color: white;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 2vw, 16px) clamp(26px, 3vw, 36px);
    font-size: clamp(14px, 1.8vw, 18px);
    background: var(--neon-green);
    color: #000;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}

.btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 25px #00ff99, 0 0 50px #00ff99;
}


/* ---------- RIGHT ICON GRID (RESPONSIVE) ---------- */
.icon-grid {
    --size: clamp(55px, 7vw, 80px);

    display: grid;
    grid-template-columns: repeat(4, var(--size));
    grid-auto-rows: var(--size);
    gap: clamp(10px, 2vw, 22px);

    justify-content: center;
}

.icon-box {
    width: var(--size);
    height: var(--size);

    background: rgba(0, 255, 150, 0.06);
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 150, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(22px, 4vw, 36px);
    color: #00ff99;
    box-shadow: 0 0 12px #00ff99;

    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}


/* ---------- MOBILE BREAKPOINT ---------- */
@media (max-width: 700px) {
    .content-box {
        flex-direction: column;
        text-align: center;
    }

    .icon-grid {
        --size: clamp(45px, 12vw, 65px);
        margin-top: 20px;
    }
}




















/* =============================
   LAUNCH CONTACT SECTION
============================= */

.launch-contact{
    position:relative;
    background:var(--dark-bg);
    padding:100px 6%;
    overflow:hidden;
}

/* Grid background */

.launch-bg-grid{
    position:absolute;
    inset:0;
    background:
        repeating-linear-gradient(
            to right,
            rgba(57,255,20,.04) 0,
            rgba(57,255,20,.04) 1px,
            transparent 1px,
            transparent 70px
        ),
        repeating-linear-gradient(
            to bottom,
            rgba(57,255,20,.04) 0,
            rgba(57,255,20,.04) 1px,
            transparent 1px,
            transparent 70px
        );
    opacity:.25;
}

/* Ambient glow */

.launch-glow{
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(57,255,20,.08), transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

/* Layout */

.launch-wrapper{
    position:relative;
    z-index:2;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:100px;
    align-items:center;
}

/* LEFT SIDE */

.launch-title {
    font-size: clamp(2rem, 4vw, 4rem); /* Smaller base size */
    font-weight: 900;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
}

/* Bigger neon words */
.launch-title span {
    font-size: 1.4em;
    color: var(--neon-green);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 25px rgba(57,255,20,.5);
}

.launch-sub{
    margin-top:30px;
    color:var(--text-gray);
    line-height:1.8;
    max-width:500px;
}

.launch-stats{
    margin-top:60px;
    display:flex;
    gap:50px;
}

.launch-stats h3{
    color:var(--neon-green);
    font-size:1.6rem;
}

.launch-stats span{
    font-size:.85rem;
    color:var(--text-gray);
}

/* FORM PANEL */

.launch-form-panel{
    position:relative;
    padding:60px;
    background:rgba(255,255,255,.03);
    border-radius:20px;
    backdrop-filter:blur(18px);
    overflow:hidden;
    border: 1px solid var(--neon-green);
}

/* Animated border */

.panel-border{
    position:absolute;
    inset:-2px;
    border-radius:22px;
    animation:borderMove 6s linear infinite;
    z-index:-1;
}


/* Form */

.input-group{
    position:relative;
    margin-bottom:35px;
}

.input-group input,
.input-group textarea{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(57,255,20,.4);
    padding:10px 0;
    color:var(--text-light);
    outline:none;
}

.input-group label{
    position:absolute;
    top:10px;
    left:0;
    color:var(--text-gray);
    transition:.3s ease;
    font-size:14px;
}

/* Floating labels */

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label{
    top:-14px;
    font-size:12px;
    color:var(--neon-green);
}

/* Button */

.launch-btn{
    width:100%;
    padding:16px;
    background:var(--neon-green);
    color:#000;
    border:none;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}

.launch-btn:hover{
    box-shadow:0 0 30px rgba(57,255,20,.7);
    transform:translateY(-4px);
}

/* Responsive */

@media(max-width:992px){
    .launch-wrapper{
        grid-template-columns:1fr;
        gap:80px;
    }
}








/* gsap */

.gsap-showcase {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: white;
}

.gsap-title {
    font-size: 60px;
    font-weight: 800;
    opacity: 0;
}

.gsap-subtitle {
    font-size: 22px;
    color: #b5b5b5;
    opacity: 0;
}

.gsap-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
}
.gsap-btn a {
    color: var(--neon-green);
    text-decoration: none;
}

.gsap-btn:hover {
    box-shadow: 0 0 15px var(--neon-green),
                0 0 30px var(--neon-green);
}



li i {
    margin-right: 8px;
    color: var(--neon-green); 
}





/* process section */

.process-section{
    padding:120px 6%;
    background: black;
}

.process-title{
    text-align:center;
    font-size:2.5rem;
    color: transparent;
    -webkit-text-stroke:1px var(--neon-green);
    margin-bottom:80px;
}

.process-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.process-step{
    padding:30px;
    border:1px solid rgba(57,255,20,.2);
    border-radius:16px;
    background:#111;
    transition:.3s ease;
}

.process-step:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(57,255,20,.25);
}

.process-step h4{
    color:var(--neon-green);
    margin-bottom:15px;
}

.process-step p{
    color:var(--text-gray);
    font-size:.9rem;
}

@media(max-width:900px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
     .gsap-title{
        margin-top: 200px;
    }
}

@media(max-width:600px){
    .process-grid{
        grid-template-columns:1fr;
    }

    .gsap-title{
        margin-top: 10px;
        font-size:40px ;
    }
}





/* performance  */

.performance-bar{
    padding: 60px 6%;
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
        url("/images/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-top: 1px solid rgba(57,255,20,.2);
    border-bottom: 1px solid rgba(57,255,20,.2);
}

.performance-title{
    text-align: center;
    padding-bottom: 50px;
     font-size: 40px;
    font-weight: 800;
    color: transparent;
   

    background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    letter-spacing: -0.02em;
}


.performance-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    text-align:center;
}

.performance-item h3{
    color: var(--neon-green);
    font-size:1.4rem;
    margin-bottom:10px;
}

.performance-item p{
    color: var(--text-gray);
    font-size:.9rem;
}

@media(max-width:900px){
    .performance-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .performance-container{
        grid-template-columns:1fr;
    }
}








/* neon strip and nav .logo */



/* ===============================
   MOBILE HEADER FIX
================================ */

@media (max-width:768px){

    /* Hide top contact strip */
    .neon-top-strip{
        display:none;
    }

    body{
        padding-top:70px; /* adjust for navbar only */
    }

    /* Navbar layout */
    .navbar{
        grid-template-columns: auto 1fr auto;
        height:70px;
        padding:0 20px;
    }

    /* Hide desktop nav */
    .nav-group{
        display:none;
    }

    /* Hamburger left */
    .hamburger{
        display:flex;
        justify-self:start;
    }

    /* Move logo right */
    .logo{
        justify-self:end;
    }

    .logo img{
        height:45px;
    }

}

@media (max-width:768px){

    .navbar{
        height:50px;
        padding:0 12px;
    }

    .logo img{
        height:34px;
    }

    body{
        padding-top:50px;
    }

}



/* ===============================
   HAMBURGER TO CROSS ANIMATION
================================ */

.hamburger span{
    transition: 0.4s ease;
}

/* ACTIVE STATE */

.hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
}



/* ===============================
   DESKTOP DROPDOWN
================================ */

/* CLICK DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #111;
    border: 1px solid rgba(57,255,20,0.2);
    min-width: 200px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(57,255,20,0.15);
    z-index: 2000;
}

.dropdown-menu a {
    padding: 10px 18px;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(57,255,20,0.08);
    color: var(--neon-green);
}

/* ACTIVE STATE */
.dropdown.active .dropdown-menu {
    display: flex;
}
/* ===============================
   MOBILE DROPDOWN
================================ */

./* ===============================
   PREMIUM MOBILE DROPDOWN
================================ */

/* Toggle Button */
.mobile-dropdown-toggle {
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s ease;
}

/* Subtle hover/tap feedback */
.mobile-dropdown-toggle:active {
    background: rgba(57,255,20,0.06);
}

/* Neon left indicator when active */
.mobile-dropdown.active .mobile-dropdown-toggle {
    color: var(--neon-green);
    background: rgba(57,255,20,0.05);
}

/* Animated Submenu */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #111;
    transition: max-height 0.4s ease;
}

/* When open */
.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 400px;
}

/* Submenu Links */
.mobile-dropdown-menu a {
    padding: 14px 40px;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: 0.3s ease;
}

/* Submenu Hover */
.mobile-dropdown-menu a:hover {
    background: rgba(57,255,20,0.08);
    color: var(--neon-green);
    padding-left: 45px; /* slight slide effect */
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: flex;
}

.dropdown-toggle::after {
    position: absolute;
    right: -15px;   /* move right */
    top: 55%;
    transform: translateY(-50%);
}
.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: flex;
}
    
.mobile-menu .mobile-dropdown-toggle {
    color: var(--text-light) !important;
    opacity: 1;
}