* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* YOUR SPECIFIED COLOR THEME */
    :root {
      --neon-green: #39ff14;
      --dark-bg: black;
      --panel-bg: #111;
      --text-gray: #b5b5b5;
      --text-light: #f5f5f5;
            --card-border: rgba(57, 255, 20, 0.25);
      --glow-shadow: 0 0 8px rgba(57, 255, 20, 0.3), 0 4px 20px rgba(0, 0, 0, 0.8);
    }

    body {
      background: radial-gradient(circle at 20% 30%, #0a0a0a, #000000);
      font-family: 'Space Grotesk', sans-serif;
      min-height: 100vh;
      /* padding: 4rem 1.5rem; */
      overflow-x: hidden;
    }

    /* main container */
    .section-container {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
    }

    /* header styling with neon glow */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header .badge {
      display: inline-block;
      background: rgba(57, 255, 20, 0.15);
      backdrop-filter: blur(4px);
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--neon-green);
      border: 1px solid rgba(57, 255, 20, 0.5);
      box-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
      margin-bottom: 1.5rem;
    }

    .section-header h2 {
      font-size: clamp(2.2rem, 6vw, 3.8rem);
      font-weight: 700;
     background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 80%);
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }

    .section-header .glow-line {
      width: 120px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--neon-green), #aaff88, transparent);
      margin: 1rem auto 0;
      border-radius: 2px;
    }

    /* cards grid */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      perspective: 1200px;
    }

    /* card wrapper for 3d tilt & hover animations */
    .card {
      background: rgba(17, 17, 17, 0.65);
      backdrop-filter: blur(12px);
      border-radius: 2rem;
      border: 1px solid rgba(57, 255, 20, 0.25);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      transform-style: preserve-3d;
      box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5);
      cursor: pointer;
      position: relative;
    }

    /* animated gradient border */
    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 2rem;
      padding: 2px;
      background: linear-gradient(125deg, rgba(57, 255, 20, 0.5), rgba(170, 255, 136, 0.3), rgba(57, 255, 20, 0.6));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .card:hover::before {
      opacity: 1;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.01);
      border-color: rgba(57, 255, 20, 0.6);
      box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(57, 255, 20, 0.3);
    }

    /* card inner content */
    /* .card-content {
      padding: 2rem 1.8rem 2.2rem;
      position: relative;
      z-index: 2;
    } */

    /* icon area */
    .icon-wrapper {
      font-size: 2.8rem;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
    }

    .icon-wrapper i {
      background: linear-gradient(145deg, #fff, var(--neon-green));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
      transition: all 0.3s;
    }

    .card:hover .icon-wrapper i {
      animation: iconPulse 0.8s ease infinite alternate;
    }

    @keyframes iconPulse {
      0% {
        text-shadow: 0 0 2px var(--neon-green), 0 0 5px var(--neon-green);
        transform: scale(1);
      }
      100% {
        text-shadow: 0 0 15px var(--neon-green), 0 0 25px var(--neon-green);
        transform: scale(1.05);
      }
    }

    /* tech rings around icon */
    .icon-wrapper::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 70px;
      height: 70px;
      background: radial-gradient(circle, rgba(57, 255, 20, 0.2), transparent 70%);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.6, 1.2);
      z-index: -1;
      opacity: 0;
    }

    .card:hover .icon-wrapper::after {
      transform: translate(-50%, -50%) scale(1.3);
      opacity: 1;
    }

    .card-title {
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      background: linear-gradient(120deg, #fff, #c0ffa0);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }

    .card-subtitle {
      font-size: 1rem;
      color: var(--neon-green);
      margin-bottom: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .card-description {
      color: #c0c0c0;
      line-height: 1.5;
      font-weight: 400;
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
      opacity: 0.85;
    }



    

    /* skill list styling */
    .skill-list {
      list-style: none;
      margin: 1rem 0 1.5rem;
    }

    .skill-list li {
      color: var(--text-gray);
      font-size: 0.85rem;
      padding: 0.4rem 0;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 0.5px solid rgba(57, 255, 20, 0.15);
    }

    .skill-list li:last-child {
      border-bottom: none;
    }

    .skill-list li i {
      color: var(--neon-green);
      font-size: 0.7rem;
      width: 18px;
    }

    .nested-list {
      list-style: none;
      margin-left: 1.5rem;
      margin-top: 0.3rem;
      margin-bottom: 0.5rem;
    }

    .nested-list li {
      border-bottom: none;
      padding: 0.2rem 0;
      font-size: 0.8rem;
    }

    .nested-list li i {
      font-size: 0.6rem;
    }

    /* tech link button */
    .tech-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--neon-green);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(57, 255, 20, 0.4);
      transition: all 0.3s;
      margin-top: 0.5rem;
      padding-bottom: 3px;
    }

    .tech-link i {
      font-size: 0.75rem;
      transition: transform 0.3s;
    }

    .tech-link:hover {
      color: #aaff88;
      border-bottom-color: #aaff88;
      gap: 12px;
    }

    .tech-link:hover i {
      transform: translateX(5px);
    }

    /* hover beam */
    .card .hover-beam {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--neon-green), #aaff88, transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .card:hover .hover-beam {
      transform: scaleX(1);
    }

    /* scanning animation */
    @keyframes scanline {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(300%); }
    }

    .card .scan {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--neon-green), #aaff88, transparent);
      filter: blur(2px);
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }

    .card:hover .scan {
      opacity: 0.5;
      animation: scanline 1.2s linear infinite;
    }

    /* glitch effect */
    .card:hover .card-content {
      animation: subtleGlitch 0.2s linear;
    }

    @keyframes subtleGlitch {
      0% { transform: translate(0); }
      25% { transform: translate(-1px, 0); }
      50% { transform: translate(1px, 0); }
      75% { transform: translate(-0.5px, 0.5px); }
      100% { transform: translate(0); }
    }

    /* floating particles */
    .particle-field {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .particle {
      position: absolute;
      background: rgba(57, 255, 20, 0.4);
      border-radius: 50%;
      filter: blur(1px);
      animation: floatParticle 12s infinite linear;
      opacity: 0.3;
    }

    @keyframes floatParticle {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
      }
      10% {
        opacity: 5;
      }
      90% {
        opacity: 3;
      }
      100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
      }
    }

    /* section divider */
    .section-divider {
      margin: 5rem 0 3rem;
      text-align: center;
    }

    /* responsiveness */
    @media (max-width: 768px) {
      .cards-grid {
        gap: 1.5rem;
      }
      .card-content {
        padding: 1.5rem;
      }
      .card-title {
        font-size: 1.4rem;
      }
    }

    ::-webkit-scrollbar {
      width: 5px;
      background: #050505;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--neon-green);
      border-radius: 8px;
    }

    body {
      transition: background 0.2s ease;
    }

    .cursor-spot {
      transition: opacity 0.15s ease-out;
      filter: blur(12px);
      mix-blend-mode: screen;
      pointer-events: none;
    }















    



 /* css */
        .cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Small inner dot */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #39ff14;
}

