/* =====================================================
   GLOBAL BASE STYLES
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  color: #01060c;
  /* dark charcoal */
}


/* =====================================================
   NAVBAR – BRAND & LOGO
===================================================== */

/* Brand wrapper */
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Company name */
.brand-gradient {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #198754, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slogan */
.brand-slogan {
  font-size: 0.72rem;
  font-weight: 500;
  background: linear-gradient(135deg, #198754, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.4px;
}

/* =====================================================
   NAVBAR – LINKS
===================================================== */
.navbar .nav-link {
  position: relative;
  margin-left: 10px;
  color: #333;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #198754;
}

/* Underline hover effect */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #198754;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* =====================================================
   HERO SECTION
===================================================== */
/* HERO SECTION */
/* HERO WOW */
/* =====================================================
   HERO SECTION – CLEAN & FINAL
===================================================== */

.hero-wow {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  /* navbar offset */
  color: #ffffff;
  overflow: hidden;
}

/* Background Image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-wow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(15, 81, 50, 0.9));
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 201, 151, 0.18);
  color: #3aff9c;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

/* Heading */
.hero-wow h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

/* Paragraph */
.hero-wow p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto;
}

/* Buttons */
.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Secondary link */
.hero-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.hero-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #3aff9c;
  left: 0;
  bottom: -4px;
}

