/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  color: #1a1a1a;
  line-height: 1.7;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* Headings */
h1 {
  color: #ffffff;
}

h2,
h3 {
  color: #522c09;
}

/* Header Section with Background Image */
.about-header {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/ZZ.jpg') no-repeat center center/cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: -15px;
}

.header-content p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}

.breadcrumb a {
  color: gold;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 5px;
}

/* About Section */
.about-section {
  background: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  padding: 60px 0;
}

.about-section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #000000;
}

.highlight {
  color: #a51414;
  font-weight: bold;
}

/* Mission & Vision Section */
.mission-vision {
  background: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  margin-top: -70px;
}

.mv-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.mv-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px;
  border-left: 5px solid #a72020;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mv-box h3 {
  margin-bottom: 15px;
}

.mv-box ul {
  padding-left: 20px;
  list-style-type: disc;
  font-size: 1rem;
  color: #444;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  padding: 20px 0;
  text-align: center;
}

.gallery-section h2 {
  margin: -30px 0 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #000;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer h3 {
  color: #d1240d;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.footer h4 {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #f5ebeb;
}

.footer p {
  margin: 6px 0;
  line-height: 1.5;
  font-size: 0.95rem;
  padding: 1px;
}

.footer p i {
  color: #d1240d;
  margin-right: 8px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

.footer form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 3px;
}

.footer button {
  background: #d1240d;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.footer button:hover {
  background: #b71c09;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  margin-top: 10px;
}

.branch {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-flex {
    flex-direction: column;
  }

  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .header-content h1 {
    font-size: 2.5rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .mv-box {
    padding: 20px;
  }
}