/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#050816;
  color:#ffffff;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:42px;
  margin-bottom:10px;
}

.section-title p{
  color:#b0b0b0;
}

/* NAVBAR */

.navbar{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(5,8,22,0.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  font-size:28px;
  font-weight:700;
}

.logo span{
  color:#00d4ff;
}

.nav-links{
  display:flex;
  gap:25px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}

.nav-links a:hover{
  color:#00d4ff;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:120px;
  background:
    radial-gradient(circle at top left,#102040 0%,transparent 40%),
    radial-gradient(circle at bottom right,#001d3d 0%,transparent 35%);
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:60px;
  align-items:center;
}

.hero-text h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-text h1 span{
  color:#00d4ff;
}

.hero-text p{
  color:#c2c2c2;
  margin-bottom:35px;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:14px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:0.3s;
  border:none;
  cursor:pointer;
}

.primary-btn{
  background:#00d4ff;
  color:#000;
}

.primary-btn:hover{
  transform:translateY(-3px);
}

.secondary-btn{
  border:1px solid #00d4ff;
  color:#00d4ff;
}

.secondary-btn:hover{
  background:#00d4ff;
  color:#000;
}

/* HERO CARD */

.hero-card{
  position:relative;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:25px;
  padding:40px;
  overflow:hidden;
}

.card-glow{
  position:absolute;
  width:250px;
  height:250px;
  background:#00d4ff;
  filter:blur(120px);
  opacity:0.25;
  top:-80px;
  right:-80px;
}

.hero-card h3{
  margin-bottom:30px;
  font-size:28px;
}

.stat-box{
  margin-bottom:25px;
}

.stat-box h2{
  font-size:38px;
  color:#00d4ff;
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  background:rgba(255,255,255,0.04);
  padding:35px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:#00d4ff;
}

.icon{
  font-size:40px;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
}

/* CASE STUDIES */

.case-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.case-card{
  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  padding:35px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
}

.tag{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 15px;
  border-radius:30px;
  background:#00d4ff;
  color:#000;
  font-size:14px;
  font-weight:600;
}

/* TEAM */

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.team-card{
  text-align:center;
  background:rgba(255,255,255,0.04);
  padding:30px;
  border-radius:20px;
}

.team-img{
  width:120px;
  height:120px;
  border-radius:50%;
  margin:auto;
  margin-bottom:20px;
  background:linear-gradient(135deg,#00d4ff,#0047ab);
}

/* ABOUT */

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-text h2{
  font-size:42px;
  margin-bottom:20px;
}

.about-text p{
  margin-bottom:20px;
  color:#c7c7c7;
}

.about-box{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:20px;
}

.about-box h3{
  margin-bottom:20px;
}

.about-box ul{
  list-style:none;
}

.about-box li{
  margin-bottom:15px;
}

/* CONTACT */

.contact-box{
  max-width:700px;
  margin:auto;
  background:rgba(255,255,255,0.04);
  padding:40px;
  border-radius:20px;
}

.input-group{
  margin-bottom:20px;
}

input,
textarea{
  width:100%;
  padding:16px;
  border:none;
  border-radius:12px;
  background:#10172d;
  color:white;
  font-size:16px;
}

input:focus,
textarea:focus{
  outline:1px solid #00d4ff;
}

/* FOOTER */

.footer{
  padding:50px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
}

.footer h2{
  margin-bottom:10px;
}

.footer-links{
  margin:25px 0;
}

.footer-links a{
  color:#bdbdbd;
  margin:0 12px;
  text-decoration:none;
}

.footer-links a:hover{
  color:#00d4ff;
}

.copyright{
  color:#7f7f7f;
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero-content,
  .about-container{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:48px;
  }

  .nav-links{
    gap:15px;
    font-size:14px;
  }
}

@media(max-width:600px){

  .hero-text h1{
    font-size:38px;
  }

  .section-title h2{
    font-size:32px;
  }

  .nav-container{
    flex-direction:column;
    gap:15px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-buttons{
    flex-direction:column;
  }
}