/* Stats – ALWAYS HORIZONTAL */
.hero-stats {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.hero-stats>div {
  text-align: center;
  min-width: 90px;
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 1;
}

.shape-1 {
  width: 260px;
  height: 260px;
  background: #20c997;
  top: 10%;
  left: -80px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: #198754;
  bottom: -100px;
  right: -100px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator span {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    top: 6px;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 18px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .hero-wow h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-wow {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-wow h1 {
    font-size: 2rem;
  }

  .hero-wow p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats strong {
    font-size: 1.3rem;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-wow h1 {
    font-size: 1.7rem;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stats strong {
    font-size: 1.15rem;
  }
}

/* FORCE REMOVE ANY UNWANTED ICONS */
.hero-stats i,
.hero-stats svg {
  display: none !important;
}


/* ABOUT SECTION */
/* ABOUT SECTION */
.about-section {
  background: #f8fdfb;
}

.section-title {
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.about-text {
  color: #374151;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* BADGE */
.about-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ABOUT CARD */
.about-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  border-left: 4px solid #198754;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.about-card h5 {
  font-weight: 700;
  color: #198754;
  margin-bottom: 8px;
}

.about-card p {
  color: #374151;
  font-size: 0.95rem;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25, 135, 84, 0.2);
}

/* TOP RIGHT ICON */
.about-icon.top-right {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.about-card:hover .about-icon.top-right {
  background: #198754;
  color: #ffffff;
  transform: scale(1.1);
}

/* SCROLL ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .about-icon.top-right {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    top: 14px;
    right: 14px;
  }

  .about-card h5 {
    font-size: 1rem;
  }

  .about-card p {
    font-size: 0.9rem;
  }
}


/* =====================================================
   COMMON SECTION STYLES
===================================================== */
.section-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: auto;
}

/* =====================================================
   SERVICES
===================================================== */
/* WOW SERVICES BACKGROUND */
.services-wow {
  position: relative;
  background: radial-gradient(circle at top, #769987, #8fb1a1);
  overflow: hidden;
}

/* GLASS CARDS */
.service-wow-card {
  position: relative;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 46px 28px 36px;
  text-align: center;
  height: 100%;
  color: black;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}

/* FLOATING ICON */
.service-wow-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #44d1a9, #26c97a);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: black;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* TEXT */
.service-wow-card h5 {
  margin-top: 32px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.service-wow-card p {
  font-size: 0.95rem;
  color: black;
  margin-top: 10px;
}

/* HOVER EFFECT – THIS IS THE WOW */
.service-wow-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.service-wow-card:hover .service-wow-icon {
  transform: translateX(-50%) scale(1.15) rotate(6deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-wow-card {
    padding: 42px 24px 32px;
  }

  .service-wow-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
}

/* WHY CHOOSE US */
.why-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card h5 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
}

.why-card:hover {
  transform: translateY(-6px);
}

/* INDUSTRIES – BOLD OUTLINE STYLE */
.industry-luxury {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 20px;
  text-align: center;
  height: 100%;

  /* BOLD DEFAULT OUTLINE */
  border: 2px solid #198754;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* ICON */
.industry-luxury i {
  font-size: 2rem;
  color: #198754;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.35s ease, color 0.35s ease;
}

/* TITLE */
.industry-luxury h6 {
  font-weight: 600;
  margin: 0;
  color: #111827;
}

/* INNER BORDER (DEPTH EFFECT) */
.industry-luxury::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1.5px solid rgba(25, 135, 84, 0.35);
  pointer-events: none;
  transition: all 0.35s ease;
}

/* HOVER – STRONG & CONFIDENT */
.industry-luxury:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(25, 135, 84, 0.28);
  border-color: #0f5132;
  /* darker green */
}

/* HOVER INNER BORDER */
.industry-luxury:hover::before {
  inset: 4px;
  border-color: rgba(25, 135, 84, 0.6);
}

/* ICON HOVER */
.industry-luxury:hover i {
  transform: scale(1.25);
  color: #0f5132;
}

@media (max-width: 768px) {
  .industry-luxury {
    padding: 26px 16px;
    border-width: 2px;
  }

  .industry-luxury i {
    font-size: 1.7rem;
  }

  .industry-luxury h6 {
    font-size: 0.9rem;
  }
}

/* PROCESS – ALTERNATING TIMELINE */
.process-timeline {
  background: #f8fdfb;
}

/* TIMELINE WRAPPER */
.timeline-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* CENTER LINE */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #198754;
  transform: translateY(-50%);
  z-index: 1;
}

/* TIMELINE ITEM */
.timeline-item {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

/* TOP & BOTTOM POSITIONS */
.timeline-item.top {
  align-items: flex-end;
  padding-bottom: 80px;
}

.timeline-item.bottom {
  align-items: flex-start;
  padding-top: 80px;
}

/* CARD */
.timeline-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  width: 220px;
  text-align: center;
  border: 2px solid #198754;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
}

/* STEP NUMBER */
.step-number {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #198754;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 10px;
}

/* TEXT */
.timeline-card h6 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

/* HOVER */
.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(25, 135, 84, 0.25);
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);

    padding-bottom: 40px;
  }

  .timeline-wrapper::before {
    display: none;
  }

  .timeline-item.top,
  .timeline-item.bottom {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;

  }


  .timeline-card {
    width: 100%;
  }
}


/* =====================================================
   STATS SECTION
===================================================== */
.stats {
  background: #0f5132;
  color: #ffffff;
}

/* =====================================================
   CTA SECTION
===================================================== */
/* CTA – PREMIUM */
.cta-premium {
  padding: 90px 0;
  background: #f8fdfb;
}

/* CTA BOX */
.cta-box {
  position: relative;
  background: linear-gradient(135deg, #198754, #0f5132);
  border-radius: 28px;
  padding: 70px 40px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(25, 135, 84, 0.35);
}

/* HEADLINE */
.cta-box h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-box h2 span {
  color: #3aff9c;
}

/* TEXT */
.cta-box p {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.9);
}

/* BUTTON GROUP */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* PRIMARY CTA */
.btn-primary-cta {
  background: #ffffff;
  color: #0f5132;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* SECONDARY CTA */
.btn-outline-cta {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* GLOW EFFECTS */
.cta-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(58, 255, 156, 0.35);
  filter: blur(90px);
  opacity: 0.8;
}

.glow-left {
  top: -80px;
  left: -80px;
}

.glow-right {
  bottom: -80px;
  right: -80px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-box {
    padding: 50px 26px;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }

  .cta-box p {
    font-size: 0.95rem;
  }
}


/* =====================================================
   FOOTER
===================================================== */
/* FOOTER – CENTERED PREMIUM */
/* FOOTER – PREMIUM */
.footer-premium {
  background: linear-gradient(135deg, #0f5132, #111);
  color: #cfd8dc;
  padding: 70px 0 30px;
}

/* BRAND */
.footer-brand img {
  width: 64px;
  margin-bottom: 12px;
}

.footer-brand h5 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b0bec5;
  max-width: 320px;
}

/* BLOCKS */
.footer-block {
  margin-bottom: 10px;
}

/* TITLES */
.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 36px;
  height: 3px;
  background: #3aff9c;
  display: block;
  margin-top: 6px;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #3aff9c;
  transform: translateY(-2px);
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 40px auto 20px;
  max-width: 100%;
}

/* COPYRIGHT */
.footer-bottom {
  font-size: 0.8rem;
  color: #9ea7ad;
}

/* 📱 MOBILE – CENTER EVERYTHING */
@media (max-width: 768px) {
  .footer-premium {
    padding: 50px 0 25px;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}



/* =====================================================
   RESPONSIVE ADJUSTMENTS
===================================================== */
/* HERO HEIGHT FOR LARGE SCREENS */
@media (min-width: 992px) {
  .hero {
    height: 90vh;
    /* ✅ desktop / laptop */
  }
}

@media (max-width: 768px) {
  .brand-slogan {
    font-size: 0.5rem;
    line-height: 1;
  }
}

@media (max-width: 536px) {
  .brand-gradient {
    font-size: 1.2rem;
  }

  .brand-slogan {
    font-size: 0.50rem;
    /* display: none; */
  }
}

/* REMOVE ANY UNWANTED MOUSE / CURSOR ICON */
.hero-stats i,
.hero-stats svg,
.hero-stats::before,
.hero-stats::after {
  display: none !important;
  content: none !important;
}

/* ===============================
   WHATSAPP FLOATING BUTTON
================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 62px;
    height: 62px;
    font-size: 1.6rem;
    right: 16px;
    bottom: 16px;
  }
}
















/* ======================================
   GLOBAL RESET & TYPOGRAPHY
====================================== */
body {
  font-family: "Poppins", sans-serif;
  color: #333;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 18px;
}

p {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* ======================================
   GLOBAL SECTION SPACING SYSTEM
====================================== */
section {
  padding: 65px 0;
}

/* HERO EXCEPTION */
.about-page-hero {
  padding: 140px 0 100px;
}

/* DARK EMPHASIS SECTION */
.trust-strip {
  padding: 80px 0;
}

/* ======================================
   ABOUT PAGE HERO
====================================== */
.about-page-hero {
  position: relative;
  background:
    linear-gradient(120deg,
      rgba(15, 81, 50, 0.95),
      rgba(25, 135, 84, 0.9)),
    url("../assets/environment-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.12),
      transparent 60%);
}

.about-page-hero .container {
  position: relative;
  z-index: 1;
}

.about-page-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.about-page-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.92;
}

/* ======================================
   WHO WE ARE
====================================== */
.about-section {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.about-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f5132;
  position: relative;
}

.about-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  border-radius: 3px;
}

.about-section strong {
  color: #198754;
}

.founder-img {
  max-width: 360px;
  width: 100%;
  border-radius: 16px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease;
}

.founder-img:hover {
  transform: translateY(-8px);
}

/* ======================================
   FOUNDER STORY
====================================== */
.about-founder-story {
  background: #ffffff;
  text-align: center;
}

.about-founder-story::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.about-founder-story .about-page-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f5132;
}

.about-founder-story strong {
  color: #198754;
}

/* ======================================
   VISION & MISSION
====================================== */
.vision-mission {
  background: #f8f9fa;
}

.vm-box {
  height: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
}

.vm-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #198754, #20c997);
}

