body { margin:0; font-family:'Lato', sans-serif; color:#333; }
nav { position:fixed; top:0; width:100%; background-color: #f7ead1; padding:15px; text-align:center; z-index:1000; }
nav a { margin:0 15px; text-decoration:none; color:#333; font-weight:600; }
nav a:hover { color:#c49b66; }

.book-btn {
  position: fixed;       
  top: 5px;             
  right: 5px;           
  background: #c49b66;  
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;        
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #a67c52;
}

.notice-btn {
  position: fixed;
  top: 6px;
  left: 5px; /* opposite of Book Now */
  background: #c49b66;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.whatsapp-pill {
  position: fixed;
  top: 5px;             
  right: 135px;     
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 8px;

  background: #25D366; /* WhatsApp green */
  color: #fff;
  font-weight: bold;
  font-size: 14px;

  border-radius: 30px; /* curved pill shape */
  padding: 10px 16px;
  text-decoration: none;

  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-pill img {
  width: 20px;
  height: 20px;
}

.whatsapp-pill:hover {
  transform: scale(1.05);
}

.info-pill {
  position: fixed;
  top: 4px;             
  left: 4px;     
  z-index: 3000;

  display: flex;
  align-items: center;
  gap: 8px;

  background:  #c49b66;  
  color: #fff;
  font-weight: bold;
  font-size: 14px;

  border-radius: 30px;
  padding: 10px 16px;
  cursor: pointer;
  border: none;

  transition: transform 0.3s ease;
}

.info-pill img {
  width: 20px;
  height: 20px;
}

.info-pill:hover {
  transform: scale(1.05);
}

/* Modal styling */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 4000;

  /* only used when opened */
  align-items: center;
  justify-content: center;
}


.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  margin-top: 0;
  text-align: center;
  color: #333;
}

.info-section {
  margin: 15px 0;
}

.info-section h3 {
  margin-bottom: 8px;
  color: #444;
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facility-card {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.facility-card strong {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-size: 1rem;
}

.facility-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items:center ;
  padding: 15px 30px;
  color: #000000;
}

.footer-bg {
    background-color: #494343;
}

.footer-left p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-right .icon {
  margin-left: 15px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-right .icon:hover {
  color: #ffd700; /* gold hover effect */
}

.facilities-hero {
background:url('Office.jpg') center/cover no-repeat; height:100vh; display:flex; align-items:center; justify-content:center; color:#faf3dd; position:relative;
}

.facilities-hero .hero-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 20px 40px;
  border-radius: 8px;
}

.facilities-hero h1 {
  color: #fff;
  font-size: 3rem;
}

.facilities-hero p {
  color: #f5f0e6;
  font-size: 1.4rem;
}

.facilities-intro {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  font-size: 1.2rem;
  color: #555;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.facility-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.facility-card ul {
  list-style-type: none;   /* removes default bullets */
  padding-left: 0;         /* removes extra indentation */
  margin: 0;               /* optional: tightens spacing */
}

.facility-card li {
  margin-bottom: 6px;      /* adds spacing between items */
}

.facility-card h2 {
  margin: 15px 0 10px;
}

.facility-card p {
  padding: 0 15px 20px;
  color: #666;
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .gallery-header h1 {
    font-size: 2rem;
  }

  .gallery-header p {
    font-size: 1rem;
  }

  .facilities-hero h1 {
    font-size: 2rem;
  }

  .facilities-hero p {
    font-size: 1rem;
  }

  .gallery-modal img {
    max-height: 50vh; /* smaller modal image on mobile */
  }

  .prev, .next {
    font-size: 1.5rem; /* smaller arrows */
  }
}