*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f5f5f5;
  color:#111;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* NAVBAR */

nav{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:25px 0;
  background:rgba(245,245,245,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  width:220px;
}

/* NAV LINKS */

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  font-size:0.95rem;
  font-weight:500;
  transition:0.3s ease;
}

.nav-links a:hover{
  opacity:0.5;
}

/* HAMBURGER */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#111;
  border-radius:10px;
  transition:0.3s ease;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:140px;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.mini-tag{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(0,0,0,0.1);
  border-radius:50px;
  font-size:0.85rem;
  margin-bottom:25px;
}

.dark-tag{
  border:1px solid rgba(255,255,255,0.2);
}

.hero-text h1{
  font-size:5rem;
  line-height:1;
  letter-spacing:-4px;
  margin-bottom:30px;
}

.hero-text p{
  font-size:1.1rem;
  line-height:1.9;
  color:#555;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:17px 34px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s ease;
}

.btn-dark{
  background:#111;
  color:#fff;
}

.btn-light{
  border:1px solid #111;
}

.btn:hover{
  transform:translateY(-3px);
}

/* HERO IMAGE */

.hero-card{
  height:650px;
  border-radius:40px;
  overflow:hidden;
  background:url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop') center/cover;
  position:relative;
}

.hero-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,
  rgba(0,0,0,0.6),
  rgba(0,0,0,0.05));
}

.floating-box{
  position:absolute;
  bottom:30px;
  left:30px;
  width:290px;
  padding:25px;
  border-radius:25px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
}

.floating-box i{
  font-size:2rem;
  margin-bottom:15px;
}

.floating-box h3{
  margin-bottom:12px;
}

.floating-box p{
  font-size:0.92rem;
  line-height:1.7;
  color:rgba(255,255,255,0.8);
}

/* SERVICES */

.services{
  padding:140px 0;
}

.section-title{
  margin-bottom:70px;
}

.section-title h2{
  font-size:3.5rem;
  letter-spacing:-3px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  padding:40px;
  border-radius:30px;
  border:1px solid rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card i{
  font-size:2rem;
  margin-bottom:25px;
}

.service-card h3{
  margin-bottom:20px;
  font-size:1.4rem;
}

.service-card p{
  line-height:1.8;
  color:#666;
}

/* CTA */

.cta{
  padding:100px 0;
}

.cta-box{
  background:#111;
  color:#fff;
  padding:100px 50px;
  border-radius:40px;
  text-align:center;
}

.cta-box h2{
  font-size:4rem;
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:25px;
}

.cta-box p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
  color:rgba(255,255,255,0.7);
  margin-bottom:40px;
}

.cta-box a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#111;
  padding:18px 35px;
  border-radius:50px;
  font-weight:600;
}

/* FOOTER */

footer{
  padding:60px 0;
}

.footer-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  border-top:1px solid rgba(0,0,0,0.08);
  padding-top:40px;
}

.footer-logo img{
  width:200px;
}

.footer-text p{
  color:#555;
  margin-bottom:8px;
}

/* MOBILE */

@media(max-width:900px){

  .hero-content{
    grid-template-columns:1fr;
  }

  .hero-text h1,
  .section-title h2,
  .cta-box h2{
    font-size:3rem;
  }

}

@media(max-width:768px){

  .hamburger{
    display:flex;
    z-index:2000;
  }

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#fff;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:0.4s ease;
    box-shadow:-10px 0 40px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    right:0;
  }

}

@media(max-width:600px){

  .hero-text h1{
    font-size:2.5rem;
  }

  .hero-card{
    height:500px;
  }

  .cta-box{
    padding:70px 25px;
  }

  .cta-box h2{
    font-size:2.5rem;
  }

}