/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #F4F6F8;
  color: #2C3E50;
  line-height: 1.6;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.brand {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.whatsapp-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  font-size: 22px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #F4F6F8);
  padding: 90px 40px;
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.badge {
  display: inline-block;
  background: #D6EAF8;
  color: #0A3D62;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #0A3D62;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #2C3E50;
  max-width: 520px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.hero-actions a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-actions .primary {
  background: #1E8449;
  color: #fff;
  box-shadow: 0 8px 20px rgba(30,132,73,0.35);
}

.hero-actions .primary:hover {
  background: #186A3B;
  transform: translateY(-2px);
}

.hero-actions .secondary {
  border: 2px solid #0A3D62;
  color: #0A3D62;
  background: transparent;
}

.hero-actions .secondary:hover {
  background: #0A3D62;
  color: #fff;
  transform: translateY(-2px);
}

.hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  padding: 70px 20px;
  background: #f7faf9;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-container h2 {
  font-size: 36px;
  color: #1e824c;
  margin-bottom: 10px;
}

.about-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-card h3 {
  color: #1e824c;
  margin-bottom: 12px;
  font-size: 22px;
}

.about-card p,
.about-card ul li {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.about-card ul {
  padding-left: 18px;
}

/* ===============================
   SERVICES SECTION
================================ */
.services-section {
  padding: 70px 20px;
  background: #ffffff;
}

.services-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.services-container h2 {
  font-size: 34px;
  color: #1e824c;
  margin-bottom: 10px;
}

.services-intro {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: #f7faf9;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
  text-align: left;
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-box h3 {
  color: #1e824c;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   GALLERY SLIDER
================================ */
.gallery-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-container h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery-intro {
  max-width: 720px;
  margin: 0 auto 45px;
  color: #555;
  font-size: 16px;
}

.gallery-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  padding: 10px 5px;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 80%;
  max-width: 80%;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* Desktop: Gallery Grid */
@media (min-width: 768px) {
  .gallery-slider {
    overflow: hidden;
  }
  .gallery-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .gallery-item {
    min-width: auto;
    max-width: 100%;
  }
  .gallery-item img {
    height: 220px;
  }
}

/* ===============================
   FINAL CTA
================================ */
.final-cta-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #1e824c, #27ae60);
  text-align: center;
  color: #fff;
}

.final-cta-container h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.final-cta-container p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.final-cta-btn {
  display: inline-block;
  background: #fff;
  color: #1e824c;
  padding: 15px 40px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta-btn:hover {
  background: #eafaf1;
}

/* ===============================
   RESPONSIVE HERO
================================ */
@media (max-width: 900px){
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions a {
    width: 100%;
    max-width: 280px;
  }
  .hero-img img {
    height: 320px;
  }
}
/* ===============================
   HERO SECTION (Image Background Fixed)
================================ */
.hero {
  width: 100%;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("images/WhatsApp Image 2025-12-22 at 8.45.06 PM.jpeg") center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
}

/* Gradient + Blur Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* Dark overlay for text readability */
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* HERO CONTENT ABOVE OVERLAY */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Hero Text */
.hero h1, .hero p, .badge {
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5); /* Soft shadow for readability */
 
}
 .badge {
  background-color:#d35725b0 ;
 }
/* Hero Buttons */
.hero-actions .primary {
  background: #28A745;  /* Brighter green for contrast */
  color: #fff;
  box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}
.hero-actions .primary:hover {
  background: #218838;
}
.hero-actions .secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.hero-actions .secondary:hover {
  background: #fff;
  color: #1e824c;
}

/* Hide side image on mobile */
@media (max-width: 900px){
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-img { display: none; }
  .hero {
    min-height: 450px;
    padding: 60px 20px;
  }
}
