* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Manrope, Arial, sans-serif;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url(../images/Banner/gallery.jpg) no-repeat center center !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 80px;
  overflow: hidden;
  background-color: #161515;
  color: #fff;

  background-size: cover !important;
  height: 450px;
  position: relative;
  display: flex;
}

/* TEXT */
/* .banner-content {
  color: #fff;
  z-index: 2;
} */

.banner-content h1 {
  font-size: 85px;
  color: #fff;
  font-weight: bold;
}

.banner-content p {
  font-size: 18px;
}

.banner-content span {
  margin: 0 10px;
}

/* IMAGE */
.banner-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 100%;
  background: #000; /* black background */
  padding: 0 20px;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .banner {
    padding: 40px;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px 20px;
  }

  .banner-content h1 {
    font-size: 40px;
  }

  .banner-image {
    position: relative;
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

.page-banner-con {
  background: url(../images/background/9.png) no-repeat center center !important;
  background-size: cover !important;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner-con h1 {
  position: relative;
  color: #ffffff;

  font-weight: 600;
  line-height: 1.2em;
  margin-top: 75px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 5%;
}

.breadcrumb-con {
  position: absolute;
  top: 30px;
  left: 60px;
  color: white;
  font-size: 14px;
}

.breadcrumb-con a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-con .arrow-con {
  margin: 0 8px;
}
@media (max-width: 767px) {
  .breadcrumb-con {
    margin-left: -50px;
  }
  .page-banner-con {
    margin-top: 30px;
  }
  .page-banner-con h1 {
    font-size: 35px;
  }
}

.cd h1 {
  padding-top: 80px;
  font-size: 35px;
  font-family: Roboto, sans-serif;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;

  font-weight: 500;
}

.gallery {
  display: flex;
  flex-wrap: wrap; /* 🔥 important */
  justify-content: center;
  width: 80%;
  margin-left: 10%;
}

.item {
  width: 32%; /* 3 items per row */
  padding-left: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.box {
  padding: 20px;
  text-align: center;

  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #c6c6c67d;
  border-radius: 5px 5px 5px 5px;
  overflow: hidden;
}

.box img {
  width: 100%;
  height: auto;
  transform: scale(1.1);
}

.name {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  font-family: Roboto,sans-serif !important;
  color: #4a5257;
}

/* ✅ Responsive */

/* Tablet */
@media (max-width: 992px) {
  .item {
    width: 45%; /* 2 per row */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .item {
    width: 100%; /* 1 per row */
  }
}


