:root{

  --bg:#f4f8fb;
  --white:#ffffff;

  --text:#102030;
  --text-light:#5f6b7a;

  --primary:#008cff;
  --secondary:#00c2ff;

}

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

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Space Grotesk',sans-serif;

  background:var(--bg);

  color:var(--text);

  overflow-x:hidden;
}

/* NAV */

nav{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  padding:22px 5vw;

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

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

  backdrop-filter:blur(10px);

  border-bottom:
  1px solid rgba(0,0,0,0.06);

  z-index:1000;
}

.logo{

  font-size:30px;
  font-weight:700;
}

.logo span{

  color:var(--primary);
}

.nav-links{

  display:flex;
  gap:30px;
}

.nav-links a{

  color:var(--text);

  text-decoration:none;

  font-weight:500;

  transition:0.3s;
}

.nav-links a:hover{

  color:var(--primary);
}

/* BURGER */

.burger{

  display:none;

  flex-direction:column;

  gap:6px;

  cursor:pointer;
}

.burger span{

  width:28px;
  height:3px;
 transition:0.4s;
   background:var(--text);

  border-radius:20px;
}

.burger.active span:nth-child(1){

  transform:
  rotate(45deg)
  translate(7px,7px);

}

.burger.active span:nth-child(2){

  opacity:0;
}

.burger.active span:nth-child(3){

  transform:
  rotate(-45deg)
  translate(7px,-7px);

}

/* HERO */

/* HERO */

header{

  min-height:100vh;

  display:flex;
  align-items:center;

  padding:140px 5vw 100px;

  background:#f4f8fb;

  position:relative;

  overflow:hidden;
}

.hero-container{

  max-width:1400px;
  margin:auto;

  width:100%;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;
}

.hero-text h1{

  font-size:
  clamp(54px,7vw,100px);

  line-height:1;

  margin-bottom:30px;

  color:var(--text);
}

.hero-text p{

  font-size:18px;

  line-height:1.9;

  color:var(--text-light);

  max-width:650px;
}

.hero-tag{

  color:var(--primary);

  font-weight:600;

  letter-spacing:3px;

  margin-bottom:25px;
}

.hero-buttons{

  display:flex;
  gap:20px;

  margin-top:40px;

  flex-wrap:wrap;
}

.hero-image{

  display:flex;
  justify-content:center;
}

.hero-image img{

  width:100%;
  max-width:600px;

  object-fit:contain;

  animation:float 5s ease-in-out infinite;
}

@keyframes float{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-15px);
  }

  100%{
    transform:translateY(0);
  }
}

.btn{

  padding:16px 32px;

  border-radius:14px;

  text-decoration:none;

  font-weight:600;

  color:white;

  background:var(--primary);

  transition:0.3s;
}

.btn:hover{

  transform:translateY(-4px);

  background:#0076d9;
}

.secondary-btn{

  background:white;

  color:var(--text);

  border:
  1px solid rgba(0,0,0,0.08);
}

.hero-stats{

  display:flex;
  justify-content:center;

  gap:30px;

  flex-wrap:wrap;

  margin-top:70px;
}

.hero-stats div{

  min-width:220px;

  padding:25px;

  border-radius:24px;

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

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

  backdrop-filter:blur(10px);
}

.hero-stats strong{

  display:block;

  font-size:42px;

  margin-bottom:10px;

  color:var(--primary);
}

.hero-stats span{

  color:var(--text-light);
}

/* GLOW */

.background-glow{

  position:fixed;

  inset:0;

  z-index:-1;

  overflow:hidden;
}

.background-glow::before,
.background-glow::after{

  content:"";

  position:absolute;

  width:600px;
  height:600px;

  border-radius:50%;

  filter:blur(120px);

  opacity:0.22;
}

.background-glow::before{

  background:#00cfff;

  top:-200px;
  left:-150px;
}

.background-glow::after{

  background:#1f6fff;

  bottom:-200px;
  right:-150px;
}

/* MOBILE */

@media(max-width:768px){

  .burger{
    display:flex;
  }

  .nav-links{
    display:none;
  }

  h1{
    font-size:64px;
  }

  .hero-stats{
    gap:20px;
  }
}

/* ABOUT */

.about-section{

  padding:120px 5vw;
}

.about-grid{

  max-width:1400px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:70px;

  align-items:center;
}

.section-tag{

  color:var(--primary);

  letter-spacing:4px;

  margin-bottom:20px;

  font-size:14px;
}

.about-text h2{

  font-size:
  clamp(36px,5vw,64px);

  line-height:1.1;

  margin-bottom:30px;
}

.about-text p{

  color:var(--text-light);

  line-height:1.9;

  margin-bottom:20px;

  font-size:17px;
}

