
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
     background: #1a1a1a;
  color: white;
  padding: 8px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
background: #111;
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/bg.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background: #FCD116;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  display: flex;
  align-items: center;
justify-content: flex-end;
  height: 80vh;
  padding: 0 60px;

  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/bg.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: bold;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #FCD116;
  padding: 12px 25px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  transform: scale(1.05);
}
.services {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.service-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  margin: 15px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0038A8;
}
.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.logo img {
  height: 50px;
  width-fit:auto;
}
.logo {
  display: flex;
  align-items: center;
}
.why-us {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
}

.why-us h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.why-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.why-box {
  background: white;
  padding: 25px;
  margin: 15px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.why-box:hover {
  transform: translateY(-10px);
}
.projects {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}

.projects h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project-container img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.project-container img:hover {
  transform: scale(1.05);
}
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-box p {
  margin: 10px 0;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-box {
  max-width: 250px;
  margin: 15px;
}

.footer-box h3 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 10px;
}
.footer-logo {
  height: 60px;
  display: block;
  margin-bottom: 10px;
}
.hero {
  height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  background: #f4b400;
  color: black;
  text-decoration: none;
  margin: 5px;
  border-radius: 5px;
}

.btn.whatsapp {
  background: #25D366;
  color: white;
}
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
}
.stats {
  background: #111;
  color: white;
  padding: 60px 20px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.stat-box {
  margin: 20px;
}

.stat-box h2 {
  font-size: 40px;
  color: #f4b400;
}

.stat-box p {
  font-size: 18px;
}
/* SCROLL ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}
/* STICKY NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

/* SCROLL SHADOW */
.navbar.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.about {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  width: 50%;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.about-image {
  width: 45%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}
.services-detail {
  padding: 80px 20px;
  background: #ffffff;
}

.services-detail h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.service-item {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border-left: 4px solid #f4b400;
  background: #f9f9f9;
  border-radius: 5px;
}

.service-item h3 {
  margin-bottom: 10px;
}

.service-item p {
  color: #555;
  line-height: 1.6;
}
.services-detail {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.detail-box {
  background: white;
  margin: 15px auto;
  padding: 20px;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.detail-popup {
  margin: 40px auto;
  padding: 20px;
  max-width: 700px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.testimonials {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  /* Hero text */
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  /* About section */
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  /* Services cards */
  .service-container {
    grid-template-columns: 1fr;
  }

  /* Projects */
  .project-container {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-container {
    flex-direction: column;
  }

}
.services {
  padding: 80px 20px;
  background: linear-gradient(to right, #f9f9f9, #eef2f7);
  text-align: center;
}

.services h2 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #777;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card i {
  font-size: 42px;
  color: #007bff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.service-card:hover i {
  color: #00c6ff;
}
/* FULL MOBILE FIX */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Prevent any element overflow */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Images fix */
img {
  max-width: 100%;
  height: auto;
}

/* Hero section fix */
.hero {
  width: 100%;
  overflow: hidden;
}

/* Container fix */
.container, .services-container, .project-container {
  width: 100%;
}
/* ===== FINAL MOBILE FIX ===== */
@media (max-width: 768px) {

  /* Prevent sideways scroll */
  html, body {
    overflow-x: hidden;
  }

  /* Services full width (1 column) */
  .services-container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 0 10px;
  }

  .service-card {
    width: 100%;
  }

  /* Fix hero text */
  .hero h1 {
    font-size: 22px;
    text-align: center;
  }

  .hero p {
    font-size: 14px;
    text-align: center;
  }

  /* Buttons vertical */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Projects fix */
  .project-container {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 20px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }
}
.hero-content {
  max-width: 90%;
  margin: auto;
}
