* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #222;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

/* ================= HEADER ================= */

.elite-header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  height: fit-content;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:9999;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
}

.logo img{
  height:60px;
}

/* Nav Links Desktop */
.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  font-weight:600;
  color:#222;
  transition:0.3s;
}

.nav-links li a:hover{
  color:#ff6b00;
}

/* ================= HAMBURGER ================= */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:25px;
  height:3px;
  background:#222;
  border-radius:3px;
  transition:0.4s;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:260px;
    background:#ffffff;
    flex-direction:column;
    padding-top:100px;
    align-items:center;
    gap:25px;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
    transition:0.4s ease;
  }

  .nav-links.active{
    right:0;
  }

}



.header {
    background: #f2f3f7;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #000000d3;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.btn-nav {
    background: #38bdf8;
    padding: 8px 16px;
    border-radius: 4px;
}



/* ELITE NAVBAR */

.elite-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  backdrop-filter: blur(15px);
  background: rgb(255, 255, 255);
  border-radius: 50px;
  padding: 10px 30px;
  z-index: 1000;
  transition: 0.3s;
}

.elite-header.scrolled {
  background: rgb(255, 255, 255);
}

#themeToggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
}

.light-mode {
  background: #ffffff;
  color: #111;
}

.light-mode .software-section {
  background: #f5f7fa;
  color: #111;
}

.light-mode .filter-item {
  background: white;
  color: #111;
}
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #38bdf8;
  width: 0%;
  z-index: 2000;
}

/* ================= HERO MULTI SLIDER ================= */

.hero-slider{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Each Slide */
.hero-slide{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Active Slide */
.hero-slide.active{
    opacity: 1;
}

/* Dark Overlay */
.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.5));
    top: 0;
    left: 0;
    z-index: 1;
}

/* Content */
.hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: fadeUp 1.2s ease forwards;
}

.hero-content h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary{
    background: #ff6b00;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-primary:hover{
    transform: translateY(-4px);
}

.btn-secondary{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-secondary:hover{
    background: #fff;
    color: #000;
}

/* Animation */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

/* Mobile */
@media(max-width:768px){

    .hero-content h1{
        font-size: 30px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
    }

}


/* ULTIMATE HERO */

.ultimate-hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0ea5e9, #9333ea);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.glow-btn {
    background: #38bdf8;
    box-shadow: 0 0 20px #38bdf8;
}

.glow-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

#particles {
    position: absolute;
    inset: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
}
/* COUNTERS */

.placement-preview {
    padding: 70px 0;
    text-align: center;
}

.counter-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.counter {
    font-size: 2.5rem;
    color: #0f172a;
}


/* ================= ULTRA software SLIDER ================= */

.software-section {
  padding: 10px 0;
  background: linear-gradient(135deg, #fcfcfd, hsl(0, 0%, 100%));
  text-align: center;
  color: rgb(0, 0, 0);
  overflow: hidden;
}

.software-section .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

.software-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.software-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 25s linear infinite reverse;
}


.software-logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.software-logo img {
  max-width: 160px;
  max-height: 80px;
  transition: 0.4s ease;
}

.software-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}


/* ================= ULTRA COMPANY SLIDER ================= */

.company-section {
  padding: 10px 0;
  background: linear-gradient(135deg, #fcfcfd, hsl(0, 0%, 100%));
  text-align: center;
  color: rgb(0, 0, 0);
  overflow: hidden;
}

.company-section .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

.company-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.company-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 25s linear infinite;
}


.company-logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.company-logo img {
  max-width: 160px;
  max-height: 80px;
  transition: 0.4s ease;
}

.company-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Smooth Infinite Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gradient Fade Effect */
.company-slider::before,
.company-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.company-slider::before {
  left: 0;
  background: linear-gradient(to right, hsl(0, 0%, 100%) 0%, transparent 100%);
}

.company-slider::after {
  right: 0;
  background: linear-gradient(to left, hsl(0, 0%, 100%) 0%, transparent 100%);
}


/* Glow Border Animation */
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #38bdf8, #9333ea, #38bdf8);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.review-card:hover::before {
  opacity: 1;
}


/* Course Section*/
.courses-section{
padding:80px 0;
}

.course-category{
font-size:28px;
margin:60px 0 25px;
font-weight:700;
color:#0f172a;
}

