*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:'Poppins',sans-serif;
  background:#081225;
  color:white;
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 80px;
  z-index:1000;
  background:rgba(5,10,25,.75);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
  font-size:28px;
  font-weight:800;
  letter-spacing:1px;
  color:white;
}

.logo img{
  width:55px;
  height:55px;
  object-fit:contain;
}

.logo span{
  color:#C62828;
}

.nav{
  display:flex;
  gap:30px;
}

.nav a{
  position:relative;
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:.3s;
}

.nav a:hover{
  color:#C62828;
}

.nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#C62828;
  transition:.3s;
}

.nav a:hover::after{
  width:100%;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  background:
  linear-gradient(rgba(8,18,37,.75),rgba(8,18,37,.75)),
  url('images/hero.png');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:160px 20px 120px;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  background:#C62828;
  filter:blur(180px);
  opacity:.08;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:900px;
}

.hero-tag{
  display:inline-block;
  padding:10px 25px;
  background:#C62828;
  border-radius:50px;
  font-size:14px;
  margin-bottom:25px;
}

.hero h1{
  font-size:80px;
  line-height:1;
  margin-bottom:25px;
}

.hero h1 span{
  color:#C62828;
}

.hero p{
  font-size:22px;
  max-width:700px;
  margin:auto;
  opacity:.9;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
  justify-content:center;
}

.btn-primary,
.btn-secondary{
  padding:16px 32px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}

.btn-primary{
  background:#C62828;
  color:white;
}

.btn-secondary{
  border:2px solid white;
  color:white;
}

/* STATS */

.stats{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:0 8%;
  margin-top:-80px;
  position:relative;
  z-index:20;
}

.stat-box{
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.08);
  padding:35px;
  border-radius:20px;
  min-width:220px;
  text-align:center;
  transition:.3s;
}

.stat-box:hover{
  transform:translateY(-10px);
}

.stat-box h2{
  font-size:42px;
  color:#C62828;
  margin-bottom:10px;
}

.stat-box span{
  color:#ddd;
  font-size:15px;
}

/* SERVICES */

.services{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  margin-bottom:15px;
}

.section-title p{
  color:#ddd;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-card{
  background:#101d36;
  padding:40px;
  border-radius:20px;
  transition:.4s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card i{
  font-size:40px;
  color:#C62828;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
}

/* TEXTURES */

.texture-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1400px;
  margin:auto;
  padding:40px 8%;
}

.texture-item{
  background:#101d36;
  border-radius:20px;
  overflow:hidden;
  transition:.3s;
}

.texture-item:hover{
  transform:translateY(-10px);
}

.texture-item img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}

.texture-item h4{
  padding:20px;
  text-align:center;
}

/* FEATURED */

.featured-project{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:80px;
  padding:120px 8%;
  max-width:1400px;
  margin:auto;
}

.featured-image{
  flex:1;
  width:100%;
}

.featured-image img{
  width:100%;
  border-radius:25px;
  display:block;
}

.featured-image iframe{
  width:100%;
  height:500px;
  border:none;
  border-radius:25px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.featured-content{
  flex:1;
}

.project-tag,
.section-tag{
  display:inline-block;
  background:#C62828;
  padding:10px 20px;
  border-radius:50px;
  margin-bottom:20px;
  font-size:14px;
}

.featured-content h2{
  font-size:52px;
  margin-bottom:20px;
}

.featured-content p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:30px;
  color:#ddd;
}

/* GALLERY */

.gallery-section{
  padding:120px 8%;
  text-align:center;
}

.gallery-section h2{
  font-size:60px;
  margin-bottom:15px;
}

.gallery-section p{
  color:#ddd;
  margin-bottom:60px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  max-width:1400px;
  margin:auto;
}

.gallery-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:20px;
  transition:.4s;
  cursor:pointer;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* CONTACT */

.contact-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  padding:120px 8%;
  max-width:1400px;
  margin:auto;
}

.contact-section h2{
  font-size:52px;
  margin-bottom:25px;
}

.contact-section p{
  color:#ddd;
  line-height:1.8;
  margin-bottom:20px;
}

.location-cards{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-top:40px;
}

.location-card{
  background:#101d36;
  padding:25px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
}

.location-card h4{
  margin-bottom:10px;
  color:#C62828;
}

.contact-right iframe{
  width:100%;
  height:600px;
  border:none;
  border-radius:25px;
  overflow:hidden;
}

/* TABLET */

@media(max-width:1024px){

  .header{
    padding:20px 35px;
  }

  .hero h1{
    font-size:64px;
  }

  .texture-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .featured-project{
    gap:45px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */

@media(max-width:768px){

  .header{
    padding:14px 18px;
  }

  .nav{
    display:none;
  }

  .logo{
    font-size:21px;
    gap:10px;
    line-height:1.1;
  }

  .logo img{
    width:42px;
    height:42px;
  }

  .hero{
    min-height:auto;
    padding:130px 18px 90px;
    background-position:center;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-tag{
    font-size:11px;
    padding:9px 16px;
    margin-bottom:20px;
  }

  .hero h1{
    font-size:40px;
    line-height:1.08;
    margin-bottom:20px;
  }

  .hero p{
    font-size:16px;
    line-height:1.6;
    max-width:100%;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:15px;
    margin-top:32px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    max-width:280px;
    text-align:center;
  }

  .stats{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    padding:0 18px;
    margin-top:-40px;
  }

  .stat-box{
    width:100%;
    min-width:0;
    padding:30px;
  }

  .services,
  .gallery-section{
    padding:90px 18px;
  }

  .section-title{
    margin-bottom:40px;
  }

  .section-title h2,
  .gallery-section h2,
  .contact-section h2,
  .featured-content h2{
    font-size:38px;
    line-height:1.1;
  }

  .service-grid,
  .texture-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .texture-grid{
    padding:40px 18px;
  }

  .featured-project{
    flex-direction:column;
    gap:35px;
    padding:90px 18px;
    text-align:center;
  }

  .featured-image iframe{
    height:300px;
  }

  .contact-section{
    grid-template-columns:1fr;
    padding:90px 18px;
    gap:35px;
  }

  .contact-right iframe{
    height:350px;
  }

  .gallery-grid img{
    height:260px;
  }
}

/* SMALL PHONES */

@media(max-width:480px){

  .hero h1{
    font-size:34px;
  }

  .logo{
    font-size:18px;
  }

  .logo img{
    width:38px;
    height:38px;
  }

  .stat-box h2{
    font-size:36px;
  }

  .section-title h2,
  .gallery-section h2,
  .contact-section h2,
  .featured-content h2{
    font-size:32px;
  }
}
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:2000;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:10px;
  transition:.3s;
}

@media(max-width:768px){

  .hamburger{
    display:flex;
  }

  .nav{
    position:fixed;
    top:75px;
    right:-100%;
    width:100%;
    height:calc(100vh - 75px);
    background:#081225;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    transition:.4s;
  }

  .nav.active{
    right:0;
  }

  .nav a{
    font-size:22px;
  }

  .hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
  }
}
/* WORKING HAMBURGER MENU */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:3000;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:10px;
  transition:.3s;
}

@media(max-width:768px){

  .hamburger{
    display:flex !important;
  }

  .nav{
    position:fixed !important;
    top:74px;
    right:-100%;
    width:100%;
    height:calc(100vh - 74px);
    background:#081225;
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    transition:.4s ease;
    z-index:2500;
  }

  .nav.active{
    right:0;
  }

  .nav a{
    display:block;
    font-size:22px;
    color:white;
  }

  .hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
  }
}