*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#0a0f1f;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

nav{

  width:100%;

  height:95px;

  padding:0 8%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  position:fixed;

  top:0;
  left:0;

  z-index:1000;

  background:rgba(10,15,31,0.85);

  backdrop-filter:blur(10px);
}
.navt{
  font-size:30px;
  font-weight:700;
  color:#00d9ff;
}
.navt span{
  color:#ffffff;
}
.logo{

  display:flex;

  align-items:center;
}

/* LOGO IMAGE */

.logo img{

  height:90px;

  width:auto;

  object-fit:contain;

  transition:0.3s ease;
}

/* HOVER EFFECT */

.logo img:hover{

  transform:scale(1.05);
}
.logo span{
  color:#ffffff;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav ul li a{
  color:white;
  text-decoration:none;
  transition:0.3s;
  font-weight:500;
}

nav ul li a:hover{
  color:#00d9ff;
}
/* HERO */
/* HERO */

.hero{

  position:relative;

  height:100vh;

  display:flex;

  justify-content:center;

  align-items:center;

  text-align:center;

  padding:0 8%;

  overflow:hidden;

  background:
  linear-gradient(
    rgba(10,15,31,0.45),
    rgba(17,31,61,0.55)
  ),

  url("team.jpeg");

  background-size:cover;

  background-position:center;

  background-repeat:no-repeat;
}

/* DARK OVERLAY */

.hero-overlay{

  position:absolute;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.35);

  top:0;
  left:0;
}

/* HERO TEXT */
.hero-text{

  position:relative;

  z-index:2;

  max-width:900px;

  width:100%;

  text-align:center;
}

.hero-text h1{

  font-size:72px;

  line-height:1.2;

  margin-bottom:25px;

  font-weight:700;

  text-shadow:
  0 0 10px rgba(0,0,0,0.5),
  0 0 25px rgba(0,0,0,0.4);
}

.hero-text h1 span{
  color:#00d9ff;
}

.hero-text p{

  color:#e2e8f0;

  font-size:20px;

  margin-bottom:35px;

  line-height:1.9;

  text-shadow:
  0 0 10px rgba(0,0,0,0.5);
}
/* JUMPING TITLE ANIMATION */

.jump-title{

  animation:jumpText 1s ease;
}
/* ANIMATION */

@keyframes jumpText{

  0%{
    opacity:0;
    transform:translateY(30px);
  }

  60%{
    opacity:1;
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}
.hero-btn{
  display:inline-block;
  padding:14px 35px;
  background:#00d9ff;
  color:#000;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  transition:0.4s;
}

.hero-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px #00d9ff;
}

.hero-image{
  width:40%;
}

.hero-image img{
  width:100%;
  max-width:450px;
  animation:float 4s ease-in-out infinite;
}

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-20px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* SERVICES */

.services{
  padding:100px 8%;
  background:#111827;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:45px;
  color:#00d9ff;
}

.section-title p{
  color:#cfd8dc;
  margin-top:10px;
}

.service-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service-box{
  background:#1f2937;
  padding:35px;
  border-radius:20px;
  transition:0.4s;
}

.service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 0 20px rgba(0,217,255,0.4);
}

.service-box i{
  font-size:45px;
  color:#00d9ff;
  margin-bottom:20px;
}

.service-box h3{
  margin-bottom:15px;
}

.service-box p{
  color:#cfd8dc;
  line-height:1.7;
}
@media(max-width:1000px){

  .service-container{

    grid-template-columns:repeat(2,1fr);

  }

}

@media(max-width:700px){

  .service-container{

    grid-template-columns:1fr;

  }

}
/* STATS */

.stats{
  padding:80px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  background:#0f172a;
}

.stat-box{
  text-align:center;
  padding:30px;
  background:#111827;
  border-radius:20px;
}

.stat-box h2{
  color:#00d9ff;
  font-size:45px;
}

/* ABOUT */

.about{
  padding:100px 8%;
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
  background:#111827;
}

.about img{
  width:450px;
  max-width:100%;
  border-radius: 50%;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:45px;
  margin-bottom:20px;
  color:#00d9ff;
}

.about-text p{
  color:#cfd8dc;
  line-height:1.8;
  margin-bottom:20px;
}

/* CONTACT */

.contact{
  padding:100px 8%;
}

.contact form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact input,
.contact textarea{
  padding:16px;
  border:none;
  border-radius:12px;
  background:#1f2937;
  color:white;
  font-size:16px;
  outline:none;
}

.contact button{
  padding:16px;
  border:none;
  border-radius:12px;
  background:#00d9ff;
  color:black;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  transition:0.4s;
}

.contact button:hover{
  box-shadow:0 0 20px #00d9ff;
}

/* FOOTER */

footer{
  padding:30px 8%;
  text-align:center;
  background:#111827;
}

.social-icons{
  margin-top:20px;
}

.social-icons a{
  color:white;
  margin:0 10px;
  font-size:22px;
  transition:0.3s;
}

.social-icons a:hover{
  color:#00d9ff;
}

.copyright{
  margin-top:20px;
  color:#cfd8dc;
}

/* RESPONSIVE */

@media(max-width:950px){

  .hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding-top:120px;
  }

  .hero-text{
    width:100%;
  }

  .hero-image{
    width:100%;
    margin-top:40px;
  }

  nav ul{
    display:none;
  }

  .hero-text h1{
    font-size:45px;
  }

}
.service-link{
  text-decoration:none;
  color:white;
}