body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.slider {
  position: relative;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.active {
  display: block;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0,0,0,0.8);
}

main {
  padding: 30px;
  text-align: left;
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
}

h2 {
  margin-top: 0;
  font-size: 32px;
  color: #222;
}

h3 {
  color: #444;
  font-size: 24px;
}

ul {
  padding-left: 20px;
}
/* ====== Gallery Styling ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* Exactly 3 images per row */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
/* ===== Footer ===== */
.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #f9c431;
  border-bottom: 2px solid #f9c431;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-box p,
.footer-box a {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-box a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}
header {
      background-color: #222;
      color: white;
      padding: 20px;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    .logo-text {
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }

    .contact-box a {
      color: orange;
      text-decoration: none;
    }

/* Logo styling */
.logo-text {
  font-size: 24px;
  font-weight: 800; /* Extra bold */
  color: white;
}

/* Navigation links */
header nav {
  display: flex;
  gap: 25px;
}

header nav a {
  text-decoration: none;
  color:white;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a.bold-link {
  font-weight: 700; /* Bold for Home & About Us */
}

header nav a:hover {
  color: #e91e63;
}

/* Contact email box */
.contact-box {
  background-color: #fdd835;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.contact-box a {
  text-decoration: none;
  color: #000;
}
