body {
  background-color: #f4f8fb;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.header {
  background: linear-gradient(90deg, #0b3d6d, #1fa67a);
  color: white;
  padding: 18px 0;
}

body.pnp-about .header {
  padding: 20px;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 6px;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  text-decoration: none;
}

.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 109, 0.55);
}

.hero-content,
.hero .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

body.home .hero .hero-content {
  max-width: 700px;
}

.section-title {
  color: #0b3d6d;
  margin-top: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-card {
  border-radius: 20px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(31, 166, 122, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eaf8f4;
  color: #1fa67a;
  font-size: 24px;
  margin-bottom: 14px;
}

.gallery-img {
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.gallery-img:hover {
  transform: translateY(-6px);
}

.card-custom {
  border: none;
  border-left: 5px solid #1fa67a;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body.pnp-about .card-custom {
  border-radius: 10px;
  transition: 0.3s;
}

body.pnp-about .card-custom:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 22px;
  color: #1fa67a;
  margin-right: 10px;
}

.news-card {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  border: none;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 1050;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  display: inline-block;
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 18px;
}

.lightbox-close,
.lightbox-button {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-button:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.05);
}

.lightbox-close {
  top: 12px;
  right: 12px;
}

.lightbox-button {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-caption {
  margin-top: 14px;
  color: #f4f8fb;
  text-align: center;
  font-size: 0.95rem;
}

.contact-card {
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border: none;
  background: white;
}

.map-responsive {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}


.footer {
  text-align: left;
  padding: 48px 0;
  background: linear-gradient(180deg, #0b3d6d 0%, #123a6f 100%);
  color: #e8f3ee;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 1rem;
  line-height: 1.7;
}

.footer a {
  color: #c8f1dc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.footer .footer-link {
  margin-right: 18px;
  margin-bottom: 0;
}

.footer .footer-bottom {
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .footer {
    padding: 36px 0;
    font-size: 0.93rem;
  }
  .footer p,
  .footer .footer-bottom {
    font-size: 0.88rem;
  }
  .footer a {
    font-size: 0.9rem;
  }
  .footer .footer-social-link {
    font-size: 1rem;
  }
  .footer .text-md-end {
    text-align: left !important;
  }
  .footer .footer-link {
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .footer .footer-social-link {
    font-size: 1.5rem;
  }
}
.footer a {
  color: #b8e9d4;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

body.home .hero {
  min-height: 420px;
  border-radius: 0;
  background: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

body.gallery .hero {
  min-height: 300px;
  background: url('https://images.unsplash.com/photo-1496309264644-1d9a8da8e4c3?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

body.about .hero {
  background: url('https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

body.blogs .hero {
  background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

body.news .hero {
  background: url('https://images.unsplash.com/photo-1496309264644-1d9a8da8e4c3?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

body.contact .hero {
  background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

..navbar-toggler { border-color: rgba(255,255,255,0.7); }
.navbar-toggler-icon { filter: invert(1) brightness(1.6); }

.navbar-brand {
  flex-wrap: nowrap;
  min-width: 0;
}

.navbar-brand > div {
  min-width: 0;
}

.navbar-brand h1,
.navbar-brand p {
  white-space: normal;
}

@media (max-width: 767px) {
  .navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-brand {
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
  }

  .navbar-brand > div {
    min-width: 0;
  }

  .navbar-brand h1 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.15;
  }

  .navbar-brand p {
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .navbar-brand img.logo {
    width: 56px;
    height: 56px;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    margin-top: 0.75rem;
  }
}

.footer-links a {
  display: inline-block;
  margin-right: 18px;
}

.footer-social {
  margin-top: 0.75rem;
}

.footer-social-link {
  color: #c8f1dc;
  margin-left: 0.85rem;
    font-size: 1.5rem;

.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