/* Outer circle */
.cursor-outline {
    width: 32px;
    height: 32px;
    border: 2px solid #39ff14;
    opacity: 0.6;
    transition: width .2s, height .2s, opacity .2s;
} 




  /* main container */
    .neon-section {
      max-width: 1440px;
      margin: 0 auto;
      padding: 5rem 2rem;
      background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 1) 0%, #030303 100%);
    }

    /* header area */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .badge {
      display: inline-block;
      background: rgba(57, 255, 20, 0.12);
      border: 1px solid rgba(57, 255, 20, 0.4);
      backdrop-filter: blur(2px);
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--neon-green);
      margin-bottom: 1.2rem;
      text-transform: uppercase;
      box-shadow: 0 0 4px rgba(57, 255, 20, 0.3);
    }

    .section-header h1 {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 80%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-header h1 span {
      color: var(--neon-green);
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
      text-shadow: 0 0 6px rgba(57, 255, 20, 0.5);
    }

    .subhead {
      font-size: 1.2rem;
      color: var(--text-gray);
      max-width: 680px;
      margin: 0 auto;
      border-top: 1px dashed rgba(57, 255, 20, 0.3);
      padding-top: 1rem;
    }

    /* grid cards layout - better than original with dynamic hover */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.8rem;
      margin: 3rem 0 4rem 0;
    }

    /* card style - modern glassmorphism + neon accents */
    .feature-card {
      background: rgba(17, 17, 17, 0.85);
      backdrop-filter: blur(3px);
      border: 1px solid var(--card-border);
      border-radius: 2rem;
      padding: 1.8rem 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--neon-green), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      border-color: var(--neon-green);
      box-shadow: 0 20px 30px -12px rgba(57, 255, 20, 0.25), var(--glow-shadow);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    /* icon area */
    .card-icon {
      font-size: 2.6rem;
      color: var(--neon-green);
      margin-bottom: 1.2rem;
      filter: drop-shadow(0 0 4px #39ff1450);
      transition: transform 0.2s ease;
    }

    .feature-card:hover .card-icon {
      transform: scale(1.05);
    }

    .feature-card h3 {
      font-size: 1.65rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      letter-spacing: -0.3px;
      background: linear-gradient(135deg, #fff, #cccccc);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .feature-card p {
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .stat-highlight {
      font-weight: 800;
      color: var(--neon-green);
      font-size: 1.3rem;
      display: inline-block;
      margin-right: 4px;
    }

    .card-tag {
      display: inline-block;
      margin-top: 0.6rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--neon-green);
      background: rgba(57, 255, 20, 0.1);
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    /* CTA section - better than original */
    .cta-block {
      background: var(--panel-bg);
      border-radius: 3rem;
      padding: 3rem 2rem;
      margin-top: 2rem;
      text-align: center;
      border: 1px solid rgba(57, 255, 20, 0.3);
      box-shadow: 0 20px 35px -12px black;
      background-image: radial-gradient(circle at 10% 30%, rgba(57, 255, 20, 0.05) 2%, transparent 2.5%);
      background-size: 28px 28px;
    }

    .cta-block h2 {
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      color: var(--neon-green);
    }

    .cta-block h2 i {
      color: var(--neon-green);
      margin-right: 0.5rem;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      border: 2px solid var(--neon-green);
      padding: 1rem 2.5rem;
      margin-top: 1.8rem;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--neon-green);
      transition: all 0.25s;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.5px;
      backdrop-filter: blur(8px);
    }

    .cta-button i {
      font-size: 1.3rem;
      transition: transform 0.2s;
    }

    .cta-button:hover {
      background: var(--neon-green);
      color: black;
      box-shadow: 0 0 18px var(--neon-green);
      border-color: var(--neon-green);
      transform: scale(1.02);
    }

    .cta-button:hover i {
      transform: translateX(4px);
      color: black;
    }

    .small-note {
      margin-top: 1.4rem;
      font-size: 0.8rem;
      color: var(--text-gray);
    }

    /* responsive tweaks */
    @media (max-width: 700px) {
      .neon-section {
        padding: 3rem 1.2rem;
      }
      .section-header h1 {
        font-size: 2.2rem;
      }
      .features-grid {
        gap: 1.2rem;
      }
      .feature-card h3 {
        font-size: 1.4rem;
      }
      .cta-block h2 {
        font-size: 1.6rem;
      }
      .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
      }
    }

    /* additional animation for stats */
    @keyframes subtlePulse {
      0% { text-shadow: 0 0 0px var(--neon-green);}
      100% { text-shadow: 0 0 5px var(--neon-green);}
    }
    .stat-highlight {
      animation: subtlePulse 1.8s infinite alternate;
    }

    footer {
      text-align: center;
      margin-top: 2rem;
      color: white;
      font-size: 0.7rem;
    }












           /* main wrapper */
        .rankup-benefits-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 5rem 2rem;
            background: radial-gradient(circle at 30% 10%, #050505 0%, #000000 100%);
        }

        /* shared headings */
        .section-badge {
            display: inline-block;
            background: rgba(57, 255, 20, 0.12);
            border: 1px solid rgba(57, 255, 20, 0.4);
            backdrop-filter: blur(2px);
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: white;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 800;
              background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
            margin-bottom: 1rem;
           
        }

        .section-sub {
            color: var(--text-gray);
            max-width: 680px;
            margin-bottom: 2.8rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* ========= BENEFITS GRID (better than original) ========= */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 1.6rem;
            margin-bottom: 5rem;
        }

        .benefit-card {
            background: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(3px);
            border: 1px solid var(--card-border);
            border-radius: 1.8rem;
            padding: 1.6rem 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            border-color: var(--neon-green);
            box-shadow: var(--glow-shadow);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--neon-green);
            min-width: 48px;
            text-align: center;
            filter: drop-shadow(0 0 3px #39ff1450);
        }

        .benefit-text h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            letter-spacing: -0.2px;
            color: #ffffff;
        }

        .benefit-text p {
            color: var(--text-gray);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* ========= 4-STEP HIRING PROCESS (elevated design) ========= */
        .steps-container {
            background: var(--panel-bg);
            border-radius: 3rem;
            padding: 2.8rem 2rem;
            border: 1px solid rgba(57, 255, 20, 0.35);
            box-shadow: 0 20px 35px -12px black;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-green), #1f8a00, transparent);
        }

        .steps-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .steps-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, var(--neon-green));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .steps-header p {
            color: var(--text-gray);
        }

        .steps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.8rem;
        }

        .step-item {
            flex: 1;
            min-width: 210px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            border-radius: 2rem;
            padding: 2rem 1.2rem;
            text-align: center;
            border: 1px solid rgba(57, 255, 20, 0.2);
            transition: all 0.25s;
        }

        .step-item:hover {
            border-color: var(--neon-green);
            transform: scale(1.02);
            background: rgba(20, 20, 20, 0.9);
            box-shadow: 0 0 14px rgba(57, 255, 20, 0.2);
        }

        .step-number {
            width: 54px;
            height: 54px;
            background: rgba(57, 255, 20, 0.15);
            border: 2px solid var(--neon-green);
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem auto;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--neon-green);
            box-shadow: 0 0 6px #39ff1450;
        }

        .step-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: white;
        }

        .step-item p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* company footer reference */
        .rankup-footer {
            text-align: center;
            margin-top: 2.8rem;
            font-size: 0.75rem;
            color: white;
            border-top: 1px solid rgba(57, 255, 20, 0.2);
            padding-top: 2rem;
        }

        .rankup-footer strong {
            color: var(--neon-green);
            font-weight: 600;
        }

        @media (max-width: 750px) {
            .rankup-benefits-section {
                padding: 3rem 1.2rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .benefit-card {
                padding: 1.2rem;
            }
            .steps-grid {
                flex-direction: column;
                align-items: stretch;
            }
            .step-item {
                width: 100%;
            }
        }

        /* micro animation */
        @keyframes glowPulse {
            0% { text-shadow: 0 0 0px var(--neon-green);}
            100% { text-shadow: 0 0 4px var(--neon-green);}
        }
        .step-number {
            animation: glowPulse 2s infinite alternate;
        }





















          .gsap-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 5rem 2rem;
            background: radial-gradient(circle at 20% 0%, #0a0a0a 0%, #000000 100%);
            position: relative;
        }

        /* shared badges & headings */
        .neon-badge {
            display: inline-block;
            background: rgba(57, 255, 20, 0.12);
            border: 1px solid rgba(57, 255, 20, 0.45);
            backdrop-filter: blur(3px);
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--neon-green);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 25%, var(--neon-green) 85%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        /* DISCOUNT CARD - Hero style */
        .discount-hero {
            background: rgba(17, 17, 17, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 2.5rem;
            padding: 2.5rem 2rem;
            margin-bottom: 4rem;
            border: 1px solid rgba(57, 255, 20, 0.4);
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.8);
            text-align: center;
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }

        .discount-hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 140%;
            height: 200%;
            background: radial-gradient(circle, rgba(57,255,20,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .discount-icon {
            font-size: 3.2rem;
            color: var(--neon-green);
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 6px #39ff14);
        }

        .discount-hero h2 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.3px;
            background: linear-gradient(135deg, #fff, #e0e0e0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .discount-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 1rem auto;
        }

        .discount-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            border: 2px solid var(--neon-green);
            padding: 0.9rem 2.2rem;
            margin-top: 1rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--neon-green);
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
            backdrop-filter: blur(4px);
        }

        .discount-btn i {
            transition: transform 0.2s;
        }

        .discount-btn:hover {
            background: var(--neon-green);
            color: black;
            box-shadow: 0 0 18px var(--neon-green);
            transform: scale(1.02);
        }

        /* Skills grid - beautifully animated */
        .skills-wrapper {
            margin: 3rem 0 2rem;
        }

        .skills-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            gap: 1rem;
        }

        .skills-header h3 {
            font-size: 1.9rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #ccc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.4rem;
        }

        .skill-item {
            background: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(2px);
            border: 1px solid rgba(57, 255, 20, 0.25);
            border-radius: 1.5rem;
            padding: 1.2rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s;
            opacity: 0; /* hidden until GSAP reveals */
            transform: translateY(30px);
        }

        .skill-icon {
            font-size: 1.8rem;
            color: var(--neon-green);
            min-width: 48px;
            text-align: center;
        }

        .skill-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-light);
            letter-spacing: -0.2px;
        }

        .skill-name span {
            font-size: 0.8rem;
            color: var(--text-gray);
            display: block;
            font-weight: normal;
        }

        /* request batch CTA */
        .request-batch {
            margin-top: 3.5rem;
            text-align: center;
            background: rgb(50, 49, 49);
            border-radius: 2rem;
            padding: 2rem;
            /* border: 1px dashed rgba(57, 255, 20, 0.5); */
        }

        .request-batch a {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--neon-green);
            color: black;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-weight: 800;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.2s;
            box-shadow: 0 0 12px rgba(57,255,20,0.4);
        }

        .request-batch a:hover {
            transform: scale(1.03);
            background: #2de80e;
            box-shadow: 0 0 24px var(--neon-green);
        }

        .footer-credit {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.7rem;
            color: white;
        }

      














        
        /* Main Container */
        .rankup-master-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 5rem 2rem;
            background: radial-gradient(circle at 20% 0%, #0a0a0a 0%, #000000 100%);
        }

        /* Neon Badge */
        .neon-badge {
            display: inline-block;
            background: rgba(57, 255, 20, 0.12);
            border: 1px solid rgba(57, 255, 20, 0.45);
            backdrop-filter: blur(3px);
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--neon-green);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 25%, var(--neon-green) 85%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        /* ========= ACHIEVEMENT SECTION ========= */
        .achievement-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .achievement-card {
            background: rgba(17, 17, 17, 0.8);
            backdrop-filter: blur(5px);
            border: 1px solid var(--card-border);
            border-radius: 2rem;
            padding: 2rem;
            transition: all 0.3s;
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--neon-green);
            font-family: 'Orbitron', monospace;
            text-shadow: 0 0 5px #39ff14;
        }

        .share-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-share {
            background: rgba(57,255,20,0.1);
            border: 1px solid var(--neon-green);
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            color: var(--neon-green);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .advisor-btn {
            background: transparent;
            border: 2px solid var(--neon-green);
            padding: 0.8rem 2rem;
            border-radius: 60px;
            color: var(--neon-green);
            font-weight: bold;
            cursor: pointer;
            margin-top: 1rem;
            transition: all 0.2s;
        }

        /* Certificate section */
        .certificate-showcase {
            background: var(--panel-bg);
            border-radius: 2rem;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--card-border);
            text-align: center;
        }

        .cert-badge {
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .student-names {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            color: white;
        }

        .student-name {
            background: rgba(57,255,20,0.1);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            border-left: 2px solid var(--neon-green);
        }

        /* ========= HIGH TECH GALLERY ========= */
        .gallery-section {
            margin: 5rem 0 2rem;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1 / 1;
            background: #0a0a0a;
            border: 1px solid rgba(57, 255, 20, 0.3);
            transition: all 0.2s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        /* Tech Overlay */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(57,255,20,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            backdrop-filter: blur(3px);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .overlay-icon {
            font-size: 2.5rem;
            color: var(--neon-green);
            text-shadow: 0 0 8px #39ff14;
        }

        /* Gallery Button - Centerpiece Navigational */
        .gallery-button-container {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            margin-bottom: 1rem;
        }

        .neon-gallery-btn {
            background: transparent;
            border: 2px solid var(--neon-green);
            padding: 1rem 2.8rem;
            border-radius: 60px;
            color: var(--neon-green);
            font-weight: 800;
            font-size: 1.2rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(4px);
            transition: all 0.25s ease;
            font-family: 'Orbitron', monospace;
            letter-spacing: 1px;
            box-shadow: 0 0 6px rgba(57,255,20,0.3);
        }

        .neon-gallery-btn i {
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .neon-gallery-btn:hover {
            background: var(--neon-green);
            color: black;
            box-shadow: 0 0 22px var(--neon-green);
            transform: scale(1.03);
            gap: 16px;
        }

        .neon-gallery-btn:hover i {
            transform: translateX(5px);
            color: black;
        }

        /* Lightbox (high-tech) */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
            cursor: pointer;
        }

        .lightbox.active {
            visibility: visible;
            opacity: 1;
        }

        .lightbox-img {
            max-width: 85%;
            max-height: 85%;
            border: 2px solid var(--neon-green);
            border-radius: 1.5rem;
            box-shadow: 0 0 40px rgba(57,255,20,0.4);
        }

        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 2.5rem;
            color: var(--neon-green);
            cursor: pointer;
        }

        @media (max-width: 800px) {
            .achievement-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 1.9rem; }
            .rankup-master-section { padding: 3rem 1.2rem; }
            .neon-gallery-btn { padding: 0.7rem 1.8rem; font-size: 1rem; }
        }














              .faq-master-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 5rem 2rem;
            background: radial-gradient(circle at 20% 0%, #0a0a0a 0%, #000000 100%);
        }

        .neon-badge {
            display: inline-block;
            background: rgba(57, 255, 20, 0.12);
            border: 1px solid rgba(57, 255, 20, 0.45);
            backdrop-filter: blur(3px);
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--neon-green);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 85%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            margin-bottom: 2rem;
        }

        /* FAQ Accordion Styles */
        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .faq-item {
            background: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(4px);
            border: 1px solid var(--card-border);
            border-radius: 1.5rem;
            overflow: hidden;
            transition: all 0.2s;
        }

        .faq-question {
            padding: 1.5rem 1.8rem;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            background: rgba(0,0,0,0.4);
            transition: all 0.2s;
        }

        .faq-question i {
            color: var(--neon-green);
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.8rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
            color: var(--text-gray);
            line-height: 1.5;
            border-top: 0px solid transparent;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.8rem 1.5rem 1.8rem;
            max-height: 280px;
            border-top: 1px solid rgba(57,255,20,0.2);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Related Courses + Regions + Tutorials */
        .info-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .info-card {
            background: rgba(17, 17, 17, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 1.8rem;
            padding: 1.8rem;
            transition: all 0.2s;
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--neon-green);
            font-family: 'Orbitron', monospace;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
        }

        .tag {
            background: rgba(57,255,20,0.1);
            border: 1px solid rgba(57,255,20,0.3);
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            transition: all 0.2s;
            color: white;
        }

        .tutorial-links {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .tutorial-link {
            color: var(--text-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
        }

        .tutorial-link i {
            color: var(--neon-green);
            width: 24px;
        }

        @media (max-width: 750px) {
            .faq-master-section { padding: 3rem 1.2rem; }
            .section-title { font-size: 1.9rem; }
            .faq-question { padding: 1.2rem; font-size: 0.95rem; }
        }





















           :root {
            --nxgt-neon-green: #39ff14;
            --nxgt-dark-bg: black;
            --nxgt-panel-bg: #111;
            --nxgt-text-gray: #b5b5b5;
            --nxgt-text-light: #f5f5f5;
            --nxgt-neon-glow: rgba(57, 255, 20, 0.4);
            --nxgt-neon-glow-strong: rgba(57, 255, 20, 0.7);
        }

        /* Hero Section Container */
        .nxgt-hero {
            position: relative;
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 20% 30%, #0a0a0a, #000000);
            overflow: hidden;
            isolation: isolate;
            font-family: 'Inter', sans-serif;
            background-color: var(--nxgt-dark-bg);
        }

        /* 3D Canvas Background */
        .nxgt-canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        /* Neon grid overlay */
        .nxgt-hero::before {
            content: "";
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            background: radial-gradient(ellipse at 40% 50%, rgba(57, 255, 20, 0.06), transparent 70%);
            pointer-events: none;
            z-index: 2;
        }

        .nxgt-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg, rgba(57, 255, 20, 0.02) 0px, rgba(57, 255, 20, 0.02) 2px, transparent 2px, transparent 10px);
            pointer-events: none;
            z-index: 2;
        }

        /* Floating Tech Icons Background */
        .nxgt-floating-icons-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .nxgt-floating-icon {
            position: absolute;
            font-size: 1.8rem;
            color: rgb(50, 255, 14);
            animation: nxgtFloatIcon 20s infinite linear;
            pointer-events: none;
        }

        /* Individual icon positions */
        .nxgt-floating-icon:nth-child(1)  { left: 15%; top: 20%;  font-size: 2rem;   color: rgb(30, 247, 243); }
        .nxgt-floating-icon:nth-child(2)  { left: 2%;  top: 55%;  font-size: 2.5rem; opacity: 0.4; }
        .nxgt-floating-icon:nth-child(3)  { left: 12%; top: 85%;  font-size: 2.2rem; opacity: 0.4; color: red; }
        .nxgt-floating-icon:nth-child(4)  { left: -35%;           font-size: 1.8rem; }
        .nxgt-floating-icon:nth-child(5)  { left: -45%;           font-size: 2.5rem; }
        .nxgt-floating-icon:nth-child(6)  { left: 55%; top: 92%;  font-size: 2.6rem; opacity: 0.4; }
        .nxgt-floating-icon:nth-child(7)  { left: -65%;           font-size: 2rem; }
        .nxgt-floating-icon:nth-child(8)  { left: 75%; top: 60%;  font-size: 2.4rem; color: red; }
        .nxgt-floating-icon:nth-child(9)  { left: 95%; top: 50%;  font-size: 2.2rem; opacity: 0.4; }
        .nxgt-floating-icon:nth-child(10) { right: 1%;            font-size: 2.2rem; opacity: 0.4; color: red; }
        .nxgt-floating-icon:nth-child(11) { left: 1%;             font-size: 1.9rem; opacity: 0.4; color: rgb(30, 247, 243); }
        .nxgt-floating-icon:nth-child(12) { left: 45%; top: 65%;  font-size: 2.1rem; color: yellow; }
        .nxgt-floating-icon:nth-child(13) { left: 80%; top: 25%;  font-size: 2.5rem; }
        .nxgt-floating-icon:nth-child(14) { left: -30%;           font-size: 2.3rem; opacity: 0.4; }
        .nxgt-floating-icon:nth-child(15) { left: 70%;            font-size: 2rem;   opacity: 0.7; color: blue; }

        /* Main Content */
        .nxgt-hero-content {
            position: relative;
            z-index: 10;
            max-width: 1300px;
            margin: 0 auto;
            padding: 2rem 2rem 4rem;
            text-align: center;
            color: var(--nxgt-text-light);
            backdrop-filter: blur(2px);
        }

        /* Tech Badge */
        .nxgt-tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1.3rem;
            border-radius: 100px;
            border: 1px solid var(--nxgt-neon-green);
            margin-bottom: 1.8rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: var(--nxgt-neon-green);
            box-shadow: 0 0 12px var(--nxgt-neon-glow);
            transition: all 0.3s ease;
        }

        .nxgt-tech-badge i {
            font-size: 1rem;
            color: var(--nxgt-neon-green);
        }

        .nxgt-tech-badge:hover {
            border-color: var(--nxgt-neon-green);
            box-shadow: 0 0 22px var(--nxgt-neon-glow-strong);
            transform: scale(1.02);
        }

        /* Main Heading */
        .nxgt-glow-text {
            font-size: clamp(2.8rem, 8vw, 5.2rem);
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #FFFFFF, #c0ffa0, var(--nxgt-neon-green));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
        }

        .nxgt-highlight-ai {
            position: relative;
            display: inline-block;
            background: linear-gradient(120deg, var(--nxgt-neon-green), #7fff3e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
        }

        .nxgt-subhead {
            font-size: clamp(1rem, 4vw, 1.3rem);
            color: var(--nxgt-text-gray);
            max-width: 720px;
            margin: 1.5rem auto;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: -0.2px;
        }

        /* Button Group */
        .nxgt-btn-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
            margin: 2.5rem 0 3rem;
        }

        .nxgt-btn {
            padding: 0.9rem 2.2rem;
            font-weight: 600;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.3px;
            backdrop-filter: blur(4px);
        }

        .nxgt-btn-primary {
            background: linear-gradient(95deg, #1f8a00, var(--nxgt-neon-green));
            color: black;
            box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
            border: 1px solid rgba(57, 255, 20, 0.5);
            font-weight: 700;
        }

        .nxgt-btn-primary:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 20px 30px -8px rgba(57, 255, 20, 0.6);
            background: linear-gradient(95deg, #2ea500, #4eff2a);
            color: #000;
        }

        .nxgt-btn-outline {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--nxgt-neon-green);
            color: var(--nxgt-neon-green);
            backdrop-filter: blur(8px);
        }

        .nxgt-btn-outline:hover {
            background: rgba(57, 255, 20, 0.15);
            border-color: var(--nxgt-neon-green);
            transform: translateY(-3px);
            color: var(--nxgt-neon-green);
            box-shadow: 0 8px 20px var(--nxgt-neon-glow);
        }

        /* Feature Cards */
        .nxgt-feature-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.8rem;
            margin-top: 2.8rem;
        }

        .nxgt-feature-card {
            background: var(--nxgt-panel-bg);
            backdrop-filter: blur(12px);
            border-radius: 28px;
            padding: 1.2rem 2rem;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 14px;
            border: 1px solid rgba(57, 255, 20, 0.4);
            transition: all 0.4s ease;
            cursor: default;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }

        .nxgt-feature-card i {
            font-size: 2rem;
            color: var(--nxgt-neon-green);
            filter: drop-shadow(0 0 6px var(--nxgt-neon-green));
            transition: transform 0.3s;
        }

        .nxgt-feature-card span {
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.3px;
            color: var(--nxgt-text-light);
        }

        .nxgt-feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--nxgt-neon-green);
            background: #1a1a1a;
            box-shadow: 0 20px 30px -10px var(--nxgt-neon-glow);
        }

        .nxgt-feature-card:hover i {
            transform: scale(1.1);
            filter: drop-shadow(0 0 12px var(--nxgt-neon-green));
        }

        /* Floating AI Orb */
        .nxgt-floating-ai-orb {
            position: absolute;
            bottom: 8%;
            right: 3%;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(57, 255, 20, 0.2), rgba(0,0,0,0));
            border-radius: 50%;
            filter: blur(45px);
            pointer-events: none;
            z-index: 3;
            animation: nxgtFloatGlow 6s infinite alternate;
        }

        @keyframes nxgtFloatGlow {
            0%   { transform: translateY(0px) scale(1);   opacity: 0.4; background: radial-gradient(circle, rgba(57, 255, 20, 0.2), transparent); }
            100% { transform: translateY(-30px) scale(1.3); opacity: 0.8; background: radial-gradient(circle, rgba(57, 255, 20, 0.4), transparent); }
        }

        /* Custom Cursor Glow */
        .nxgt-cursor-glow {
            width: 20px;
            height: 20px;
            background: var(--nxgt-neon-green);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            filter: blur(6px);
            opacity: 0.6;
            transition: transform 0.05s;
        }

        /* Ripple */
        .nxgt-ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(57, 255, 20, 0.65);
            transform: scale(0);
            pointer-events: none;
            z-index: 20;
        }

        @media (max-width: 680px) {
            .nxgt-hero-content {
                padding: 1.5rem;
            }
            .nxgt-feature-card {
                padding: 0.8rem 1.4rem;
                min-width: 160px;
            }
            .nxgt-btn {
                padding: 0.7rem 1.6rem;
            }
            .nxgt-floating-icon {
                font-size: 1rem !important;
                opacity: 0.06;
            }
        }

        .nxgt-btn {background-color: red;}
















           /* Demo spacer to see footer properly */
        .demo-spacer {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #0a0a0a, #000);
            border-bottom: 1px solid rgba(57,255,20,0.2);
        }
        .demo-spacer h2 {
            color: var(--neon-green);
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
        }

        /* ========= ENHANCED CYBER FOOTER ========= */
        .cyber-footer {
            background: radial-gradient(circle at 20% 0%, #050505 0%, #000000 100%);
            border-top: 2px solid rgba(57, 255, 20, 0.4);
            position: relative;
            padding: 3rem 2rem 1.5rem;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
        }

        /* Floating Icons Background */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 1;
        }

        .floating-icons i {
            position: absolute;
            font-size: 1.8rem;
            color: var(--neon-green);
            opacity: 0.2;
            animation: floatIcon 18s infinite linear;
        }

        @keyframes floatIcon {
            0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 0.3; }
            100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        /* Brand Column */
        .footer-col.brand .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, var(--neon-green));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            font-family: 'Orbitron', monospace;
        }

        .footer-col p {
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            color: var(--text-gray);
            background: rgba(57,255,20,0.1);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            border: 1px solid rgba(57,255,20,0.3);
        }

        .social-icons a:hover {
            color: black;
            background: var(--neon-green);
            border-color: var(--neon-green);
            transform: translateY(-3px);
            box-shadow: 0 0 12px var(--neon-green);
        }

        /* Footer Headings */
        .footer-col h4 {
            color: var(--neon-green);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: 'Orbitron', monospace;
            border-left: 3px solid var(--neon-green);
            padding-left: 10px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.7rem;
        }

        .footer-col ul li a,
        .footer-col ul li {
            color: var(--text-gray);
            text-decoration: none;
            transition: 0.2s;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: var(--neon-green);
            transform: translateX(5px);
            display: inline-flex;
        }

        /* NEW: Courses Mega Row (from image 2) */
        .courses-mega-row {
            max-width: 1400px;
            margin: 2rem auto 1.5rem;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(57,255,20,0.2);
            padding-top: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
        }

        .course-category h4 {
            color: var(--neon-green);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            font-family: 'Orbitron', monospace;
        }

        .course-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .course-tag {
            background: rgba(57,255,20,0.08);
            border: 1px solid rgba(57,255,20,0.3);
            padding: 0.3rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: var(--text-gray);
            transition: all 0.2s;
            cursor: default;
        }

        .course-tag:hover {
            background: rgba(57,255,20,0.2);
            color: var(--neon-green);
            border-color: var(--neon-green);
            transform: scale(1.02);
        }

        /* Quick Links Row (extra) */
        .quicklinks-row {
            max-width: 1400px;
            margin: 1rem auto 0.5rem;
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            border-top: 1px dashed rgba(57,255,20,0.2);
            padding-top: 1.5rem;
        }

        .privacy-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.8rem;
            transition: 0.2s;
        }

        .privacy-link:hover {
            color: var(--neon-green);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 1rem;
            font-size: 0.75rem;
            color: #4a4a4a;
            border-top: 1px solid rgba(57,255,20,0.15);
            position: relative;
            z-index: 2;
        }

        @media (max-width: 850px) {
            .cyber-footer { padding: 2rem 1rem; }
            .footer-wrapper { gap: 1.5rem; }
            .courses-mega-row { gap: 1.5rem; }
        }


























        


