* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

.header {
  background: #1e3a8a;
  color: white;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.logo {
  height: 60px;
}

.site-title {
  font-size: 1.8rem;
  margin: 0;
}

.nav-bar {
  margin-top: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.main-content {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  margin-top: 140px;
}

.intro h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid figure {
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  width: 300px;
  height: 240px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #fff;
  display: block;
}

.footer {
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1e3a8a;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .logo {
    height: 50px;
  }

  .site-title {
    font-size: 1.2rem;
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
  }

  .main-content {
    padding: 20px 10px;
  }
}

/* ===============================
   SERVICES & CONTACT SECTION
================================= */
.services-section,
.contact-section {
  padding: 40px 20px;
  background-color: #f1f5f9;
  margin-top: 140px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.service-box,
.contact-box {
  background-color: white;
  padding: 30px 20px;
  border-left: 5px solid #1e3a8a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 20px auto;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-box a {
  color: #1e3a8a;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}


main {
  margin-top: 140px; /* adjust this value to match your header's height */
  padding: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 15px 0;
}




/* for about section  */
.about-section {
  margin-top: 140px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: auto;
}

.about-highlights {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.about-highlights li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.about-highlights li i {
  position: absolute;
  left: 0;
  color: #1e3a8a;
}


/* for team  */

.team-page {
  margin-top: 140px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #1e3a8a;
}

.team-role {
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.team-desc {
  font-size: 0.95rem;
  color: #555;
}


/* for footer  */

/* Make the page fill the viewport */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Flexbox layout to push footer to bottom */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Let main take remaining space */
main {
  flex: 1;
}


/* Client */

/* Clients Section */
.clients-section {
  padding: 40px 20px;
  background-color: #f1f5f9;
  text-align: center;
}

.clients-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1000px;
  margin: auto;
}

.client-card {
  background-color: white;
  padding: 20px 15px;
  border-left: 5px solid #1e3a8a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  max-width: 220px;
  transition: transform 0.2s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ========== PROJECTS SECTION ========== */
.projects-section {
  padding: 40px 20px;
  background-color: #f9fafc;
  text-align: center;
}

.projects-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  background: white;
  border-left: 5px solid #1e3a8a;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  transition: 0.2s ease-in-out;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-card h3 {
  color: #1e3a8a;
  margin-bottom: 10px;
}

.project-card ul {
  padding-left: 20px;
  list-style: disc;
}

.project-card li {
  color: #444;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: 1fr !important;
  }

  .client-card {
    max-width: 100%;
  }

  .team-page .team-grid {
    grid-template-columns: 1fr !important;
  }

  .team-card {
    margin: 0 auto;
    max-width: 300px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}


.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #1e3a8a;
}

.enquiry-form label {
  font-weight: bold;
  color: #333;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.enquiry-form button {
  padding: 12px;
  background: #1e3a8a;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.enquiry-form button:hover {
  background: #274ab6;
}

