body {
  background-color: #ffffff; /* white background */
  color: #000000; /* black text */
  font-family: 'Segoe UI', sans-serif;
}

.container {
  background-color: #e0f7fa; /* soft turquoise like contact section */
  border-radius: 12px;
  margin: 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}
.container:hover {
  transform: scale(1.03);
}
.container-grid {
  padding: 20px 0;
}
.container-grid .row {
  padding: 0 15px;
}
.grid-left .row {
  flex-direction: row;
}
.grid-right .row {
  flex-direction: row-reverse;
}

.text {
  padding: 10px;
}

.images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.gallery-container {
  background-color: #e0f7fa;
  border-radius: 12px;
  margin: 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
  padding: 20px 15px;
}

.gallery-container:hover {
  transform: scale(1.03);
}

.gallery-title {
  background-color: transparent;
  color: #000000;
  text-align: left;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 1.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 10px;
  margin-bottom: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-text {
  padding: 10px;
  text-align: left;
}

.top-banner {
  background-color: #004d40; /* dark green */
  padding: 20px;
  text-align: center;
}

.top-banner .logo {
  max-height: 70px;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 600px; /* updated to 600px */
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-banner img.active {
  opacity: 1;
  z-index: 2;
}

.hero-banner h1 {
  position: relative;
  color: white;
  font-size: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  z-index: 3;
}

.section-title {
  background-color: transparent;
  color: #000000; /* black text */
  text-align: left;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.header-image img {
  max-height: 450px;
  object-fit: cover;
}

.contact-section {
  background-color: #e0f7fa; /* soft turquoise */
  padding: 30px;
  border-radius: 10px;
}

ul li {
  margin-bottom: 10px;
}

img {
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h2 {
  font-size: 1.75rem;
  margin: 0;
}

.footer-bg img {
  height: 100%;
  width: 100%;
}
