/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #333;
}

/* Banner Section */
.banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1px 2px;
  border-radius: 5px;
}

.banner h1 {
  margin: 0;
  font-size: 1.5rem;
}

.banner p {
  margin: 10px 0 0;
  font-size: 1rem;
}

/* Contact Details Section */
.contact-details {
  padding: 10px 20px;
  text-align: center;
}

.contact-details h2 {
  color: #ff9100;
  margin-bottom: 20px;
  font-size: 25px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-box {
  background: #474646;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-box h3 {
  margin-bottom: 10px;
  color: #ff9100;
}

.contact-box p {
  margin: 0;
  font-size: 1rem;
  color: #ff9100;
}

.contact-box a {
  color: #ff9100;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 40px 20px;
  text-align: center;
}

.map-container {
  margin: 20px auto;
  border: 5px solid #ff9100;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1920px;
}
/* Footer Styles */
.footer {
  text-align: center;
  padding: 10px;
  background: #f4f4f4;
  color: #555;
}
@media (max-width: 768px) {
  .banner-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2px 1px;
    border-radius: 5px;
  }
}