.about-cards{

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

  gap:25px;
}

.about-card{

  padding:40px 30px;

  border-radius:30px;

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

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

  transition:0.4s;
}

.about-card:hover{

  transform:translateY(-8px);

  border-color:
  rgba(0,207,255,0.35);

  box-shadow:
  0 15px 40px
  rgba(0,207,255,0.12);
}

.about-card i{

  font-size:42px;

  color:var(--primary);

  margin-bottom:20px;
}

.about-card h3{

  margin-bottom:15px;

  font-size:24px;
}

.about-card p{

  color:var(--text-light);

  line-height:1.8;
}

/* SERVICES */

.services-section{

  padding:120px 5vw;
}

.section-heading{

  text-align:center;

  margin-bottom:70px;
}

.section-heading h2{

  font-size:
  clamp(36px,5vw,64px);

  margin-top:20px;
}

.services-grid{

  max-width:1400px;
  margin:auto;

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

  gap:30px;
}

.service-card{

  padding:50px 40px;

  border-radius:30px;

  text-align:center;

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

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

  transition:0.4s;
}

.service-card:hover{

  transform:translateY(-10px);

  border-color:
  rgba(0,207,255,0.35);

  box-shadow:
  0 20px 50px
  rgba(0,207,255,0.12);
}

.service-card i{

  font-size:54px;

  color:var(--primary);

  margin-bottom:25px;
}

.service-card h3{

  font-size:28px;

  margin-bottom:18px;
}

.service-card p{

  color:var(--text-light);

  line-height:1.9;
}

/* MOBILE */

@media(max-width:1000px){

  .about-grid,
  .services-grid{

    grid-template-columns:1fr;
  }
}

@media(max-width:600px){

  .about-cards{

    grid-template-columns:1fr;
  }
}


@media(max-width:1000px){

  .hero-container{

    grid-template-columns:1fr;

    text-align:center;
  }

  .hero-buttons{

    justify-content:center;
  }

  .hero-image{

    order:-1;
  }

}


/* WHY SECTION */

.why-section{

  padding:120px 5vw;
}

.why-grid{

  max-width:1400px;
  margin:auto;

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

  gap:30px;
}

.why-card{

  padding:50px 40px;

  border-radius:24px;

  background:white;

  border:
  1px solid rgba(0,0,0,0.06);

  transition:0.3s;
}

.why-card:hover{

  transform:translateY(-8px);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);
}

.why-card i{

  font-size:50px;

  color:var(--primary);

  margin-bottom:25px;
}

.why-card h3{

  font-size:28px;

  margin-bottom:18px;

  color:var(--text);
}

.why-card p{

  color:var(--text-light);

  line-height:1.8;
}

/* STATS */

.stats-section{

  padding:40px 5vw 120px;
}

.stats-container{

  max-width:1400px;
  margin:auto;

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

  gap:25px;
}

.stat-box{

  padding:50px 30px;

  text-align:center;

  border-radius:24px;

  background:var(--primary);

  color:white;
}

.stat-box h3{

  font-size:56px;

  margin-bottom:15px;
}

.stat-box p{

  line-height:1.7;
}

/* BRANDS */

.brands-section{

  padding:120px 5vw;
}

.brands-grid{

  max-width:1200px;
  margin:auto;

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

  gap:25px;
}

.brand-card{

  padding:40px;

  border-radius:20px;

  background:white;

  border:
  1px solid rgba(0,0,0,0.06);

  text-align:center;

  font-size:32px;
  font-weight:700;

  color:var(--text);

  transition:0.3s;
}

.brand-card:hover{

  transform:translateY(-6px);

  color:var(--primary);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.08);
}

/* MOBILE */

@media(max-width:1000px){

  .why-grid,
  .stats-container,
  .brands-grid{

    grid-template-columns:1fr;
  }
}


/* PROJECTS */

.projects-section{

  padding:120px 5vw;
}

.projects-grid{

  max-width:1400px;
  margin:auto;

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

  gap:30px;
}

.project-card{

  position:relative;

  overflow:hidden;

  border-radius:28px;

  min-height:450px;

  cursor:pointer;
}

.project-card img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s;
}

.project-overlay{

  position:absolute;

  inset:0;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:40px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.75)
  );

  color:white;
}

.project-overlay h3{

  font-size:32px;

  margin-bottom:15px;
}

.project-overlay p{

  line-height:1.8;

  opacity:0.9;
}

.project-card:hover img{

  transform:scale(1.08);
}

/* MOBILE */

@media(max-width:1000px){

  .projects-grid{

    grid-template-columns:1fr;
  }

  .project-card{

    min-height:380px;
  }

}

/* CTA */

