/* style.css */

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

html{
  scroll-behavior:smooth;
}

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

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

a{
  text-decoration:none;
}



/* HERO */

.hero{
  min-height:100vh;

  padding:40px 5% 90px;

  background:
  radial-gradient(circle at top right,
  rgba(0,140,150,0.28),
  transparent 30%),

  radial-gradient(circle at bottom left,
  rgba(0,90,80,0.25),
  transparent 28%),

  #000;

  display:flex;
  flex-direction:column;
}

.top-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:28px;
  font-weight:800;
  letter-spacing:-1px;
}

.logo img{
  height:42px;
  width:auto;
  display:block;
  object-fit:contain;
}

.top-btn{
  padding:18px 28px;

  border:1px solid rgba(255,255,255,0.15);

  border-radius:999px;

  color:white;

  transition:0.3s ease;
}

.top-btn:hover{
  background:white;
  color:black;
}

.hero-content{
  width:100%;
  max-width:980px;

  margin-top:120px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-content h1{
  font-size:clamp(4.8rem,7vw,7rem);

  line-height:0.95;

  letter-spacing:-5px;

  font-weight:600;

  max-width:980px;
}

.hero-content p{
  margin-top:30px;

  max-width:680px;

  color:#9ed7da;

  font-size:21px;

  line-height:1.7;
}

.hero-actions{
  display:flex;

  gap:16px;

  margin-top:42px;

  flex-wrap:wrap;
}

.hero-btn{
  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 32px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.15);

  color:white;

  transition:0.3s ease;
}

.hero-btn:hover{
  background:white;
  color:black;
}

.hero-contact-btn{
  display:none;
}





/* SERVICES */

.services-section{
  padding:120px 5%;

  background:#000;
}

.services-heading{
  margin-bottom:50px;
}

.services-heading span{
  color:#55d9df;

  font-size:13px;

  font-weight:700;

  letter-spacing:2px;
}

.services-heading h2{
  margin-top:18px;

  font-size:clamp(2.5rem,5vw,4rem);

  letter-spacing:-3px;

  line-height:1;
}

.services-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:24px;
}

.service-box{
  padding:34px;

  border-radius:22px;

  border:1px solid rgba(255,255,255,0.12);

  background:rgba(255,255,255,0.02);

  transition:0.3s ease;
}

.service-box:hover{
  transform:translateY(-5px);

  border-color:rgba(255,255,255,0.3);
}

.service-icon{
  width:56px;
  height:56px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,0.14);

  color:#55d9df;

  margin-bottom:24px;

  font-size:22px;
}

.service-box h3{
  font-size:28px;

  margin-bottom:18px;

  letter-spacing:-1px;
}

.service-box p{
  color:#999;

  line-height:1.8;
}





/* WORK */

.work-section{
  padding:140px 5%;

  background:#000;
}

.section-heading{
  display:grid;

  grid-template-columns:1.1fr 0.9fr;

  gap:80px;

  margin-bottom:80px;
}

.section-heading span{
  color:#55d9df;

  font-size:13px;

  font-weight:700;

  letter-spacing:2px;
}

.section-heading h2{
  margin-top:20px;

  font-size:clamp(2.8rem,5vw,5rem);

  line-height:0.95;

  letter-spacing:-4px;

  max-width:760px;
}

.section-heading p{
  color:#8d8d8d;

  font-size:18px;

  line-height:1.9;

  margin-top:60px;

  max-width:450px;
}

.project-card{
  display:grid;

  grid-template-columns:1.1fr 1fr;

  gap:40px;

  padding:26px;

  border-radius:24px;

  border:1px solid rgba(255,255,255,0.14);

  margin-bottom:28px;

  background:rgba(255,255,255,0.02);

  transition:0.3s ease;
}

.project-card:hover{
  border-color:rgba(255,255,255,0.35);
}

.project-image{
  border-radius:18px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,0.25);
}

.project-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.project-info span{
  color:#55d9df;

  font-size:13px;

  font-weight:700;

  letter-spacing:1.5px;
}

