* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f8fc;
  color: #1f2933;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0b5ed7;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 23, 54, 0.75);
}

.hero-content {
  position: relative;
  padding: 60px;
  max-width: 700px;
  color: #fff;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  margin-top: 15px;
  color: #dbe7ff;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}

.light { background: #fff; }
.dark { background: #0b1220; color: #fff; }

.container {
  max-width: 1100px;
  margin: auto;
}

.two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}

.two-col img {
  width: 45%;
  border-radius: 14px;
}

/* SERVICES */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 16px;
}

/* PROJECTS */
.projects-section {
  background: #fff;
  padding: 80px 20px;
}

.projects-section.hidden {
  display: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.project-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border-top: 6px solid #1f5eff;
}

.project-card.restaurant { border-color: #ff8c42; }
.project-card.grocery { border-color: #2bb673; }
.project-card.salon { border-color: #9b6bff; }

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

/* INDUSTRIES */
.industries-section {
  background: #f6f9ff;
  padding: 80px 20px;
  text-align: center;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industry {
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 600;
}

.industry.retail { background:#eaf2ff; color:#1f5eff; }
.industry.food { background:#fff1e6; color:#ff8c42; }
.industry.service { background:#eefcf4; color:#2bb673; }
.industry.local { background:#f3efff; color:#7a5cff; }

/* CONTACT */
.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  background: #f6f9ff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #0b1220;
  color: #aab4c6;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 30px;
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

  .two-col {
    flex-direction: column;
  }

  .two-col img {
    width: 100%;
    margin-top: 20px;
  }

  .projects-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   HERO – MOBILE CENTER FIX
========================= */
@media (max-width: 768px) {

  .hero-content {
    text-align: center;
    padding: 30px 20px;
    margin: auto;
  }

  .btn-primary {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   SERVICES – MOBILE CENTER
========================= */
@media (max-width: 768px) {

  #services h2 {
    text-align: center;
  }

  #services .cards {
    justify-items: center;
  }

  #services .card {
    text-align: center;
  }
}
/* =========================
   SERVICE CARD COLORS
========================= */
#services .card:nth-child(1) {
  background: linear-gradient(135deg, #eaf2ff, #ffffff);
  border-left: 5px solid #1f5eff;
}

#services .card:nth-child(2) {
  background: linear-gradient(135deg, #eefcf4, #ffffff);
  border-left: 5px solid #2bb673;
}

#services .card:nth-child(3) {
  background: linear-gradient(135deg, #fff1e6, #ffffff);
  border-left: 5px solid #ff8c42;
}

#services .card:nth-child(4) {
  background: linear-gradient(135deg, #f3efff, #ffffff);
  border-left: 5px solid #7a5cff;
}

#services .card h3 {
  color: #0b2545;
}

#services .card p {
  color: #4f5f78;
}
/* =========================
   PROJECTS – MOBILE CENTER
========================= */
@media (max-width: 768px) {

  .projects-section h2,
  .projects-section .section-subtitle,
  .projects-section .note {
    text-align: center;
  }

  .projects-grid {
    justify-items: center;
  }

  .project-card {
    text-align: center;
  }
}
/* Slight hover polish */
#services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}


