/* ============================================================
   Society Safety Nets - Custom Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-dark: #3411b7;
  --green-main: #fdb308;
  --green-mid: #3a9e66;
  --green-light: #6dbf8a;
  --green-pale: #e8f5ee;
  --white: #ffffff;
  --off-white: #f7faf8;
  --text-dark: #1a2a22;
  --text-mid: #3d5a48;
  --text-light: #7a9e8a;
  --shadow-sm: 0 2px 12px rgba(45, 122, 79, 0.10);
  --shadow-md: 0 6px 28px rgba(45, 122, 79, 0.16);
  --shadow-lg: 0 16px 48px rgba(45, 122, 79, 0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Global Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  overflow: hidden;
}

/* ---------- Utility ---------- */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.bg-pale {
  background: var(--green-pale);
}

.bg-dark {
  background: var(--green-dark);
}

.text-green {
  color: var(--green-main);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--green-dark);
  position: relative;
  margin-bottom: 0.4rem;
}

.section-title span {
  color: var(--green-main);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  border-radius: 4px;
  margin: 0.6rem auto 1.2rem;
}

.divider-left {
  margin-left: 0;
}

.badge-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

/* ---------- Top Bar ---------- */
#topbar {
  background: var(--green-dark);
  color: #b8dfc7;
  font-size: 0.82rem;
  padding: 8px 0;
  font-weight: 500;
}

#topbar a {
  color: #fff;
  transition: var(--transition);
}

#topbar a:hover {
  color: var(--white);
}

#topbar i {
  color: #fff;
}

/* ---------- Header / Navbar ---------- */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26, 77, 46, 0.10);
  padding: 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1030;
}

#mainNav.scrolled {
  box-shadow: 0 4px 28px rgba(26, 77, 46, 0.18);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.brand-text .brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  display: block;
}

.brand-text .brand-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 22px 14px;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green-main);
  transform: scaleX(0);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green-main);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 2px solid var(--green-main);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d7a4f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-quote {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: none;
  margin-left: 8px;
}

.btn-quote::after {
  display: none !important;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white !important;
}

/* ---------- Hero Carousel ---------- */
#heroCarousel {
  width: 100%;
  position: relative;
}

.hero-slide {
  min-height: 580px;
  height: 90vh;
  max-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.781) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  z-index: 0;
}

.carousel-item.active .hero-bg {
  transform: scale(1.06);
}

/* SVG pattern overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero-badge i {
  color: var(--green-light);
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.hero-title span {
  color: #fdb308;
  display: block;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  /* max-width: 540px; */
  text-align:center;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  padding: 16px 24px;
  text-align: center;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  margin: 0 16px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

.carousel-indicators {
  bottom: 70px;
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
  margin: 0 4px;
}

.carousel-indicators .active {
  background: var(--green-light);
  transform: scale(1.3);
}

/* Hero slide text animations */
.carousel-item .hero-badge,
.carousel-item .hero-title,
.carousel-item .hero-desc,
.carousel-item .hero-btns {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.carousel-item.active .hero-badge {
  animation: fadeUp 0.6s 0.1s forwards;
}

.carousel-item.active .hero-title {
  animation: fadeUp 0.6s 0.25s forwards;
}

.carousel-item.active .hero-desc {
  animation: fadeUp 0.6s 0.4s forwards;
}

.carousel-item.active .hero-btns {
  animation: fadeUp 0.6s 0.55s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- About Section ---------- */
.about-img-wrap {
  position: relative;
  padding: 20px 20px 20px 0;
}

.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: var(--green-dark);
  color: white;
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}

.about-img-badge .big-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  display: block;
}

.about-img-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--green-pale);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 14px;
}

.about-feature-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-size: 1.1rem;
}

.about-feature-card h6 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.about-feature-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Services Section ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #d8ede1;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-icon-overlay {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--green-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.service-body {
  padding: 28px 22px 22px;
}

.service-body h4 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-link {
  color: var(--green-main);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--green-dark);
  gap: 10px;
}

/* ---------- Counter Section ---------- */
#counterSection {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f3d22 100%);
  position: relative;
  overflow: hidden;
}

#counterSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-card:last-child {
  border-right: none;
}

.counter-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.counter-card:hover .counter-icon {
  background: var(--green-main);
  border-color: var(--green-main);
}

.counter-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.counter-num .suffix {
  color: var(--green-light);
}

.counter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Why Choose Us ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #d8ede1;
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-main);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--green-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-size: 1.7rem;
  margin: 0 auto 18px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-card:hover .why-icon {
  background: var(--green-main);
  color: white;
  transform: rotate(5deg) scale(1.05);
}

.why-card h5 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.855rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 77, 46, 0.85), transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Gallery filter buttons */
.gallery-filter .btn-filter {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter .btn-filter.active,
.gallery-filter .btn-filter:hover {
  background: var(--green-main);
  color: white;
}

/* ---------- Testimonials ---------- */
#testimonialSection {
  background: var(--green-dark);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f5c518;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--green-light);
  opacity: 0.4;
  position: absolute;
  top: -20px;
  left: -8px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  background: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  display: block;
}

.testimonial-author .role {
  font-size: 0.78rem;
  color: var(--green-light);
  display: block;
}

/* ---------- Contact Section ---------- */
.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  color: white;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.1rem;
}

.contact-info-item h6 {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--green-light);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid #d8ede1;
  height: 100%;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid #d0e8da;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.12);
  background: white;
  outline: none;
}

.form-control::placeholder {
  color: #a0b8a8;
}

.btn-submit {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 13px 36px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer ---------- */
footer {
  background: #3411b7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-brand .brand-icon {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--green-light);
}

.footer-links a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-bottom a {
  color: var(--green-light);
}

.floating-icons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-icons a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: 0.3s;
}

.call-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25D366;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

/* ---------- Scroll To Top ---------- */
#scrollTop {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 9998;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  border: none;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--green-light);
  transform: scale(1.2);
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  animation: pulse 1s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(45, 122, 79, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(45, 122, 79, 0);
  }
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: var(--green-pale);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  border-radius: 3px;
  animation: load 1.5s ease forwards;
}

@keyframes load {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ---------- Responsive Fixes ---------- */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding: 12px 16px;
  }

  .navbar-nav .nav-link::after {
    bottom: 6px;
  }

  .navbar-collapse {
    border-top: 1px solid var(--green-pale);
    margin-top: 8px;
    padding: 8px 0;
  }

  .counter-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .counter-card:last-child {
    border-bottom: none;
  }

  .contact-form-wrap {
    padding: 28px 20px;
    margin-top: 20px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .hero-stats .col {
    min-width: 50%;
  }
}
.cu-lgwdth{
    width:100px;
}
@media (max-width: 767.98px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero-slide {
    min-height: 520px;
    height: 85vh;
    max-height: 640px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline {
    padding: 11px 20px;
    font-size: 0.86rem;
  }

  .hero-stats {
    position: relative;
    background: var(--green-dark);
  }

  .hero-stat-item {
    padding: 12px 10px;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .about-img-badge {
    left: 10px;
    bottom: 10px;
  }

  .footer-top {
    padding: 50px 0 40px;
  }

  .whatsapp-btn {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  #scrollTop {
    bottom: 78px;
    right: 18px;
  }

  .about-img-main {
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  #topbar .d-none {
    display: none !important;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .service-img-wrap {
    height: 180px;
  }

  .gallery-filter {
    gap: 6px !important;
  }
}
@media(max-width:374px)
{
	.navbar-brand{
		margin-right:0px;
	}
}