/* =========================
   GLOBAL
   ========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  background: #02133e;
  font-family: "Times New Roman", Times, serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* =========================
   NAVIGATION BAR
   ========================= */

.navbar {
  width: 100%;
  min-height: 80px;
  background: #cccccc;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 25px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* =========================
   BUSINESS NAME
   ========================= */

.logo {
  color: #02133e;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
}

.logo:hover {
  color: #000000;
}


/* =========================
   NAVIGATION LINKS
   ========================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;

  color: #02133e;
  background: transparent;

  text-decoration: none;

  font-size: 17px;
  font-weight: bold;

  padding: 12px 16px;

  border-radius: 5px;

  transition: 0.2s ease;

  white-space: nowrap;
}

.nav-links a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}


/* =========================
   BLUE CONTACT BUTTONS
   ========================= */

.contact {
  background: #02133e !important;
  color: #ffffff !important;
}

.contact:hover {
  background: #000000 !important;
  color: #ffffff !important;
}


/* =========================
   MOBILE MENU BUTTON
   ========================= */

.menu-button {
  display: none;

  background: #02133e;
  color: #ffffff;

  border: none;
  border-radius: 5px;

  padding: 10px 14px;

  font-family: "Times New Roman", Times, serif;
  font-size: 20px;

  cursor: pointer;
}


/* =========================
   PAGE CONTENT
   ========================= */

main {
  flex: 1;
  width: 100%;
}


/* =========================
   HOME BANNER
   ========================= */

.home-banner {
  width: 100%;
  height: 350px;

  margin: 0;
  padding: 0;

  position: relative;

  overflow: hidden;
}

.home-banner img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}


/* =========================
   BANNER CENTER TEXT
   ========================= */

.banner-title {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  color: #ffffff;

  font-family: "Times New Roman", Times, serif;

  font-size: 64px;
  font-weight: bold;

  text-align: center;

  white-space: nowrap;

  text-shadow:
    3px 3px 8px #000000,
    -3px -3px 8px #000000;

  z-index: 2;
}


/* =========================
   INTRO TEXT
   ========================= */

.intro-text {
  width: 100%;

  margin: 45px 0 25px;

  text-align: center;

  font-family: "Times New Roman", Times, serif;

  font-size: 36px;
  font-weight: 600;

  color: #ffffff;
}


/* =========================
   CHANGING IMAGE
   ========================= */

.changing-image {
  width: 80%;
  max-width: 1000px;

  margin: 0 auto 50px;

  display: flex;
  justify-content: center;
}

.changing-image img {
  width: 100%;
  height: 450px;

  object-fit: contain;

  display: block;

  border-radius: 12px;
}


/* =========================
   FOOTER
   ========================= */

.footer {
  width: 100%;

  background: #cccccc;
  color: #02133e;

  text-align: center;

  padding: 20px 15px;

  font-family: "Times New Roman", Times, serif;
  font-size: 16px;

  border-top: 2px solid #02133e;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

  .navbar {
    padding: 10px 20px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 10px 9px;
  }

  .home-banner {
    height: 280px;
  }

  .banner-title {
    font-size: 50px;
  }

  .intro-text {
    font-size: 30px;
  }

  .changing-image {
    width: 90%;
  }

  .changing-image img {
    height: 400px;
  }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

  .navbar {
    min-height: 70px;
    padding: 0 20px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;

    position: absolute;
    top: 70px;
    left: 0;

    width: 100%;

    background: #cccccc;

    flex-direction: column;
    align-items: stretch;

    padding: 10px 15px 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    font-size: 17px;
    padding: 13px;
    margin: 2px 0;
  }


  /* =========================
     FULL WIDTH PHONE BANNER
     ========================= */

  .home-banner {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .home-banner img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .banner-title {
    font-size: 34px;
    width: 90%;
    white-space: normal;
  }


  /* =========================
     MOBILE INTRO
     ========================= */

  .intro-text {
    font-size: 25px;
    margin: 35px 15px 20px;
    width: auto;
  }


  /* =========================
     MOBILE CHANGING IMAGE
     ========================= */

  .changing-image {
    width: 92%;
    margin-bottom: 35px;
  }

  .changing-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
  }


  /* =========================
     MOBILE FOOTER
     ========================= */

  .footer {
    font-size: 14px;
    padding: 18px 10px;
  }
}


