/* =================== GALLERY BANNER SECTION =================== */
.gallery-banner {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.gallery-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  text-align: left;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.breadcrumb i {
  color: skyblue;
  font-size: 1rem;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #fff;
}

.breadcrumb p {
  margin: 0;
  color: #ccc;
}

/* =================== OUR PROJECTS =================== */
.projects {
  padding: 30px 7%;
  background: #fff;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.project-card {
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 250px;
  display: block;
}

/* CONTACT SECTION */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT */
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4d4d4;
  margin-bottom: 1rem;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* BUTTON */
.btn2 {
  display: inline-block;
  background: #fff;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn2 i {
  margin-right: 10px;
  color: skyblue;
  font-size: 1.1rem;
}

.btn2:hover {
  background: rgb(58, 195, 250);
  color: #fff;
}

/*========================== Responsive Design =====================================*/
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    text-align: center;
    padding: 1rem 0;
    display: none;
  }

  .nav-links a {
    color: black;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .gallery-banner {
    height: 250px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .projects {
    padding: 80px 6%;
  }

  .projects .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .project-card img {
    height: 220px;
  }
  .contact-hero {
    height: 80vh;
  }

  .title {
    font-size: 1.8rem;
  }

  .btn2 {
    padding: 0.9rem 2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer {
    padding: 60px 6% 25px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 600px) {
  .navbar .logo{
    font-size: 1rem;
  }
  .gallery-banner {
    height: 180px;
  }

  .banner-content {
    padding-left: 5%;
  }

  .banner-content h1 {
    font-size: 1.7rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .projects {
    padding: 20px 4%;
  }

  .projects .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-card img {
    height: 300px;
  }
.title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .btn2 {
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 50px 5% 20px;
  }

  .footer-column h3 {
    font-size: 1.1rem;
    display: inline-block;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
}