/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #004080;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}
header ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
header ul li {
  margin: 0 10px;
}
header ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  transition: background 0.3s;
}
header ul li a.active,
header ul li a:hover {
  background: #0073e6;
  border-radius: 5px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Page Header */
.page-header {
  background: #0073e6;
  color: white;
  text-align: center;
  padding: 40px 10px;
}
.page-header h1 {
  margin: 0;
  font-size: 28px;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
}
.hero img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
}
.hero-text h1 {
  margin: 0;
  font-size: 32px;
}
.hero-text p {
  font-size: 18px;
  margin: 10px 0;
}

/* Highlights */
.highlights {
  text-align: center;
  padding: 40px 20px;
}
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
}

/* Buttons */
.btn,
button {
  display: inline-block;
  padding: 10px 20px;
  background: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover,
button:hover {
  background: #0073e6;
}

/* Forms (Contact & Login) */
form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
form label {
  font-weight: 600;
}
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Floating Call & WhatsApp Buttons */
.call-float, .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: white;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 1000;
}
.call-float {
  bottom: 90px;          /* above WhatsApp */
  background: #0073e6;   /* Blue */
}
.whatsapp-float {
  background: #25d366;   /* Green */
}
.call-float:hover { background: #005bb5; }
.whatsapp-float:hover { background: #1ebe5d; }

/* Gallery Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}
.gallery figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  background: white;
  cursor: pointer;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery figcaption {
  text-align: center;
  padding: 8px;
  font-size: 14px;
  color: #333;
  background: #f8f9fa;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.lightbox .close:hover {
  color: #ddd;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 36px;
  user-select: none;
  transition: 0.3s;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover {
  color: #f1f1f1;
}

/* ✅ Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 28px; }
  .hero-text p { font-size: 16px; }
}

@media (max-width: 768px) {
  header ul {
    display: none;
    flex-direction: column;
    background: #004080;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
  }
  header ul.active {
    display: flex;
  }
  .menu-toggle { display: block; }

  .hero-text h1 { font-size: 24px; }
  .hero-text p { font-size: 14px; }
  form { width: 90%; padding: 15px; }
  .card { width: 100%; }
  .gallery img { height: 180px; }

  .call-float, .whatsapp-float {
    width: 70px;
    height: 70px;
    font-size: 30px;
    right: 15px;
  }
  .call-float { bottom: 100px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 20px; }
  .hero-text p { font-size: 13px; }
  .gallery img { height: 160px; }
}