/* =========================
   VERY SMALL PHONES
   ========================= */

@media (max-width: 380px) {

  .navbar {
    padding: 0 12px;
  }

  .logo {
    font-size: 17px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 11px;
  }

  .home-banner {
    width: 100%;
    height: auto;
  }

  .home-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .banner-title {
    font-size: 26px;
  }

  .intro-text {
    font-size: 21px;
  }

  .changing-image {
    width: 94%;
  }

  .changing-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
  }

  .footer {
    font-size: 13px;
  }
}
/* =========================
   SERVICES
   ========================= */

.services-list {
  width: 90%;
  max-width: 1000px;

  margin: 45px auto 60px;

  color: #ffffff;

  font-family: "Times New Roman", Times, serif;

  font-size: 24px;

  line-height: 1.6;
}

.services-list p {
  margin: 8px 0;
}

.services-list h2 {
  margin: 40px 0 15px;

  font-size: 34px;

  text-align: left;

  color: #ffffff;
}


/* =========================
   MOBILE SERVICES
   ========================= */

@media (max-width: 700px) {

  .services-list {
    width: 90%;

    font-size: 20px;

    line-height: 1.5;

    margin: 35px auto 45px;
  }

  .services-list h2 {
    font-size: 28px;

    margin-top: 30px;
  }

}
/* =========================
   ENQUIRY BUTTONS
   ========================= */

.enquiry-buttons {
  width: 100%;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 15px;

  padding: 10px 20px 60px;

  flex-wrap: wrap;
}

.enquiry-button {
  display: inline-block;

  padding: 16px 35px;

  background: #cccccc;
  color: #02133e;

  text-decoration: none;

  font-family: "Times New Roman", Times, serif;

  font-size: 20px;
  font-weight: bold;

  border-radius: 6px;

  transition: 0.2s ease;

  text-align: center;

  white-space: nowrap;
}

.enquiry-button:hover {
  background: #ffffff;

  color: #02133e;

  transform: translateY(-3px);
}


/* =========================
   MOBILE ENQUIRY BUTTONS
   ========================= */

@media (max-width: 600px) {

  .enquiry-buttons {
    gap: 10px;

    padding: 10px 15px 45px;
  }

  .enquiry-button {
    padding: 13px 20px;

    font-size: 17px;
  }

}


/* =========================
   VERY SMALL PHONES
   ========================= */

@media (max-width: 380px) {

  .enquiry-buttons {
    gap: 8px;

    padding: 10px 10px 35px;
  }

  .enquiry-button {
    padding: 11px 15px;

    font-size: 15px;
  }

}
/* =========================
   RECENT PROJECTS GALLERY
   ========================= */

.projects-gallery {
  width: 92%;
  max-width: 1400px;

  margin: 45px auto 60px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.projects-gallery img {
  width: 100%;
  height: 300px;

  object-fit: contain;

  display: block;

  background: #ffffff;

  border-radius: 12px;

  transition: 0.2s ease;
}

.projects-gallery img:hover {
  transform: scale(1.02);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    width: 92%;
  }

  .projects-gallery img {
    height: 280px;
  }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

  .projects-gallery {
    width: 92%;

    grid-template-columns: 1fr;

    gap: 15px;

    margin: 35px auto 45px;
  }

  .projects-gallery img {
    width: 100%;

    height: auto;

    max-height: 500px;

    object-fit: contain;

    border-radius: 10px;
  }

}


/* =========================
   VERY SMALL PHONES
   ========================= */

@media (max-width: 380px) {

  .projects-gallery {
    width: 94%;

    gap: 12px;
  }

  .projects-gallery img {
    border-radius: 8px;
  }

}
/* =========================
   REVIEWS
   ========================= */

.reviews-section {
  padding: 80px 20px;
}

.reviews-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-section .section-heading h2 {
  font-size: 42px;
  margin: 0 0 10px;
}

.reviews-section .section-heading p {
  font-size: 18px;
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}