* {margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif;}

body {background:#f7f7f7; color:#222;}
.logo a {
  color: #0073ff;
  text-decoration: none;
}
.container {width:90%; max-width:1200px; margin:auto;}
.section {
  padding: 21px 0px;
}
/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  text-align: center;
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color:#0073ff;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color:#444;
}

/* Responsive */
@media(max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.header {
  background:#ffffff;
  padding:18px 0;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  position:sticky;
  top:0;
  z-index:999;
}

.header-inner {display:flex; justify-content:space-between; align-items:center;}

.logo {font-size:28px; font-weight:600; color:#0073ff;}

.navbar a {
  margin-left:22px;
  text-decoration:none;
  color:#222;
  font-weight:500;
}

.navbar a:hover {color:#0073ff;}

.hero {
  background:url('/assets/images/banner.jpg') center/cover no-repeat;
  padding:120px 0;
  text-align:center;
  color:#fff;
}

.hero h1 {font-size:48px; font-weight:600;}
.hero p {margin-top:15px; font-size:20px;}

.btn {
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;
  background:#0073ff;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
}


.service-box {
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  margin-bottom:25px;
}

.footer {
  background:#000;
  color:#fff;
  padding:50px 0 30px;
}

.footer-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.footer h3 {margin-bottom:10px;}

.footer a {color:#fff; text-decoration:none;}
.footer a:hover {text-decoration:underline;}


/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align:center;
}

/* RECENT WORK */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* TESTIMONIAL */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.test-box {
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.15);
  text-align:center;
  font-size:16px;
}

/* CONTACT SHORT */
.contact-short {
  text-align:center;
  background:#0073ff;
  color:#fff;
  padding:60px 20px;
  border-radius:10px;
  margin:40px auto;
}

/* TESTIMONIAL SECTION */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #0073ff;
}

.stars {
  font-size: 20px;
  margin: 5px 0 12px;
  color: #ffcc00;
}

.testimonial-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0073ff;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media(max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT CTA SECTION */
.contact-cta {
  background: linear-gradient(135deg, #0073ff, #003d99);
  color: #fff;
  padding: 80px 0;
  margin-top: 60px;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 600;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.cta-details p {
  font-size: 17px;
  margin-bottom: 6px;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #0073ff;
}

.cta-image img {
  width: 380px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-image img {
    width: 80%;
  }
}
/* Header Base */
.header {
  background:#ffffff;
  padding:15px 0;
  box-shadow:0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top:0;
  z-index:9999;
}

.header-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  font-size:28px;
  font-weight:600;
  color:#0073ff;
}

.navbar a {
  margin-left:22px;
  text-decoration:none;
  color:#222;
  font-weight:500;
}

.navbar a:hover {
  color:#0073ff;
}

/* Hamburger Icon */
.hamburger {
  display:none;
  font-size:26px;
  cursor:pointer;
  color:#0073ff;
}

/* MOBILE MENU */
.mobile-menu {
  display:none;
  position:fixed;
  top:70px;
  right:0;
  width:70%;
  background:#ffffff;
  height:100vh;
  padding:30px 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition:0.3s ease;
}

.mobile-menu a {
  display:block;
  padding:14px 0;
  border-bottom:1px solid #eee;
  font-size:18px;
  text-decoration:none;
  color:#333;
}

.mobile-menu.open {
  display:block;
}

/* Mobile Responsive */
@media(max-width: 900px) {
  .navbar {
    display:none;
  }.hero {
  padding: 38px 0;
}
  .hero h1 {
  font-size: 37px;
  font-weight: 600;
}
  .hamburger {
    display:block;
  }
}

