*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f4f1eb;
  color:#333;
}

/* NAVBAR */

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 80px;
  background:white;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.logo{
  font-size:28px;
  font-weight:700;
  color:#0e8784;
}

nav ul{
  display:flex;
  gap:35px;
  list-style:none;
}

nav ul li{
  cursor:pointer;
  transition:0.3s;
  font-weight:500;
}

nav ul li:hover{
  color:#0e8784;
}

/* HERO */

.hero{
  height:90vh;
  margin:30px 60px;
  border-radius:25px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  padding:80px;
  background:url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  color:white;
}

.hero h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:30px;
}

.hero button{
  background:#0e8784;
  color:white;
  border:none;
  padding:16px 35px;
  border-radius:50px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.hero button:hover{
  background:#066866;
  transform:translateY(-4px);
}

.floating-card{
  position:absolute;
  right:70px;
  bottom:70px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:25px;
  border-radius:20px;
  color:white;
  z-index:2;
  width:220px;
}

.floating-card h3{
  font-size:30px;
  margin-bottom:10px;
  color:#f4c542;
}

/* COLLECTION */

.collection{
  padding:120px 80px;
  text-align:center;
  position:relative;
}

.bg-text{
  position:absolute;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  font-size:120px;
  color:rgba(0,0,0,0.04);
}

.title h1{
  font-size:50px;
  margin-bottom:15px;
}

.title p{
  margin-bottom:60px;
  color:#777;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:30px;
  border-radius:20px;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:220px;
  object-fit:contain;
}

.card h3{
  margin:15px 0;
  font-size:24px;
}

.card p{
  color:#777;
  line-height:1.7;
}

/* WHY */

.why{
  background:#2c343e;
  color:white;
  margin:40px 60px;
  border-radius:25px;
  padding:100px 60px;
  text-align:center;
}

.why h1{
  font-size:50px;
  margin-bottom:20px;
}

.why-text{
  max-width:700px;
  margin:auto;
  line-height:1.8;
  margin-bottom:70px;
  color:#ddd;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.feature{
  background:#0e8784;
  padding:40px 30px;
  border-radius:20px;
  transition:0.3s;
}

.feature:hover{
  transform:translateY(-10px);
}

.icon{
  font-size:50px;
  margin-bottom:20px;
}

.feature h3{
  margin-bottom:15px;
  font-size:25px;
}

.feature p{
  line-height:1.7;
}

/* WORKS */

.works{
  padding:120px 80px;
}

.works h1{
  font-size:50px;
  margin-bottom:40px;
}

.line{
  display:flex;
  justify-content:space-between;
  max-width:900px;
  position:relative;
  margin-bottom:50px;
}

.line::before{
  content:"";
  position:absolute;
  top:10px;
  width:100%;
  height:2px;
  background:#fdd6ba;
}

.line span{
  width:20px;
  height:20px;
  border-radius:50%;
  border:3px solid #0e8784;
  background:white;
  z-index:2;
}

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.step{
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.step h2{
  font-size:70px;
  color:#fdd6ba;
}

.step h3{
  margin:20px 0;
  font-size:28px;
}

.step p{
  line-height:1.8;
  color:#777;
}

.works button{
  margin-top:50px;
  padding:16px 35px;
  border:none;
  border-radius:50px;
  background:#0e8784;
  color:white;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.works button:hover{
  background:#066866;
}

/* TESTIMONIAL */

.testimonial{
  margin:0 60px 100px;
  background:white;
  padding:80px;
  border-radius:25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.testimonial h1{
  font-size:45px;
  margin-bottom:40px;
}

.testimonial-box img{
  width:100px;
  height:100px;
  border-radius:50%;
  margin-bottom:25px;
}

.testimonial-box p{
  max-width:700px;
  margin:auto;
  line-height:1.9;
  color:#666;
  margin-bottom:20px;
}

/* FOOTER */

footer{
  background:#2c343e;
  color:white;
  padding:50px 80px;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:30px;
}

.footer-content ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.footer-content ul li{
  cursor:pointer;
  transition:0.3s;
}

.footer-content ul li:hover{
  color:#0e8784;
}

/* RESPONSIVE */

@media(max-width:900px){

  nav{
    padding:20px;
  }

  nav ul{
    display:none;
  }

  .hero{
    margin:20px;
    padding:40px;
    height:auto;
  }

  .hero h1{
    font-size:45px;
  }

  .floating-card{
    display:none;
  }

  .collection,
  .works{
    padding:80px 20px;
  }

  .why,
  .testimonial{
    margin:20px;
    padding:50px 20px;
  }

  footer{
    padding:40px 20px;
  }

}
/* STATS */

.stats{
  margin:100px 60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
}

.stat{
  background:white;
  padding:40px;
  border-radius:25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.4s;
}

.stat:hover{
  transform:translateY(-10px);
}

.stat h1{
  font-size:55px;
  color:#0e8784;
  margin-bottom:10px;
}

.stat p{
  color:#666;
  font-size:18px;
}

/* GALLERY */

.gallery{
  padding:100px 60px;
}

.gallery-text{
  text-align:center;
  margin-bottom:60px;
}

.gallery-text h1{
  font-size:50px;
  margin-bottom:15px;
}

.gallery-text p{
  color:#777;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.gallery-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:25px;
  transition:0.4s;
  cursor:pointer;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* NEWSLETTER */

.newsletter{
  margin:100px 60px;
  background:linear-gradient(135deg,#0e8784,#066866);
  color:white;
  padding:80px;
  border-radius:30px;
  text-align:center;
}

.newsletter h1{
  font-size:50px;
  margin-bottom:20px;
}

.newsletter p{
  margin-bottom:35px;
  color:#dff;
}

.newsletter-box{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.newsletter-box input{
  width:350px;
  padding:18px 20px;
  border:none;
  border-radius:50px;
  outline:none;
  font-size:16px;
}

.newsletter-box button{
  padding:18px 35px;
  border:none;
  border-radius:50px;
  background:#fff;
  color:#0e8784;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.newsletter-box button:hover{
  transform:translateY(-4px);
}

/* ANIMATION */

.card,
.feature,
.step,
.stat,
.gallery-grid img{
  animation:fadeUp 1s ease;
}

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width:900px){

  .stats,
  .gallery,
  .newsletter{
    margin:20px;
    padding:50px 20px;
  }

  .newsletter h1,
  .gallery-text h1{
    font-size:35px;
  }

  .newsletter-box input{
    width:100%;
  }

}