/* .hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa') no-repeat center center/cover;
} */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.card img {
  height: 250px;
  object-fit: cover;
}

/* ================= HERO VIDEO ================= */

.hero-video {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* modern mobile fix */
  overflow: hidden;
}

/* Background Video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px; /* navbar height */
}

/* ============about us====================  */
.about-bg {
  background: url("../about.png") no-repeat center center;
  background-size: cover;
  min-height: 600px;
  position: relative;
}

/* Dark Overlay for Text Visibility */
.about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.about-content {
  position: relative;
  z-index: 2;
  padding: 80px;
}

/* Text Styling */
.about-small-title {
  color: #ff4d4d;
  font-size: 22px;
}

.about-big-title {
  font-size: 56px;
  font-weight: 600;
  color: #000;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}

/* ================facilities==================== */
/* Section */
.facilities-modern {
  /* background: #6e3a3a; */
  background-color: #f5fbe6;
}

/* Title */
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #444444;
}

.section-subtitle {
  color: #444444;
  font-size: 16px;
}

/* Grid Layout */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Desktop 6 */
  gap: 25px;
}

/* Tablet */
@media (max-width: 991px) {
  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Design */
.facility-box {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.facility-box img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.facility-box h6 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* Hover Effect */
.facility-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
/* ===============================
   SITE PLAN SECTION
================================ */

.site-plan-section {
  background: #fff;
  padding: 80px 0;
}

/* Image Box */
.site-plan-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.site-plan-image img {
  transition: 0.4s ease;
  width: 100%;
}

/* Hover Zoom */
.site-plan-image:hover img {
  transform: scale(1.05);
}

/* Content Styling */
.site-plan-content h4 {
  font-size: 24px;
}

.site-features-list {
  list-style: none;
  padding-left: 0;
}

.site-features-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.site-features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-weight: bold;
}

/* ===============================
   LIGHTBOX STYLE
================================ */

.site-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.site-lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  animation: zoomEffect 0.3s ease;
}

.site-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
}

/* Zoom Animation */
@keyframes zoomEffect {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ==========location======= */
/* SECTION */
.location-dark-split {
  width: 100%;
  overflow: hidden;
}

/* LEFT */
.left-dark {
  background: #dbcea5;
  padding: 60px 60px;
}

.left-dark .row {
  display: flex;
  flex-wrap: wrap;
}
.left-dark .col-md-4,
.left-dark .col-6 {
  display: flex;
}
/* TITLE */
.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 15px;
  margin-bottom: 25px;
}

/* CARDS */
.location-card {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;

  /* IMPORTANT PART */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card i {
  font-size: 24px;
  margin-bottom: 8px;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* RIGHT IMAGE */
.right-color {
  background: #8e977d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 650px;
}

.map-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s ease;
  cursor: pointer;
  padding-top: 90px;
  /* transform: rotate(90deg); */
}

.map-img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ANIMATIONS */
.animate-fade {
  animation: fadeUp 0.8s ease forwards;
}

.animate-fade-delay {
  animation: fadeUp 1.2s ease forwards;
}

.animate-card {
  opacity: 0;
  transform: translateY(40px);
  animation: cardFade 0.8s ease forwards;
}

.animate-card:nth-child(1) {
  animation-delay: 0.2s;
}
.animate-card:nth-child(2) {
  animation-delay: 0.3s;
}
.animate-card:nth-child(3) {
  animation-delay: 0.4s;
}
.animate-card:nth-child(4) {
  animation-delay: 0.5s;
}
.animate-card:nth-child(5) {
  animation-delay: 0.6s;
}
.animate-card:nth-child(6) {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .left-dark {
    padding: 40px 20px;
  }
  .right-color {
    min-height: 400px;
  }
}

/* ==============contact us================== */

.contact-section {
  background: #ffffff;
}

.contact-title {
  font-size: 38px;
  font-weight: 600;
  color: #1d2b3a;
}

.contact-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box h5 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #e63946;
}

.contact-box p {
  color: #444;
  line-height: 1.7;
}

.contact-box iframe {
  border-radius: 10px;
}

/* =========image gallery========= */
.project-gallery {
  background: #ffffff;
}

.gallery-title {
  font-size: 36px;
  font-weight: 600;
}

.gallery-subtitle {
  color: #666;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 40px;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* =====payment======= */
.payment-plan-section {
  background: #f7f7f7;
}

.plan-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a8f3d;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #f4c542;
  margin: 8px auto 0;
}

/* Card */
.plan-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Header */
.plan-header {
  background: #333;
  color: #fff;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 14px;
}

/* Body */
.plan-body {
  padding: 15px;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.plan-row:last-child {
  border-bottom: none;
}

.highlight {
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Notes */
.plan-notes {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.plan-notes p {
  margin-bottom: 6px;
}
