/* ===== GLOBAL STYLES ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 60px 20px;
}

/* ===== BRAND COLORS ===== */
:root {
  --brand-blue: #003366;
  --light-bg: #f5f7fa;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--brand-blue);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  opacity: 0.8;
}

/* ===== HERO / HEADERS ===== */
.hero {
  background: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  color: var(--brand-blue);
  font-weight: 700;
}

.page-header {
  background: var(--brand-blue);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

/* ===== CARDS ===== */
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-title {
  font-weight: 600;
  color: var(--brand-blue);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-blue);
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
.card img {
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
}
/* ===== ICON & LINK POLISH ===== */
a {
  color: var(--brand-blue);
}

a:hover {
  text-decoration: underline;
}

/* WhatsApp Button */
.btn-success {
  background-color: #25D366;
  border: none;
}

.btn-success:hover {
  background-color: #1ebe5d;
}

/* Section Headings */
h4 {
  margin-bottom: 15px;
  color: var(--brand-blue);
}

/* Contact Page Spacing */
.contact-info p {
  margin-bottom: 10px;
}
/* ===== GALLERY ===== */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.08);
}
/* ===== GALLERY CATEGORIES ===== */
.gallery-category {
  margin-bottom: 50px;
}

.gallery-category h4 {
  margin-bottom: 20px;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Clickable Gallery */
.gallery-item img {
  cursor: pointer;
}

.gallery-item img:hover {
  opacity: 0.9;
}
/* ===== GALLERY IMAGE RESPONSIVENESS ===== */
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Tablet */
@media (min-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .gallery-item img {
    height: 220px;
  }
}

/* Extra Large Screens */
@media (min-width: 1200px) {
  .gallery-item img {
    height: 240px;
  }
}
/* ===== LIGHTBOX RESPONSIVE IMAGE ===== */
#modalImage {
  max-height: 90vh;
  width: auto;
}
@media (hover: hover) {
  .gallery-item img:hover {
    transform: scale(1.05);
  }
}

@media (hover: none) {
  .gallery-item img {
    transform: none;
  }
}
#modalImage {
  max-height: 90vh;
}
/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: #fff;
}
/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#page-loader img {
  width: 120px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
