/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #ffffff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------- HEADER ---------- */
header {
  background: #0c2340;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffb400;
}

/* menu toggle (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* ---------- HERO ---------- */
#hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('assets/img/hero.jpg') center/cover no-repeat; /* use your local image */
  color: white;
  text-align: center;
  padding: 140px 20px;
  position: relative;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #ffb400;
  color: #000;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background: #ff9f00;
  transform: scale(1.05);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #0c2340;
  margin-bottom: 40px;
}
.bg-light {
  background: #f9f9f9;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ---------- CONTACT SECTION ---------- */
.contact-block {
  text-align: center;
  padding: 60px 20px;
}
.contact-info {
  font-size: 1.2rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-info a {
  color: #0c2340;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.contact-info a:hover {
  color: #ffb400;
}
.contact-info a .fab.fa-whatsapp {
  color: #25D366;
}
.contact-note {
  color: #555;
  margin-top: 1rem;
  font-size: 1rem;
}

/* ---------- CLIENTS ---------- */
.clients-grid {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 20px 0;
  align-items: center;
}
.clients-grid::-webkit-scrollbar {
  display: none;
}
.clients-grid .client img {
  max-height: 60px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.clients-grid .client img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ---------- FOOTER ---------- */
footer {
  background: #0c2340;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

footer p {
  margin-bottom: 0.5rem;
}

footer .socials a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
footer .socials a:hover {
  color: #ffb400;
  transform: scale(1.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: #0c2340;
    width: 200px;
    display: none;
    padding: 1rem;
  }
  nav ul.show {
    display: block;
  }
  .menu-toggle {
    display: block;
  }
  .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}