.cta-section{

  padding:120px 5vw;
}

.cta-box{

  max-width:1200px;
  margin:auto;

  padding:90px 60px;

  border-radius:40px;

  text-align:center;

  background:var(--primary);

  color:white;
}

.cta-box h2{

  font-size:
  clamp(42px,6vw,72px);

  margin:25px 0;
}

.cta-box p{

  max-width:700px;
  margin:auto;

  line-height:1.9;

  opacity:0.95;
}

/* FAQ */

.faq-section{

  padding:120px 5vw;
}

.faq-container{

  max-width:900px;
  margin:auto;

  display:flex;
  flex-direction:column;

  gap:20px;
}

.faq-item{

  background:white;

  border-radius:20px;

  overflow:hidden;

  border:
  1px solid rgba(0,0,0,0.06);
}

.faq-question{

  width:100%;

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

  padding:28px 30px;

  border:none;

  background:none;

  cursor:pointer;

  font-size:18px;
  font-weight:600;

  color:var(--text);
}

.faq-answer{

  max-height:0;

  overflow:hidden;

  transition:0.4s;
}

.faq-answer p{

  padding:0 30px 30px;

  line-height:1.8;

  color:var(--text-light);
}

.faq-item.active .faq-answer{

  max-height:200px;
}

/* CONTACT */

.contact-section{

  padding:120px 5vw;
}

.contact-grid{

  max-width:1400px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:50px;
}

.contact-form{

  display:flex;
  flex-direction:column;

  gap:20px;
}

.contact-form input,
.contact-form textarea{

  padding:20px;

  border-radius:16px;

  border:
  1px solid rgba(0,0,0,0.08);

  font-size:16px;

  font-family:inherit;
}

.contact-info{

  display:flex;
  flex-direction:column;

  gap:25px;
}

.contact-card{

  display:flex;
  gap:20px;

  padding:25px;

  border-radius:20px;

  background:white;

  border:
  1px solid rgba(0,0,0,0.06);
}

.contact-card i{

  font-size:28px;

  color:var(--primary);
}

.contact-info iframe{

  width:100%;
  height:320px;

  border:none;

  border-radius:24px;
}

/* MOBILE */

@media(max-width:1000px){

  .contact-grid{

    grid-template-columns:1fr;
  }

  .cta-box{

    padding:70px 30px;
  }

}


@media(max-width:768px){

  .burger{
    display:flex;
  }

  .nav-links{

    display:none;

    position:absolute;

    top:100%;
    left:0;

    width:100%;

    padding:30px;

    background:white;

    flex-direction:column;

    gap:24px;

    border-bottom:
    1px solid rgba(0,0,0,0.06);
  }

  .nav-links.active{

    display:flex;
  }

}

.faq-question span{

  transition:0.4s;

}

.faq-item.active .faq-question span{

  transform:rotate(45deg);

}

/* FOOTER */

footer{

  padding:100px 5vw 40px;

  background:#0d1b2a;

  color:white;
}

.footer-grid{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));

  gap:60px;
}

.footer-logo{

  font-size:34px;
  font-weight:700;

  margin-bottom:20px;
}

.footer-logo span{

  color:var(--secondary);
}

footer h3{

  margin-bottom:20px;

  font-size:22px;
}

footer p,
footer a{

  color:
  rgba(255,255,255,0.75);

  text-decoration:none;

  line-height:1.9;

  display:block;

  margin-bottom:10px;

  transition:0.3s;
}

footer a:hover{

  color:white;
}

.socials{

  display:flex;
  gap:15px;
}

.socials a{

  width:46px;
  height:46px;

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

  border-radius:50%;

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

  font-size:18px;
}

.socials a:hover{

  transform:translateY(-4px);

  background:var(--primary);
}

.footer-bottom{

  margin-top:70px;

  padding-top:30px;

  text-align:center;

  border-top:
  1px solid rgba(255,255,255,0.08);
}

.call-fixed{

  position:fixed;

  bottom:20px;
  right:20px;

  z-index:999;

  background:var(--primary);

  color:white;

  text-decoration:none;

  padding:16px 22px;

  border-radius:60px;

  display:flex;
  align-items:center;
  gap:10px;

  font-weight:600;

  box-shadow:
  0 10px 30px rgba(0,140,255,0.3);

  transition:0.3s;
}

.call-fixed:hover{

  transform:translateY(-4px);
}

.call-fixed i{

  font-size:18px;
}

@media(min-width:769px){

  .call-fixed{

    display:none;
  }

}

.contact-card a,
footer a{

  color:inherit;

  text-decoration:none;

}

.contact-card a:hover,
footer a:hover{

  color:var(--primary);
}

.contact-card a,
footer a{

  transition:0.3s;
}