*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#ffffff;
  color:#081420;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background:#020b18;
  z-index:9999;
}

.logo img{
  height:90px;
  width:auto;
  max-width:none;
  display:block;
  object-fit:contain;
}

.menu{
  display:flex;
  gap:35px;
  list-style:none;
}

.menu a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

.menu a:hover{
  color:#22d3ee;
}

.nav-btn{
  padding:14px 24px;
  border:1px solid #22d3ee;
  color:white;
  text-decoration:none;
  border-radius:10px;
}

.nav-btn:hover{
  background:#ef1f2d;
  border-color:#ef1f2d;
}

.hamburger{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:34px;
  cursor:pointer;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:180px 60px 100px;
  background:linear-gradient(135deg,#020b18 0%,#06233d 55%,#02101f 100%);
  color:white;
}

.hero-content{
  max-width:650px;
}

.small-title,
.section-title{
  color:#22d3ee;
  font-weight:700;
  letter-spacing:2px;
  display:block;
  margin-bottom:25px;
}

.hero h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:30px;
}

.hero p{
  color:#dbe7f5;
  line-height:1.8;
  font-size:20px;
  margin-bottom:40px;
}

.hero-btn{
  display:inline-block;
  background:#ef1f2d;
  color:white;
  text-decoration:none;
  padding:18px 30px;
  border-radius:10px;
  font-weight:600;
}

.hero-image img{
  width:700px;
  max-width:100%;
  height:auto;
  display:block;
  border-radius:24px;
}

/* STATS */

.stats-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  padding:40px 60px 90px;
  background:#020b18;
}

.stat-box{
  background:rgba(255,255,255,0.04);
  border-radius:22px;
  padding:40px 25px;
  text-align:center;
}

.stat-box h2{
  font-size:52px;
  color:#18d2e6;
  margin-bottom:12px;
}

.stat-box p{
  color:white;
}

/* ABOUT */

.about,
.about-content{
  padding:100px 60px;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:60px;
  align-items:center;
}

.about h2,
.services h2,
.portfolio h2,
.contact h2,
.about-content h2{
  font-size:44px;
  line-height:1.3;
  margin-bottom:25px;
}

.about p,
.about-content p{
  color:#5d6b7a;
  line-height:1.8;
}

.about-box{
  background:#061a33;
  color:white;
  padding:40px;
  border-radius:20px;
}

.about-box h3{
  margin-bottom:25px;
}

.about-box ul{
  list-style:none;
}

.about-box li{
  margin-bottom:15px;
  color:#dbe7f5;
}

/* SERVICES */

.services{
  padding:100px 60px;
  background:#f7f9fc;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.service-card{
  background:white;
  border:1px solid #e8edf3;
  padding:35px 25px;
  border-radius:18px;
}

.service-icon{
  font-size:42px;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
}

.service-card p{
  color:#5d6b7a;
  line-height:1.7;
}

/* PORTFOLIO */

.portfolio{
  padding:100px 60px;
}

.portfolio-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:50px;
}

.portfolio-btn{
  padding:16px 28px;
  border:1px solid #ef1f2d;
  color:#ef1f2d;
  text-decoration:none;
  border-radius:10px;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.portfolio-card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #e8edf3;
}

.portfolio-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.portfolio-card h3{
  padding:25px 25px 10px;
}

.portfolio-card p{
  padding:0 25px 25px;
  color:#5d6b7a;
}

/* CONTACT */