.vm-box h3 {
  font-weight: 800;
  color: #0f5132;
}

/* ======================================
   CORE VALUES
====================================== */
.core-values {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
}

.value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card i {
  font-size: 2.6rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #198754, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card h5 {
  font-weight: 700;
  color: #0f5132;
}

/* ======================================
   WHY TRUST US – STRIP
====================================== */
.trust-strip {
  background: #0f5132;
  color: #fff;
}

.trust-strip .about-page-heading {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
}

.trust-item {
  padding: 35px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-item:last-child {
  border-right: none;
}

.trust-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #20c997, #a3ebc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======================================
   MOBILE OPTIMIZATION
====================================== */
@media (max-width: 768px) {

  section {
    padding: 55px 15px;
  }

  .about-page-hero {
    padding: 120px 15px 90px;
  }

  .about-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .founder-img {
    max-width: 300px;
    margin-top: 25px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}



/* ================================
   SERVICES PAGE STYLES
================================ */

.services-hero {
  padding: 120px 0 60px;
  background: #f8f9fa;
}

.services-hero h1 {
  color: #184F88;
}

/* ================================
   SERVICES PAGE – PREMIUM CARDS
================================ */

.services-section {
  padding: 90px 0;
  background: linear-gradient(180deg,
      #f7fdfb 0%,
      #ffffff 55%,
      #f4faf8 100%);
}

/* CARD BASE */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 30px;
  height: 100%;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SOFT GLOW LAYER */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(25, 135, 84, 0.12),
      rgba(32, 201, 151, 0.10));
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* ICON */
.service-card i {
  position: relative;
  z-index: 1;
  font-size: 46px;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #198754;
  background: linear-gradient(135deg,
      rgba(25, 135, 84, 0.14),
      rgba(32, 201, 151, 0.14));
  transition: all 0.45s ease;
}

/* TITLE */
.service-card h5 {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f5132;
}

/* TEXT */
.service-card p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.14);
  border-color: rgba(25, 135, 84, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover i {
  background: linear-gradient(135deg, #198754, #20c997);
  color: #ffffff;
  transform: rotate(-6deg) scale(1.12);
}

/* MOBILE */
@media (max-width: 576px) {
  .services-section {
    padding: 65px 0;
  }

  .service-card {
    padding: 32px 22px;
  }

  .service-card i {
    width: 74px;
    height: 74px;
    font-size: 40px;
  }

  .service-card h5 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* ================================
   SERVICE DETAIL PAGES
================================ */

.service-detail-hero {
  padding: 120px 0 60px;
  background: #f8f9fa;
}

.service-detail-hero h1 {
  font-weight: 700;
  color: #18410b;
}

.service-detail-section {
  padding: 60px 0;
}

.service-detail-section h3,
.service-detail-section h4 {
  color: #377c22;
  font-weight: 600;
}

.service-list {
  padding-left: 18px;
}

.service-list li {
  margin-bottom: 8px;
  color: #444;
}

.process-box,
.benefit-box {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

.service-cta {
  background: linear-gradient(135deg, #18410b, #198754);
  color: #fff;
  padding: 70px 0;
}

/* MAKE SERVICE CARDS CLICKABLE & CLEAN */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link:hover {
  color: inherit;
}
/* PROJECT IMAGE BASE */
.project-image {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* IMAGE OVERLAY FOR READABILITY */
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
}

/* INDIVIDUAL PROJECT IMAGES */
.bg-green {
  background-image: url("/assets/etp.png");
}

.bg-darkgreen {
  background-image: url("/assets/mpcb.png");
}

.bg-blue {
  background-image: url("/assets/ro.png");
}

.bg-teal {
  background-image: url("/assets/zld.png");
}

/* BADGE FIX (ON TOP OF IMAGE) */
.project-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: #198754;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}
@media (max-width: 768px) {
  .project-image {
    height: 140px;
  }
}
/* ===========================
   PROJECT CARD – PREMIUM UI
=========================== */

.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* ===========================
   IMAGE ENHANCEMENT
=========================== */

.project-image {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image {
  transform: scale(1.08);
}

/* DARK GRADIENT OVER IMAGE */
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.55)
  );
}

/* ===========================
   STATUS BADGE – ANIMATED
=========================== */

.project-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: #198754;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  z-index: 2;
  transition: all 0.3s ease;
}

.project-card:hover .project-status {
  background: #198754;
  color: #fff;
}

/* ===========================
   CARD BODY
=========================== */

.project-body {
  padding: 22px;
}

.project-body h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #212529;
}

.project-location {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.project-location i {
  color: #198754;
  margin-right: 4px;
}

.project-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ===========================
   TAG PILL
=========================== */

.project-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  letter-spacing: 0.4px;
}

/* ===========================
   FADE-UP ANIMATION
=========================== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MOBILE OPTIMIZATION
=========================== */

@media (max-width: 768px) {
  .project-image {
    height: 140px;
  }

  .project-body {
    padding: 18px;
  }

  .project-body h5 {
    font-size: 1rem;
  }
}
/* ===========================
   PROJECT LOCATION – BOLD & COLORFUL
=========================== */

.project-location {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd; /* Bootstrap primary blue */
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.project-location i {
  font-size: 1rem;
  color: #198754; /* green pin */
}

/* Hover accent */
.project-card:hover .project-location {
  color: #198754;
}
/* ================= WRITE US – EMAIL SECTION ================= */

.email-section{
  padding:100px 0;
  background:
    linear-gradient(135deg, #198754, #abe9cc);
  position:relative;
  overflow:hidden;
}

/* subtle background pattern */
.email-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 45%);
}

.email-container{
  max-width:620px;
  margin:auto;
  background:#ffffff;
  padding:50px 45px;
  border-radius:18px;
  position:relative;
  z-index:2;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.18);
}

/* ---------- TITLE ---------- */

.email-title{
  font-size:34px;
  font-weight:700;
  color:#184f88;
  text-align:center;
  margin-bottom:10px;
}

.email-subtitle{
  text-align:center;
  color:#666;
  font-size:15px;
  margin-bottom:35px;
}

/* ---------- FORM ---------- */

.email-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.email-form input,
.email-form textarea{
  width:100%;
  padding:14px 16px;
  font-size:15px;
  border-radius:10px;
  border:1.5px solid #e0e0e0;
  transition:all .3s ease;
  font-family:'Poppins', sans-serif;
}

.email-form textarea{
  resize:none;
  min-height:120px;
}

/* focus effect */
.email-form input:focus,
.email-form textarea:focus{
  outline:none;
  border-color:#184f88;
  box-shadow:0 0 0 3px rgba(24,79,136,0.15);
}

/* masked email field */
#maskedEmail{
  background:#f6f8fb;
  color:#555;
  cursor:not-allowed;
}

/* ---------- BUTTON ---------- */

.email-form button{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg, #184f88, #1e6db8);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:all .35s ease;
  box-shadow:0 10px 25px rgba(24,79,136,0.35);
}

.email-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 35px rgba(24,79,136,0.45);
}

.email-form button:active{
  transform:translateY(0);
}

/* ---------- STATUS MESSAGE ---------- */

.form-status{
  margin-top:18px;
  text-align:center;
  font-size:14px;
  font-weight:500;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:576px){
  .email-container{
    padding:40px 25px;
  }

  .email-title{
    font-size:28px;
  }
}
