*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#fff;
  color:#222;
  overflow-x:hidden;
}

/* ================= PRELOADER ================= */

#preloader{
  position:fixed;
  top:0;
  left:0;

  width:100%;
  height:100vh;

  background:#000;

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:999999;

  overflow:hidden;

  transition:opacity 0.8s ease;
}

.preloader-logo{
  width:460px;
  height:auto;

  object-fit:contain;

  animation:classyZoom 3s ease-in-out forwards;

}

@keyframes classyZoom{

  0%{
    transform:scale(0.2);
    opacity:0;
  }

  40%{
    transform:scale(1);
    opacity:1;
  }

  60%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
    opacity:1;
  }

}

/* ================= NAVBAR ================= */

.navbar{
  position:fixed;
  top:0;
  left:0;

  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:22px 80px;

  z-index:1000;

  transition:0.4s;

  background:rgba(0,0,0,0.35);

  backdrop-filter:blur(8px);
}

/* Logo */

.logo-container{
  width:88px;
  height:88px;

  border-radius:50%;

  overflow:hidden;

  background:#f5f3f3;

  display:flex;
  justify-content:center;
  align-items:center;

  transition:0.3s;
}

.logo-container:hover{
  transform:scale(1.08);
}

.logo-img{
  width:102px;
  height:102px;

  object-fit:contain;

  display:block;
}

/* ================= NAV LINKS ================= */

.nav-links{
  display:flex;
  list-style:none;
}

.nav-links li{
  margin-left:35px;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#c8a96b;
}

/* ================= HERO ================= */

.hero{
  height:100vh;

  background:url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;

  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
}

.overlay{
  position:absolute;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;

  max-width:900px;

  padding:20px;

  animation:fadeUp 1.5s ease;
}

.hero-content h1{
  color:#fff;

  font-size:78px;

  line-height:1.15;

  margin-bottom:30px;

  font-weight:800;
}

.hero-content p{
  color:#ddd;

  font-size:22px;

  line-height:1.8;

  margin-bottom:40px;
}

/* ================= BUTTON ================= */

.btn{
  display:inline-block;

  padding:16px 42px;

  background:#c8a96b;

  color:#111;

  text-decoration:none;

  font-weight:700;

  border-radius:50px;

  transition:0.4s;
}

.btn:hover{
  transform:translateY(-4px);
  background:#fff;
}

/* ================= CONTACT ================= */

.contact-info{
  margin-top:20px;
  text-align:center;
  color:white;
  font-size:18px;
  line-height:1.8;
}

.contact-info p{
  margin:5px 0;
}

.contact-info a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.contact-info a:hover{
  color:#c8a96b;
}

/* ================= SECTIONS ================= */

.container{
  max-width:1250px;
  margin:auto;
}

.about,
.projects,
.why-us{
  padding:120px 80px;
}

.section-title{
  font-size:44px;
  font-weight:700;

  margin-bottom:35px;

  text-align:center;
}
/* ================= WHY CHOOSE US SLIDER ================= */

.why-us{
  padding:120px 0;
  background:#f5f5f5;
  overflow:hidden;
}

.why-us .section-title{
  text-align:center;
  font-size:56px;
  font-weight:700;
  margin-bottom:70px;
  color:#111;
}

.why-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.why-grid{
  display:flex;
  gap:30px;
  width:max-content;

  animation: scrollWhy 18s linear infinite;
}

.why-card{
  min-width:280px;
  height:140px;

  background:#000;
  color:#fff;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;
  font-weight:600;

  transition:0.4s;
}

.why-card:hover{
  background:#c8a96b;
  color:#000;
  transform:translateY(-10px);
}

@keyframes scrollWhy{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* About */

.about p{
  max-width:900px;

  margin:auto;

  text-align:center;

  color:#666;

  line-height:2;

  font-size:18px;
}

/* ================= PROJECTS ================= */

.projects{
  background:#f7f7f7;
}

.project-grid{
  margin-top:60px;

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

  gap:35px;
}

.card{
  background:#fff;

  overflow:hidden;

  border-radius:10px;

  box-shadow:0 10px 35px rgba(0,0,0,0.08);

  transition:0.4s;
}

.card:hover{
  transform:translateY(-12px);
}

.card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.card-content{
  padding:35px;
}

.card-content h3{
  margin-bottom:18px;
  font-size:26px;
}

.card-content p{
  color:#666;
  line-height:1.9;
}

/* ================= CTA ================= */

.cta{
  padding:130px 20px;

  background:#111;

  text-align:center;

  color:#fff;
}

.cta h2{
  font-size:52px;
  margin-bottom:35px;
}

/* ================= FOOTER ================= */

footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:28px;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .navbar{
    padding:20px;
    flex-direction:column;
  }

  .nav-links{
    margin-top:20px;
  }

  .hero-content h1{
    font-size:46px;
  }

  .hero-content p{
    font-size:18px;
  }

  .about,
  .projects,
  .why-us{
    padding:90px 25px;
  }

  .section-title{
    font-size:34px;
  }

  .cta h2{
    font-size:38px;
  }

  .nav-links{
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
  }
  /* ===== MOBILE NAVBAR FIX ===== */

@media(max-width:768px){

  .navbar{

    padding:15px 20px;

    flex-direction:column;

    gap:18px;
  }

  .logo-container{

    width:70px;
    height:70px;
  }

  .logo-img{

    width:75px;
    height:75px;
  }

  .nav-links{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

    margin-top:0;
  }

  .nav-links li{

    margin-left:0;
  }

  .nav-links a{

    font-size:16px;
  }

  .hero-content h1{

    font-size:58px;

    line-height:1.05;
  }

  .hero-content p{

    font-size:16px;

    line-height:1.7;

    padding:0 10px;
  }

  .btn{

    padding:15px 35px;

    font-size:16px;
  }

}

}