*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0b0f1a;
  color:#fff;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  height:64px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(0,0,0,0.4); 
  z-index:100;
}

.logo{
  height:40px;
}

.logo-wrap{
  display:flex;
  align-items:center;
}
.nav-menu a{
  margin-left:22px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;              /* space between logo & text */
}
.company-name{
  font-size:25px;
  font-weight:600;
  letter-spacing:0.5px;
  white-space:nowrap;
  transform: translateX(-50px);
  margin-left:-8px;

  background:linear-gradient(135deg,#f472b6,#a78bfa,#60a5fa);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 2px 8px rgba(168,139,250,0.45);
}
/* LOGO SIZE */
.logo{
  height:200px;
  margin-top:15px;                  /* smaller logo */
  width:auto;
  transform: translateX(-40px);
}

/* MENU LINKS */
.navbar nav a{
  font-size:14px;              /* professional size */
  font-weight:500;
  margin-left:22px;
  color:#e5e7eb;
  letter-spacing:.3px;
  transition:.3s;
}

.navbar nav a:hover{
  color:#f472b6;
}


/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:140px 30px 60px;
  background:linear-gradient(135deg,#5f2cff,#1e1b4b);
}

.hero span{color:#f472b6}
.btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 30px;
  background:#f472b6;
  color:#000;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* LOTTIE */
.lottie{
  max-width:350px;
  margin-top:30px;
}
.about-us{ 
  padding:120px 20px;
  background:#fff;
  color:#fff;
  overflow:hidden;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-tag{
  font-size:13px;
  letter-spacing:2px;
  color:#6482fc;
  display:inline-block;
  margin-bottom:12px;
}

.about-text h2{
  color:#6482fc;
  font-size:40px;
  line-height:1.2;
  margin-bottom:20px;
}

.about-text h2 span{
  color:#ff5db1;
}

.about-text p{
  font-size:16px;
  line-height:1.7;
  color:#6482fc;
  margin-bottom:16px;
}

.about-stats{
  display:flex;
  gap:40px;
  margin-top:30px;
}

.about-stats h3{
  font-size:32px;
  color:#fff;
}

.about-stats span{
  font-size:14px;
  color:#c7d2fe;
}

/* IMAGE */
.about-image img{
  width:100%;
  max-width:480px;
  margin-left:auto;
  animation:floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

/* MOBILE */
@media(max-width:768px){
  .about-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .about-stats{
    justify-content:center;
  }

  .about-image img{
    margin:auto;
  }

  .about-text h2{
    font-size:30px;
  }
}
.stats-section{
  padding:100px 20px;
  background:linear-gradient(135deg,#5f2cff,#1e1b4b);
}

.stats-card{
  max-width:1100px;
  margin:auto;
  background:#ffffff;
  border-radius:18px;
  padding:50px 40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  text-align:center;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.stat-item h3{
  font-size:42px;
  font-weight:700;
  color:#0d0d0d;
}

.stat-item h3::after{
  content:"+";
}

.stat-item:nth-child(2) h3::after{
  content:"%";
}

.stat-item:nth-child(3) h3::after{
  content:"%";
}

.stat-item p{
  margin-top:10px;
  font-size:16px;
  color:#6b7280;
}

/* Hover micro-effect */
.stat-item{
  transition:0.4s;
}

.stat-item:hover{
  transform:translateY(-6px);   
}

/* Mobile */
@media(max-width:768px){
  .stats-card{
    grid-template-columns:1fr;
    gap:30px;
  }
}


/* Services */
.section{
  padding:80px 30px;
  text-align:center;
  background:linear-gradient(135deg,#5f2cff,#1e1b4b);
}
.dark{background:#050505}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:40px;
}
#services{
  scroll-margin-top:80px;
}


.card{
  background:rgba(247, 246, 248, 0.604);
  backdrop-filter:blur(8px);
  padding:30px 20px;
  border-radius:16px;
  color:#050505;
  font-size:16px;
  font-weight:500;
  transition:0.4s;
}
.card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.12);
  box-shadow:0 25px 60px rgba(99,102,241,0.35);
}

/* PARALLAX */
.parallax{
  height:300px;
  background:url('assets/end.gif') center/cover fixed;
}

/* TIMELINE */
.timeline{
  list-style:none;
  margin-top:40px;
}
.timeline li{
  margin:15px 0;
  font-size:18px;
}

/* TESTIMONIALS */
.testimonials-section{
  padding:120px 20px;
  background:#f8fafc;
  text-align:center;
  overflow:hidden;
}

.testimonials-title{
  font-size:36px;
  margin-bottom:60px;
  color:#2563eb;
}

.testimonial-wrapper{
  max-width:900px;
  margin:auto;
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  transition:transform 0.8s ease;
}

.testimonial-card{
  min-width:100%;
  background:#fff;
  padding:50px 40px;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,.08);
  opacity:0.4;
  transform:scale(0.9);
  transition:0.6s;
}

.testimonial-card.active{
  opacity:1;
  transform:scale(1);
}

.testimonial-card p{
  font-size:18px;
  color:#374151;
  line-height:1.6;
}

.testimonial-card h4{
  margin-top:25px;
  font-size:18px;
  color:#111827;
}

.quote{
  font-size:40px;
  color:#6366f1;
}

/* DOTS */
.testimonial-dots{
  margin-top:30px;
}

.dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin:0 6px;
  background:#c7d2fe;
  border-radius:50%;
  cursor:pointer;
  transition:.3s;
}

.dot.active{
  background:#4f46e5;
  transform:scale(1.3);
}

/* HOVER MICRO */
.testimonial-card:hover{
  transform:scale(1.02);
}

/* MOBILE */
@media(max-width:768px){
  .testimonial-card{
    padding:40px 25px;
  }

  .testimonials-title{
    font-size:28px;
  }
}


/* FORM */
.contact-form{
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
}
.contact-form input,
.contact-form textarea{
  margin:10px 0;
  padding:12px;
  border-radius:10px;
  border:none;
}
@media(max-width:768px){
  .navbar{
    height:56px;
  }

  .logo{
    height:28px;
  }

  .hero{
    padding-top:120px;
  }
}
@media(max-width:768px){
  .section{
    padding:80px 16px;
  }

  .section h2{
    font-size:26px;
  }
}


/* DESKTOP */
@media(min-width:768px){
  .hero{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
  .cards{grid-template-columns:repeat(4,1fr)}
  .testimonials{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .logo{
    height:120px;
  }

  .company-name{
    font-size:16px;
  }
}
@media(max-width:768px){

  /* Hide company name */
  .company-name{
    display:none;
  }

  /* Show hamburger */
  .menu-toggle{
    display:block;
  }