.contact{
  background:linear-gradient(90deg,#14b8c5,#0891b2);
  padding:70px 60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  color:white;
}

.contact p{
  line-height:1.8;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px;
  border:none;
  border-radius:10px;
  font-family:'Montserrat',sans-serif;
}

.contact-form textarea{
  min-height:140px;
  resize:none;
}

.contact-form button{
  background:#ef1f2d;
  color:white;
  border:none;
  padding:18px;
  border-radius:10px;
  font-weight:600;
}

/* FOOTER */

.footer{
  background:#020b18;
  color:white;
  padding:80px 60px 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:50px;
}

.footer-logo{
  font-size:34px;
  font-weight:800;
  margin-bottom:20px;
}

.footer-logo span{
  display:block;
  color:#22d3ee;
  letter-spacing:5px;
  font-size:15px;
}

.footer-column p,
.footer-column a{
  color:#dbe7f5;
  line-height:1.8;
  text-decoration:none;
}

.footer-column h3{
  margin-bottom:25px;
}

.footer-column ul{
  list-style:none;
}

.footer-column li{
  margin-bottom:14px;
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:10px;
  color:white;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:25px;
  text-align:center;
  color:#dbe7f5;
}

/* BACK TO TOP */

.back-to-top{
  position:fixed;
  right:25px;
  bottom:25px;
  width:55px;
  height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#22d3ee;
  color:white;
  text-decoration:none;
  font-size:28px;
  z-index:9999;
}

/* MOBILE */

@media(max-width:900px){

  .navbar{
    padding:14px 22px;
    flex-direction:row;
  }

  .logo img{
    height:65px;
    width:auto;
  }

  .hamburger{
    display:block;
  }

  .menu{
    display:none;
    position:absolute;
    top:93px;
    left:0;
    width:100%;
    background:#020b18;
    flex-direction:column;
    align-items:center;
    gap:22px;
    padding:30px 20px;
  }

  .menu.active{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

  .hero{
    padding:150px 25px 70px;
    flex-direction:column;
    text-align:center;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-image img{
    width:100%;
  }

  .about,
  .about-content,
  .contact{
    display:flex;
    flex-direction:column;
    padding:70px 25px;
    gap:30px;
  }

  .about h2,
  .services h2,
  .portfolio h2,
  .contact h2,
  .about-content h2{
    font-size:34px;
  }

  .services,
  .portfolio,
  .footer{
    padding-left:25px;
    padding-right:25px;
  }

  .services-grid,
  .portfolio-grid,
  .stats-section,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .portfolio-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .about-box{
    width:100%;
  }
@media(max-width:900px){
  .menu a{
    white-space:normal;
    text-align:center;
    line-height:1.3;
  }
/* MOBILE MENU TEXT FIX */

@media(max-width:900px){

  .menu li{
    width:100%;
  }

  .menu a{
    display:block;
    width:100%;
    text-align:center;
    white-space:normal;
    line-height:1.4;
    padding:10px 0;
  }

/* MOBILE MENU TEXT FIX */

@media(max-width:900px){

  .menu li{
    width:100%;
  }

  .menu a{
    display:block;
    width:100%;
    text-align:center;
    white-space:normal;
    line-height:1.4;
    padding:10px 0;
  }
.legal-page{
  padding:90px 60px;
  background:#f7f9fc;
}

.legal-content{
  max-width:1000px;
  margin:0 auto;
  background:white;
  padding:50px;
  border-radius:24px;
  border:1px solid #e8edf3;
}

.legal-content h2{
  color:#081420;
  font-size:28px;
  margin:35px 0 15px;
}

.legal-content p,
.legal-content li{
  color:#5d6b7a;
  font-size:17px;
  line-height:1.8;
}

.legal-content ul{
  padding-left:25px;
  margin-bottom:20px;
}

.legal-content a{
  color:#18d2e6;
  font-weight:600;
}

@media(max-width:900px){
  .legal-page{
    padding:60px 20px;
  }

  .legal-content{
    padding:30px 22px;
    border-radius:18px;
  }

  .legal-content h2{
    font-size:24px;
  }

  .legal-content p,
  .legal-content li{
    font-size:16px;
  }
/* Cookie Banner */

.cookie-banner{
  position:fixed;
  right:25px;
  bottom:25px;
  width:340px;
  background:#081420;
  color:white;
  padding:22px;
  border-radius:18px;
  display:none;
  flex-direction:column;
  gap:14px;
  z-index:99999;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
  border:1px solid rgba(24,210,230,.35);
}

.cookie-banner p{
  margin:0;
  color:white;
  font-size:14px;
  line-height:1.6;
}

.cookie-banner a{
  display:block;
  color:#18d2e6;
  font-weight:700;
  margin-top:6px;
}

.cookie-banner button{
  background:#18d2e6;
  color:#081420;
  border:none;
  padding:12px 20px;
  border-radius:10px;
  cursor:pointer;
  font-weight:800;
}

@media(max-width:768px){
  .cookie-banner{
    left:15px;
    right:15px;
    bottom:15px;
    width:auto;
  }
}