.course-slider{
overflow-x:auto;
scroll-behavior:smooth;
}

.course-slider::-webkit-scrollbar{
display:none;
}

.course-track{
display:flex;
gap:25px;
}

/* STOP SLIDE WHEN MOUSE HOVER */
.course-slider:hover .course-track{
animation-play-state: paused;
}

.course-card{
min-width:250px;
display: block;
background:#fff;
border-radius:15px;
padding:15px;
text-align:start;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
}

.course-card img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}

.course-card:hover{
transform:translateY(-8px);
}

.view-course{
margin-top:10px;
background:#ff6b00;
border:none;
padding:10px 18px;
color:white;
border-radius:20px;
cursor:pointer;
}




/* FOOTER */

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 30px 0;
}
/* FLOATING CONTACT BUTTONS */
.floating-contact{
position:fixed;
right:25px;
bottom:25px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}

.floating-contact a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:22px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
transition:0.3s;
animation:pulseGlow 2s infinite;
}

.whatsapp-btn{
background:#25D366;
}

.call-btn{
background:#0077ff;
}

.floating-contact a:hover{
transform:scale(1.15);
}

@keyframes pulseGlow{
0%{box-shadow:0 0 0 0 rgba(0,0,0,0.4);}
70%{box-shadow:0 0 0 15px rgba(0,0,0,0);}
100%{box-shadow:0 0 0 0 rgba(0,0,0,0);}
}

/* Mobile */
@media(max-width:768px){
.floating-contact{
right:15px;
bottom:15px;
}
}

/* PULSE ANIMATION */
@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(0,0,0,0.4);
}
70%{
box-shadow:0 0 0 15px rgba(0,0,0,0);
}
100%{
box-shadow:0 0 0 0 rgba(0,0,0,0);
}
}

/* MOBILE ADJUST */
@media(max-width:768px){
.floating-contact{
right:15px;
bottom:15px;
}
}
/* DEMO POPUP */
.demo-popup{
position:fixed;
inset:0;
display:none;
justify-content:center;
align-items:center;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
z-index:9999;
animation:fadeIn 0.4s ease;
}

.demo-content{
background:rgba(255,255,255,0.95);
padding:35px;
width:380px;
border-radius:20px;
text-align:center;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
animation:scaleUp 0.4s ease;
}

.demo-content h2{
margin-bottom:20px;
font-size:22px;
}

.demo-content input,
.demo-content select{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ccc;
outline:none;
transition:0.3s;
}

.demo-content input:focus,
.demo-content select:focus{
border-color:#38bdf8;
box-shadow:0 0 10px rgba(56,189,248,0.4);
}

.demo-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;            /* Button size */
  height: 40px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-close:hover {
  background: #ff4d4d;
  transform: rotate(90deg) scale(1.1);
}


@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

@keyframes scaleUp{
from{transform:scale(0.8);}
to{transform:scale(1);}
}

/* FLOATING CONTACT */
.floating-contact{
position:fixed;
right:25px;
bottom:25px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}

.floating-contact a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:22px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
transition:0.3s;
animation:pulse 2s infinite;
}

.whatsapp-btn{ background:#25D366; }
.call-btn{ background:#0077ff; }

.floating-contact a:hover{
transform:scale(1.15);
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(0,0,0,0.4);}
70%{box-shadow:0 0 0 15px rgba(0,0,0,0);}
100%{box-shadow:0 0 0 0 rgba(0,0,0,0);}
}

/* LOADER */

.loader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.filter-item {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.filter-item:hover {
    transform: rotateY(8deg) rotateX(5deg) scale(1.05);
}

.filter-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #38bdf8, #f97316, #38bdf8);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.filter-item:hover::before {
    opacity: 1;
}
.fade-section {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

body {
  cursor: none;
}

.cursor-glow {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #38bdf8;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: 0.1s;
}

 
/* ================= MOBILE MENU FIX ================= */

@media(max-width:768px){

  .menu-toggle{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }

  .nav-links{
    position:absolute;       /* changed from fixed */
    top:80px;                /* below header */
    right:0;
    height: fit-content;
    width:150px;
    border-radius: 10%;
    background:#ffffff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    gap:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:0.3s ease;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

}