.ts-testimonial-wall{
padding:140px 0;
background:var(--dark-bg);
overflow:hidden;
position:relative;
}

/* header */

.ts-test-header{
text-align:center;
margin-bottom:80px;
}

.ts-test-header h2{
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
  
  background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.ts-test-header span{
color:var(--neon-green);
font-size:14px;
letter-spacing:2px;
}

/* marquee */

.ts-marquee{
overflow:hidden;
width:100%;
}

.ts-marquee-track{
display:flex;
gap:60px;
width:max-content;
animation:scrollX 35s linear infinite;
}

/* card */

.ts-card{
width:420px;
background:var(--panel-bg);
color:var(--text-gray);
padding:36px;
border-radius:20px;
line-height:1.7;
flex-shrink:0;
position:relative;

border:1px solid rgba(57,255,20,.25);

backdrop-filter:blur(8px);

box-shadow:
0 0 10px rgba(57,255,20,.15),
inset 0 0 8px rgba(57,255,20,.08);

transition:.35s;
}

/* hover glow */

.ts-card:hover{
border-color:var(--neon-green);

box-shadow:
0 0 20px rgba(57,255,20,.35),
0 0 60px rgba(57,255,20,.15);
}

/* random vertical positions */

.ts-pos1{margin-top:0}
.ts-pos2{margin-top:120px}
.ts-pos3{margin-top:60px}
.ts-pos4{margin-top:180px}

/* user */

.ts-user{
margin-top:26px;
display:flex;
align-items:center;
gap:12px;
}

.ts-user img{
width:46px;
height:46px;
border-radius:50%;
border:2px solid var(--neon-green);
}

.ts-user h4{
color:var(--text-light);
font-size:15px;
}

.ts-user span{
font-size:12px;
color:var(--text-gray);
}

/* animation */

@keyframes scrollX{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* pause */

.ts-marquee:hover .ts-marquee-track{
animation-play-state:paused;
}

/* responsive */

@media(max-width:900px){

.ts-card{
width:300px;
}

}




















/* 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;
}





  @media (max-width: 680px) {
            .gsap-section {
                padding: 3rem 1.2rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .discount-hero h2 {
                font-size: 1.5rem;
            }
            .skills-header h3 {
                font-size: 1.5rem;
            }

            #advertisers{
  background: var(--dark-bg);
  padding: 0px 0px;
}
        }