﻿/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #050816;
  color: #fff;
  transition: 0.4s;
}

body.light {
  background: #f4f6ff;
  color: #000;
}

/* HEADER */
/* ===== HEADER BASE ===== */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 8%;
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(6,10,30,.75);
  backdrop-filter:blur(12px);
}

/* ===== LOGO ===== */
.logo img{
  height:48px;
  width:auto;
  border-radius:10px
}

/* ===== NAV LINKS (DESKTOP) ===== */
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  bottom:-6px;
  left:0;
  background:#4cc9f0;
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* CTA Button */
.nav-links .btn{
  padding:10px 22px;
  border-radius:30px;
  background:linear-gradient(135deg,#4cc9f0,#b5179e);
  color:#fff;
}

/* ===== MENU ICON ===== */
.menu-toggle{
  display:none;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

/* ===== TABLET & MOBILE ===== */
@media(max-width:1024px){
  .nav{
    padding:16px 6%;
  }
}

@media(max-width:768px){
  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:fixed;
    top:70px;
    left:-100%;
    width:100%;
    height:calc(100vh - 70px);
    background:#060a1e;
    flex-direction:column;
    gap:30px;
    padding-top:50px;
    transition:.4s ease;
  }

  .nav-links a{
    font-size:20px;
  }

  .nav-links.active{
    left:0;
  }
}

/* ===== SMALL MOBILE ===== */
@media(max-width:480px){
  .logo img{
    height:40px;
  }
}


/* HERO */
.hero {
  height: 105vh;
  padding: 140px 8%;
  position: relative;
  background: linear-gradient(120deg, #050816, #0b1c3a, #1b2b55);
  overflow: hidden;
}

.hero-text {
  font-size: 56px;
}

.hero-text span {
  background: linear-gradient(45deg, #4cc9f0, #f72585);
  -webkit-background-clip: text;
  color: transparent;
}

.highlight {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { letter-spacing: 5px; }
}





.hero-badges{
  display:flex;
  gap:20px;              /* horizontal gap */
  row-gap:200px;          /* 👈 vertical gap (height-wise) */
  margin-bottom:120px;   /* space below badges */
  flex-wrap:wrap;
}

.hero-badges span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.08);
  padding:8px 14px;      /* slightly taller badges */
  border-radius:25px;
  font-size:14px;
  color:#fff;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  animation:floatBadge 3s ease-in-out infinite;
  box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

/* stagger animation */
.hero-badges span:nth-child(2){animation-delay:.3s}
.hero-badges span:nth-child(3){animation-delay:.6s}

/* floating animation */
@keyframes floatBadge{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
}








/* ORBS */
.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s infinite;
}

.o1 { width:120px;height:120px;background:#4cc9f0;top:20%;right:10%; }
.o2 { width:90px;height:90px;background:#f72585;bottom:25%;left:8%; }
.o3 { width:60px;height:60px;background:#7209b7;top:60%;right:30%; }

@keyframes float {
  50% { transform: translateY(-20px) rotate(20deg); }
}

/* SECTIONS */
section { padding: 100px 8%; }

h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 30px;
}

h2 span { color: #29cef9; }

/* ABOUT */
.about { text-align: center; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.about-card {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg,#0b1c3a,#1b2b55);
  transition: .4s;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px #4cc9f0;
}

/* STATS */
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 50px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg,#0b1c3a,#2a1b3d);
  transition: .4s;
}

.stat-box:hover {
  transform: translateY(-15px) scale(1.03);
}

.big-icon {
  font-size: 64px;
  animation: floatIcon 3s infinite;
}

@keyframes floatIcon {
  50% { transform: translateY(-12px); }
}

/* SERVICES AUTO SCROLL */
.auto-scroll { overflow: hidden; }

.service-track,
.gallery-track {
  display: flex;
  gap: 30px;
  animation: scroll 28s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.service-card {
  min-width: 260px;
  padding: 40px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg,#1b2b55,#3a0ca3);
  text-align: center;
  transition: .5s;
}

.service-card:hover {
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 0 35px rgba(76,201,240,.5);
}

.service-icon {
  font-size: 56px;
  margin-bottom: 10px;
}

/* GALLERY */
.gallery img {
  border-radius: 20px;
}

/* TESTIMONIALS */
.testimonial-scroll{
  overflow:hidden;
  margin-top:60px;
}

.testimonial-track{
  display:flex;
  gap:40px;
  animation:testimonialScroll 30s linear infinite;
}

.testimonial-scroll:hover .testimonial-track{
  animation-play-state: paused;
}

@keyframes testimonialScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* keep cards premium */
.testimonial-card{
  min-width:420px;
  padding:40px;
  border-radius:28px;
  background:linear-gradient(135deg,#1b2b55,#243a6b);
}

/* CTA */
.moving-text {
  animation: wave 2s infinite;
}

@keyframes wave {
  50% { letter-spacing: 6px; }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  width: 320px;
}

.modal-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

/* insta */
.insta-scroll{
  padding:80px 0 40px;
  background:linear-gradient(180deg,#050814,#090f2a);
  text-align:center;
  overflow:hidden;
}

.insta-scroll h2{
  font-size:38px;
  margin-bottom:40px;
}

.insta-scroll h2 span{
  color:#4cc9f0;
}

/* TRACK */
.insta-track{
  display:flex;
  gap:35px;
  width:max-content;
  animation: scrollInsta 22s linear infinite;
}

.insta-track a{
  flex:0 0 auto;
  border-radius:18px;
  overflow:hidden;
  transition:transform .4s, box-shadow .4s;
}

.insta-track img{
  width:360px;
  height:460px;
  object-fit:cover;
  border-radius:18px;
}

.insta-track a:hover{
  transform:scale(1.08);
  box-shadow:0 20px 40px rgba(108,124,255,.4);
}

/* ANIMATION */
@keyframes scrollInsta{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .insta-track img{
    width:260px;
    height:340px;
  }
}


/* FOOTER */
/* FOOTER UPGRADE */
.footer{
  background:linear-gradient(135deg,#0b1c3a,#050816);
  padding:70px 8% 30px;
  color:#fff;
}

.footer-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  max-width:1200px;
  margin:auto;
}

.footer-brand h3{
  font-family:'Space Grotesk',sans-serif;
  font-size:32px;
  margin-bottom:10px;
}

.footer-brand span{
  color:#4cc9f0;
}

.footer-brand p{
  opacity:.8;
  line-height:1.6;
}

.footer-contact h4{
  font-size:22px;
  margin-bottom:20px;
  color:#4cc9f0;
}

.footer-contact p{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  font-size:16px;
}

.footer-contact a{
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.footer-contact a:hover{
  color:#4cc9f0;
}

.footer-contact .icon{
  font-size:20px;
}

.footer-bottom{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  font-size:14px;
  opacity:.7;
}

/* FOOTER MOBILE */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-contact p{
    justify-content:center;
  }
}

.footer .logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 10px;
}



/* CURSOR GLOW */
.cursor-glow {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(76,201,240,.25), transparent 60%);
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999;
}

.big-icon{
  font-size:60px;
  margin-bottom:15px;
  animation:floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon{
  50%{transform:translateY(-12px);}
}

.service-track,
.gallery-track{
  display:flex;
  gap:30px;
  animation:scroll 25s linear infinite;
}

.auto-scroll{
  overflow:hidden;
}

@keyframes scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.service-card:hover .service-icon,
.stat-box:hover .big-icon{
  transform:rotate(10deg) scale(1.2);
}

.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(8px);
  z-index:9999;
}

.modal-content{
  background:#0c1022;
  padding:30px;
  width:90%;
  max-width:420px;
  margin:10% auto;
  border-radius:18px;
  color:#fff;
  animation:scaleIn .4s ease;
}

.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:24px;
  cursor:pointer;
}

@keyframes scaleIn{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}


.glass{
  backdrop-filter:blur(20px);
  background:rgba(255,255,255,.08);
}

.instagram{
  padding:100px 8%;
  text-align:center;
}

.insta-frame{
  width:100%;
  height:950px;
  border:none;
}

.cta-btn-wrap{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

/* ================= PAGE LOADER ================= */
#pageLoader{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg,#0f0c29,#302b63,#24243e);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-inner{
  text-align:center;
  color:#fff;
}

.loader-logo{
  font-size:38px;
  font-weight:700;
  letter-spacing:2px;
}

.loader-logo span{
  color:#4cc9f0;
}

.loader-tagline{
  margin:10px 0 20px;
  opacity:.8;
  letter-spacing:2px;
}

.loader-bar{
  width:200px;
  height:4px;
  background:rgba(255,255,255,.2);
  overflow:hidden;
  border-radius:10px;
  position:relative;
}

.loader-bar::after{
  content:"";
  position:absolute;
  left:-50%;
  width:50%;
  height:100%;
  background:#4cc9f0;
  animation:loading 1.5s infinite ease-in-out;
}

@keyframes loading{
  0%{left:-50%}
  100%{left:100%}
}

/* PROMO STRIP */
.promo-strip{
  position:fixed;
  top:90px;
  width:100%;
  background:linear-gradient(90deg,#4cc9f0,#7209b7);
  color:#fff;
  text-align:center;
  padding:8px 10px;
  font-size:14px;
  letter-spacing:1px;
  z-index:98;
  animation:pulsePromo 3s infinite;
}
.promo-strip span{
  font-weight:700;
  text-decoration:underline;
}

@keyframes pulsePromo{
  0%,100%{opacity:1}
  50%{opacity:.7}
}


@media(max-width:768px){
  .hero-text{
    font-size:42px;
  }

  .hero-badges{
    justify-content:center;
  }
}


.promo-popup{
  position:fixed;
  bottom:20px;
  left:20px;
  background:linear-gradient(135deg,#7209b7,#4cc9f0);
  color:#fff;
  padding:16px 20px;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.3);
  z-index:99;
  animation:slideIn 1s ease;
}
.promo-popup p{
  margin:0 0 10px;
  font-size:14px;
}
.promo-popup button{
  background:#fff;
  color:#000;
  border:none;
  padding:8px 14px;
  border-radius:20px;
  cursor:pointer;
  font-weight:600;
}
.promo-popup span{
  position:absolute;
  top:6px;
  right:10px;
  cursor:pointer;
}

@keyframes slideIn{
  from{transform:translateY(100px);opacity:0}
  to{transform:translateY(0);opacity:1}
}




/* ================= MODAL FIX ================= */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:10000;
}

.modal-content{
  background:rgba(20,20,40,.9);
  padding:30px;
  border-radius:20px;
  max-width:420px;
  width:90%;
  color:#fff;
  animation:popIn .4s ease;
}

@keyframes popIn{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.close-btn{
  position:absolute;
  top:14px;
  right:18px;
  font-size:24px;
  cursor:pointer;
}

.promo-popup{
  pointer-events:auto;
}




