/* Theme custom CSS */
body {
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(120deg, #4f46e5, #06b6d4);
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

/* SECTION BACKGROUNDS */
.bg-why { background: #f8fafc; }
.bg-services { background: #eef2ff; }
.bg-facilities { background: linear-gradient(120deg,#fdf2f8,#ecfeff); }
.bg-team { background: #f8fafc; }
.bg-privacy { background: #1e293b; color: white; }

/* CARDS */
.icon-box {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: .4s;
}
.icon-box:hover {
  transform: translateY(-8px);
}

.icon-box i {
  font-size: 15px;
  color: #4f46e5;
  margin-bottom: 15px;
}

/* TEAM */
.team img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.navbar .nav-link:hover {
  color: #4f46e5;
}

.offcanvas a:hover {
  color: #4f46e5;
}
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.bg-services {
  background: linear-gradient(135deg, #e0f2fe, #ccfbf1);
}

.service-icon {
  width: 84px;
  height: 84px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.icon-box:hover .service-icon {
  transform: scale(1.15) rotate(2deg);
}


/* Section gradient */
.bg-facilities {
  background: linear-gradient(135deg, #14532d, #16a34a, #22c55e);
}

/* Card */
.bg-facilities .icon-box {
  background: rgba(255,255,255,0.95);
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  height: 100%;
}

/* SVG Icons */
.facility-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation */
.icon-box:hover .facility-icon {
  transform: scale(1.2) rotate(3deg);
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.25));
}
.bg-facilities p {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Wrapper */
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image auto-fit magic */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* KEY: adjusts any image size */
  aspect-ratio: 4 / 3;   /* keeps grid uniform */
  padding: 10px;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
}
/* =====================
   DESKTOP NAVBAR
===================== */
.navbar-glass {
  background: linear-gradient(90deg, #ffffff, #ecfeff);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 14px !important;
}

.navbar-brand img {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Nav Links */
.navbar-nav .nav-link {
  padding: 10px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  color: #064e3b;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  background: linear-gradient(135deg, #bbf7d0, #86efac);
  color: #065f46;
  box-shadow: 0 6px 15px rgba(16,185,129,0.3);
}

/* Active underline */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 50%;
  left: 25%;
}
/* =====================
   MOBILE OFFCANVAS
===================== */
.offcanvas {
  background: linear-gradient(180deg, #ecfeff, #f0fdf4);
}

.offcanvas-header {
  border-bottom: 1px solid #d1fae5;
}

.offcanvas-title {
  color: #065f46;
}

.offcanvas-body a {
  display: block;
  padding: 12px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile menu hover */
.offcanvas-body a:hover {
  background: linear-gradient(135deg, #bbf7d0, #86efac);
  padding-left: 22px;
}

/* Icons color */
.offcanvas-body i {
  color: #16a34a;
}

/* Contact section */
.offcanvas .small {
  background: rgba(255,255,255,0.8);
  padding: 15px;
  border-radius: 14px;
}

/* Google-style masonry */
.google-gallery {
  column-count: 3;
  column-gap: 16px;
}

@media (max-width: 992px) {
  .google-gallery {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .google-gallery {
    column-count: 1;
  }
}

/* Image cards */
.gallery-link {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-link img {
  width: 100%;
  height: auto;              /* KEY: no distortion */
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover effect like Google */
.gallery-link:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}
/* Why Choose Us cards */
.bg-why .icon-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bg-why .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(22,163,74,0.25);
}

/* Main icon */
.bg-why .icon-box > i {
  font-size: 42px;
  color: #16a34a;
  margin-bottom: 12px;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #334155;
}

.feature-list li i {
  color: #22c55e;
  margin-top: 3px;
}

/* Service cards */
.bg-services .icon-box {
  background: #ffffff;
  padding: 32px 22px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bg-services .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(22,163,74,0.25);
}

/* SVG icon */
.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

/* Service list */
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  text-align: left;
}

.service-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #334155;
}

.service-list li i {
  color: #22c55e;
  margin-top: 3px;
}

/* Facility cards */
.bg-facilities .icon-box {
  background: rgba(255,255,255,0.95);
  padding: 32px 22px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bg-facilities .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(22,163,74,0.35);
}

/* Facility icon */
.facility-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

/* Facility list */
.facility-list {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  text-align: left;
}

.facility-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #1f2937;
}

.facility-list li i {
  color: #16a34a;
  margin-top: 3px;
}

/* =====================
   HERO
===================== */
.services-hero {
  background: linear-gradient(135deg, #14532d, #16a34a, #22c55e);
  color: white;
  padding: 100px 0;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.services-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

/* =====================
   SERVICE CARDS
===================== */
.service-section {
  background: #f0fdf4;
}

.service-card {
  background: white;
  border-radius: 22px;
  padding: 40px 28px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(22,163,74,0.3);
}

/* SVG icon */
.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

/* Bullet list */
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.service-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.service-list li i {
  color: #16a34a;
  margin-top: 3px;
}

/* =====================
   CTA
===================== */
.services-cta {
  background: linear-gradient(135deg, #ecfeff, #f0fdf4);
}

.services-cta h3 {
  font-weight: 700;
}

/* Service Intro Section */
.bg-service-intro {
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

.bg-service-intro h2 {
  font-weight: 700;
  color: #065f46;
}

.bg-service-intro .lead {
  font-size: 1.05rem;
  color: #1f2937;
}

/* Service points */
.service-points p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #374151;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.service-points i {
  color: #16a34a;
  margin-top: 3px;
}
.bg-service-intro {
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

.bg-service-intro h2 {
  font-weight: 700;
  color: #065f46;
}

.bg-service-intro .lead {
  font-size: 1.05rem;
  color: #1f2937;
}

/* Service list */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.96rem;
  color: #374151;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.service-list li i {
  color: #16a34a;
  margin-top: 3px;
}
/* Section background */
.bg-service-intro {
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

/* Column card */
.service-column-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift */
.service-column-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(22,163,74,0.25);
}

/* Service list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 0.96rem;
  color: #374151;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}

/* Icon */
.service-list i {
  color: #16a34a;
  margin-top: 3px;
}

.footer-section {
  background: linear-gradient(135deg, #064e3b, #065f46);
  color: #e5e7eb;
  padding: 60px 0 30px;
}

.footer-logo {
  width: 60px;
  height: auto;
  border-radius: 8px;
}

.footer-brand h5 {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #d1fae5;
}

/* Titles */
.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #d1fae5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 8px;
  color: #ffffff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  background: #22c55e;
  transform: translateY(-4px);
}

/* Contact icons */
.footer-contact i {
  color: #22c55e;
  margin-right: 8px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #d1fae5;
}

/* =====================
   HERO
===================== */
.contact-hero {
  background: linear-gradient(135deg, #14532d, #16a34a, #22c55e);
  color: white;
  padding: 90px 0;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* =====================
   CONTACT CARDS
===================== */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(22,163,74,0.3);
}

.contact-card i {
  font-size: 36px;
  color: #16a34a;
  margin-bottom: 12px;
}

/* =====================
   FORM
===================== */
.contact-form {
  background: white;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.contact-form h4 {
  font-weight: 700;
  color: #065f46;
}

.form-control {
  border-radius: 12px;
}

/* =====================
   MAP
===================== */
.map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  border: 0;
}