.project-info h3{
  font-size:46px;

  margin-top:18px;

  margin-bottom:22px;

  line-height:1;

  letter-spacing:-2px;
}

.project-info p{
  color:#a0a0a0;

  line-height:1.9;

  font-size:18px;

  max-width:500px;
}





/* CONTACT */

.contact-form-section{
  padding:110px 5% 40px;

  background:#000;
}

.form-heading span{
  color:#55d9df;

  font-size:13px;

  font-weight:700;

  letter-spacing:2px;
}

.form-heading h2{
  margin-top:18px;

  margin-bottom:50px;

  font-size:clamp(3rem,5vw,5rem);

  line-height:0.95;

  letter-spacing:-3px;
}

.contact-form{
  max-width:700px;

  display:flex;
  flex-direction:column;

  gap:22px;
}

.contact-form input,
.contact-form textarea{
  padding:22px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,0.12);

  background:rgba(255,255,255,0.03);

  color:white;

  font-size:16px;

  outline:none;

  transition:0.3s ease;

  font-family:'Inter',sans-serif;
}

.contact-form textarea{
  min-height:180px;

  resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#55d9df;
}

.contact-form button{
  width:fit-content;

  padding:20px 34px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.2);

  background:transparent;

  color:white;

  cursor:pointer;

  font-size:16px;

  transition:0.3s ease;
}

.contact-form button:hover{
  background:white;
  color:black;
}





/* CTA */

.cta-section{
  padding:60px 5% 100px;

  text-align:center;

  background:
  radial-gradient(circle at center,
  rgba(0,150,160,0.15),
  transparent 35%),

  #000;
}

.cta-section span{
  color:#55d9df;

  font-size:13px;

  font-weight:700;

  letter-spacing:2px;
}

.cta-section h2{
  margin-top:24px;

  font-size:clamp(3rem,6vw,5rem);

  line-height:0.95;

  letter-spacing:-3px;

  max-width:850px;

  margin-left:auto;
  margin-right:auto;
}

.cta-btn{
  display:inline-block;

  margin-top:40px;

  padding:20px 36px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.2);

  color:white;

  transition:0.3s ease;
}

.cta-btn:hover{
  background:white;
  color:black;
}

.footer-links{
  margin-top:50px;

  display:flex;
  justify-content:center;

  gap:30px;
}

.footer-links a{
  color:#888;
}





/* RESPONSIVE */

@media(max-width:1100px){

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .section-heading{
    grid-template-columns:1fr;
    gap:30px;
  }

  .section-heading p{
    margin-top:0;
  }

  .project-card{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .hero{
    min-height:auto;

    padding:26px 6% 72px;
  }

  .top-btn{
    display:none;
  }

  .hero-content{
    margin-top:72px;

    max-width:100%;
  }

  .hero-content h1{

    font-size:clamp(3.7rem,13vw,5rem);

    line-height:0.94;

    letter-spacing:-3px;

    max-width:100%;
  }

  .hero-content p{

    margin-top:22px;

    max-width:100%;

    font-size:17px;

    line-height:1.7;
  }

  .hero-actions{

    margin-top:30px;

    display:flex;

    gap:12px;

    width:100%;
  }

  .hero-btn{

    flex:1;

    padding:16px 18px;

    font-size:15px;
  }

  .hero-contact-btn{
    display:flex;
  }

  .services-section{
    padding:88px 6%;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .services-heading h2{
    letter-spacing:-2px;
  }

  .work-section{
    padding:96px 6%;
  }

  .section-heading h2{
    letter-spacing:-2px;
  }

  .project-info h3{
    font-size:32px;
  }

  .contact-form-section{
    padding:84px 6% 28px;
  }

  .form-heading h2{
    margin-bottom:34px;
    letter-spacing:-2px;
  }

  .contact-form{
    gap:16px;
  }

  .contact-form input,
  .contact-form textarea{
    padding:18px;
  }

  .contact-form button{
    width:100%;
  }

  .cta-section{
    padding:44px 6% 72px;
  }

  .cta-section h2{
    letter-spacing:-2px;
  }

}
