/* ==========================================================
   DIGITAL MARKETING WEBSITE - CUSTOM STYLES
   All custom CSS previously embedded in the HTML is here.
   ========================================================== */

/* ==================== MOVED STYLE BLOCK 1 ==================== */
/* === GLOBAL VARIABLES === */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --text-dark: #111111;
  --text-gray: #7a7a7a;
  --bg-light: #f8f9f9;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === HEADER STYLES === */
.bg-dark-green {
  background-color: var(--dark-green) !important;
}
.bg-lime {
  background-color: var(--lime-green) !important;
}
.text-dark-green {
  color: var(--dark-green) !important;
}
.text-lime {
  color: var(--lime-green) !important;
}

.top-social-clip {
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 45px !important;
}
.top-social-clip a {
  color: var(--dark-green);
  text-decoration: none;
  transition: opacity 0.2s;
}
.top-social-clip a:hover {
  opacity: 0.7;
}

.nav-icon {
  background-color: var(--lime-green);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-weight: 800;
  font-size: 16px;
}

.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 15px;
  padding: 5px 0;
  margin: 0 16px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--dark-green);
}
@media (min-width: 992px) {
  .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--dark-green);
  }
}

.btn-custom {
  background-color: var(--dark-green);
  color: var(--lime-green);
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-custom:hover {
  background-color: #122217;
  color: var(--lime-green);
}

/* === HERO SECTION STYLES === */
.hero-section {
  background-color: var(--bg-light);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.subheading-group {
  position: relative;
  width: 35px;
  height: 24px;
}
.sub-circle-1 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--lime-green);
  position: absolute;
  left: 0;
  z-index: 2;
}
.sub-circle-2 {
  width: 20px;
  height: 20px;
  border-radius: 0 12px 12px 0;
  background-color: var(--dark-green);
  position: absolute;
  left: 12px;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 20px 0;
}

/* Fixed Square Dots Pattern */
.dots-bg {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#d1d5db 2px, transparent 2px);
  background-size: 25px 25px; /* Spaced out uniformly */
  z-index: 0;
}
.dots-top {
  top: 10%;
  left: 0%;
}

/* UPDATED: Pixel-Perfect CSS Grid for New Screenshot */
.hero-image-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr; /* Left column slightly thinner */
  grid-template-rows: 1fr 1fr 0.8fr; /* Bottom image slightly shorter */
  gap: 16px;
  height: 580px;
  position: relative;
  z-index: 2;
}

.grid-img {
  width: 100%;
}

.img-1 {
  grid-row: 1 / 4;
  grid-column: 1 / 2;
}
.img-2 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.img-3 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.img-4 {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
}

/* Hire Us Badge Positioned between left image and right-middle image */
.badge-hire {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  z-index: 10;
}

/* Sparkles */
.sparkles-overlay {
  position: absolute;
  bottom: 0%;
  right: -10%;
  z-index: 10;
}

/* === MARQUEE BANNER STYLES === */
.marquee-container {
  background-color: var(--dark-green);
  color: white;
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-size: 1.25rem;
  font-weight: 600;
}
.marquee-content span {
  display: inline-flex;
  align-items: center;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === FOOTER STYLES === */
.footer-social-circle {
  background: var(--lime-green);
  color: var(--dark-green);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}
.footer-social-circle:hover {
  transform: scale(1.1);
  color: var(--dark-green);
}

.newsletter-input {
  border: none;
  background: #f5f5f5;
  border-radius: 25px 0 0 25px;
  padding: 12px 20px;
}
.newsletter-input:focus {
  box-shadow: none;
  background: #eeeeee;
}
.newsletter-btn {
  background: var(--dark-green);
  color: #fff;
  border-radius: 0 25px 25px 0;
  padding: 0 20px;
  border: none;
}
.newsletter-btn:hover {
  background: #122217;
  color: #fff;
}

.footer-bottom {
  background-color: var(--dark-green);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 11px
  );
}

/* RESPONSIVE FIXES */
@media (max-width: 991px) {
  .hero-image-grid {
    height: 400px;
    margin-top: 40px;
  }
  .badge-hire {
    left: 50%;
  }
  .top-social-clip {
    clip-path: none;
    padding-left: 15px !important;
    justify-content: center;
  }
  .top-contact {
    justify-content: center;
    text-align: center;
  }
}

/* ==================== MOVED STYLE BLOCK 2 ==================== */
/* Specific styles for About Us Section */
.about-section {
  background-color: #ffffff;
  padding: 100px 0;
}

/* Custom Progress Bars */
.progress-wrapper .progress {
  height: 5px;
  background-color: #f1f3f4;
  border-radius: 3px;
  overflow: visible;
}
.progress-wrapper .progress-bar {
  background-color: var(--dark-green);
  border-radius: 3px;
  position: relative;
}

/* FIX 1: The Lime Green Knob (White center, Lime border) */
.progress-knob {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 4.5px solid var(--lime-green);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Stats Section Typography */
.stat-number {
  font-size: clamp(2.5rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 2px;
}
.stat-label {
  color: #9ca3af; /* Lighter gray to match screenshot */
  font-size: 15px;
  font-weight: 500;
}

/* FIX 2: Stat Vertical Dividers with perfectly aligned Icons */
.stat-divider {
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1.5px;
  background-color: #e5e7eb; /* Thin gray line */
}
.stat-divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff; /* Cuts the gray line behind it */
  padding: 12px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rebuilt miniature logo for the divider to ensure the line splits it perfectly */
.stat-mini-logo {
  position: relative;
  width: 26px;
  height: 16px;
}
.stat-mini-logo .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.stat-mini-logo .c2 {
  position: absolute;
  left: 13px;
  top: 0; /* Touches exactly at the center point */
  width: 13px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* Responsive Adjustments for Stats */
@media (max-width: 991px) {
  .stat-divider {
    display: none !important;
  }
  .stat-block {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e4e8;
    padding-bottom: 25px;
  }
  .stat-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* ==================== MOVED STYLE BLOCK 3 ==================== */
/* Section Core */
.services-section {
  background-color: var(--dark-green, #1d3625);
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

/* Top & Bottom Diagonal Pattern Overlay */
.services-pattern {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 12px
  );
  z-index: -1;
}
.pattern-top {
  top: 0;
}
.pattern-bottom {
  bottom: 0;
}

/* Header Mini Logo (Lime Circle + White Half-Circle) */
.service-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.service-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.service-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: #ffffff;
}

/* Custom Header Button */
.btn-white {
  background-color: #ffffff;
  color: var(--dark-green);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
.btn-white:hover {
  background-color: #e5e5e5;
  color: var(--dark-green);
}

/* Service Cards Configuration */
.service-card {
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.dark-card {
  background-color: rgba(
    255,
    255,
    255,
    0.06
  ); /* Creates the exact slightly lighter green */
  border: 1px solid rgba(255, 255, 255, 0.08); /* Crisp outer edge */
}
.lime-card {
  background-color: var(--lime-green);
  border: 1px solid var(--lime-green);
}

/* Card Images */
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%);
}

/* Card Content Area */
.service-content {
  padding: 0 4px 8px 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-divider {
  margin: 0 0 16px 0;
  border-top-width: 1px;
  border-top-style: solid;
  opacity: 1;
}
.service-text {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Dark Card Typography */
.dark-card .service-title {
  color: #ffffff;
}
.dark-card .service-divider {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.dark-card .service-text {
  color: rgba(255, 255, 255, 0.7);
}
.dark-card .service-link {
  color: var(--lime-green);
}

/* Lime Card Typography */
.lime-card .service-title {
  color: var(--dark-green);
}
.lime-card .service-divider {
  border-top-color: rgba(29, 54, 37, 0.15);
}
.lime-card .service-text {
  color: rgba(29, 54, 37, 0.75);
}
.lime-card .service-link {
  color: var(--dark-green);
}

/* ==================== MOVED STYLE BLOCK 4 ==================== */
/* Section Core */
.choose-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* === LEFT COLUMN: IMAGE GRID === */
.choose-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  height: 100%;
  min-height: 480px;
}

.choose-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 24px;
  filter: grayscale(100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.img-tall {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.img-short {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

/* Arch Shape (Bottom Right) */
.shape-arch {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  background-color: var(--lime-green);
  /* 120px top radii creates the perfect arch/tombstone shape */
  border-radius: 120px 120px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Sparkles absolutely positioned on the tall image */
.choose-sparkles {
  position: absolute;
  bottom: 40px;
  left: -30px;
  z-index: 5;
}

/* === RIGHT COLUMN: FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}

.feature-cell {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Alternating Checkerboard Background Colors */
.bg-cell-light {
  background-color: #2b4b35;
} /* Slightly lighter green */
.bg-cell-dark {
  background-color: #233e2c;
} /* Slightly darker green */

/* Feature Icon & Text */
.feature-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--lime-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 22px;
  margin-bottom: 24px;
}
.feature-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .choose-image-grid {
    min-height: 400px;
    margin-bottom: 50px;
  }
  .shape-arch {
    border-radius: 80px 80px 24px 24px;
  }
  /* Fix checkerboard on mobile (stacking requires alternating differently) */
  .feature-cell:nth-child(2) {
    background-color: #233e2c;
  }
  .feature-cell:nth-child(3) {
    background-color: #2b4b35;
  }
}

/* ==================== MOVED STYLE BLOCK 5 ==================== */
/* Section Core */
.process-section {
  background-color: var(--bg-light, #f8f9f9);
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --text-gray: #7a7a7a;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* Typography */
.process-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark, #111111);
}
.process-title {
  color: var(--dark-green);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 15px;
}
.process-header-text {
  color: var(--text-gray);
  font-size: 17px;
  line-height: 1.7;
}

/* Process Cards */
.process-card {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.process-card-top {
  padding: 35px 30px 45px 30px;
  position: relative;
  flex-grow: 1;
  z-index: 1;
}

/* Giant Watermark Numbers */
.process-watermark {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 90px;
  font-weight: 800;
  color: #f1f3f5; /* Very subtle gray */
  z-index: 0;
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
}

/* Content above watermark */
.process-card-content {
  position: relative;
  z-index: 2;
}

.process-card-title {
  color: var(--dark-green);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.process-card-text {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Card Bottom (Dark Green with Stripes) */
.process-card-bottom {
  background-color: var(--dark-green);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 12px
  );
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-step-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.process-step-num {
  color: var(--lime-green);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

/* ==================== MOVED STYLE BLOCK 6 ==================== */
/* Section Core */
.work-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --border-color: #e5e7eb;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* Work Cards */
.work-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.work-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

/* Card Image */
.work-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%);
  margin-bottom: 20px;
}

/* Category Badge */
.work-badge {
  display: inline-block;
  background-color: var(--dark-green);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 20px;
}

/* Thin Divider Line */
.work-divider {
  width: 100%;
  height: 1px;
  background-color: #f3f4f6;
  margin-bottom: 20px;
}

/* Card Bottom Area */
.work-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

.work-title {
  color: var(--dark-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.3px;
  max-width: 85%;
}

/* Circular Lime Arrow Button */
.work-btn-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--lime-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--dark-green);
  transition: transform 0.2s ease;
}
.work-btn-arrow:hover {
  transform: scale(1.05);
  color: var(--dark-green);
}

/* Custom SVG Arrow for exact match */
.work-btn-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Bottom CTA Button */
.btn-view-all {
  background-color: var(--dark-green);
  color: var(--lime-green);
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}
.btn-view-all:hover {
  background-color: #122217;
  color: var(--lime-green);
}

/* ==================== MOVED STYLE BLOCK 7 ==================== */
/* Section Core */
.award-section {
  background-color: var(--dark-green, #1d3625);
  position: relative;
  padding: 100px 0;
  z-index: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Top & Bottom Diagonal Pattern Overlay */
.award-pattern {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 12px
  );
  z-index: -1;
}
.pattern-top {
  top: 0;
}
.pattern-bottom {
  bottom: 0;
}

/* Header Mini Logo (Lime Circle + White Half-Circle) */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green, #bbfb26);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: #ffffff;
}

/* Typography */
.award-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}
.award-title {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-top: 15px;
  margin-bottom: 40px;
}

/* Large SVG Wreath Alignment */
.wreath-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  opacity: 0.2; /* Makes it a subtle watermark */
}

/* Award List Layout */
.award-list {
  display: flex;
  flex-direction: column;
}

.award-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

/* Remove bottom border from the last item to match design */
.award-item:last-child {
  border-bottom: none;
}

/* Text Formatting */
.award-category {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  margin-bottom: 6px;
}

.award-name {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.award-year {
  color: var(--lime-green, #bbfb26);
  font-size: 14px;
  font-weight: 700;
  margin-left: 12px;
}

/* Circular Action Button */
.award-btn {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.award-btn:hover {
  background-color: var(--lime-green, #bbfb26);
  color: var(--dark-green, #1d3625);
  transform: scale(1.05);
}

.award-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Responsive Spacing */
@media (max-width: 991px) {
  .wreath-wrapper {
    margin-bottom: 50px;
  }
  .award-title {
    font-size: 2.2rem;
  }
}

/* ==================== MOVED STYLE BLOCK 8 ==================== */
/* Section Core */
.contact-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green, #bbfb26);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green, #1d3625);
}

/* Form Styles */
.contact-form-label {
  font-weight: 700;
  color: var(--dark-green, #1d3625);
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-form-control,
.contact-form-select {
  background-color: #f7f8f9; /* Very subtle light gray */
  border: 1px solid #e8e9eb;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: #333333;
  width: 100%;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
}

.contact-form-control::placeholder {
  color: #aeb4ba;
}

/* Specific styling for the select dropdown to match the gray text */
.contact-form-select {
  color: #aeb4ba;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}
.contact-form-select option {
  color: #333333;
}

.contact-form-control:focus,
.contact-form-select:focus {
  border-color: var(--dark-green);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 54, 37, 0.08);
}

/* Submit Button */
.btn-submit {
  background-color: var(--dark-green, #1d3625);
  color: var(--lime-green, #bbfb26);
  border: none;
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
  margin-top: 15px;
  cursor: pointer;
}
.btn-submit:hover {
  background-color: #122217;
}

/* Image Side Layout */
.contact-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 550px;
  border-radius: 20px;
  border: 1px solid #e8e9eb; /* Subtle border matching the form inputs */
}

.contact-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(100%);
}

/* Sparkles Cluster */
.contact-sparkles {
  position: absolute;
  bottom: 25px;
  right: -30px;
  z-index: 5;
}

@media (max-width: 991px) {
  .contact-image-wrapper {
    min-height: 400px;
    margin-top: 40px;
  }
  .contact-sparkles {
    right: 10px;
    bottom: 10px;
  }
}

/* ==================== MOVED STYLE BLOCK 9 ==================== */
/* Section Core */
.testimonials-section {
  background-color: #f6f7f8; /* Very light gray matching screenshot */
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --text-gray: #7a7a7a;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* Typography */
.testi-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-green);
}
.testi-title {
  color: var(--dark-green);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-top: 12px;
}
.testi-header-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Header Button */
.btn-testi-header {
  background-color: var(--dark-green);
  color: var(--lime-green);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
.btn-testi-header:hover {
  background-color: #122217;
  color: var(--lime-green);
}

/* SVG Star Icon Style */
.star-icon {
  width: 22px;
  height: 22px;
  fill: var(--lime-green);
  margin-right: 2px;
}

/* === LEFT CARD: RATING SUMMARY === */
.rating-card {
  background-color: var(--dark-green);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Top & Bottom Stripes (Pseudo-elements) */
.rating-card::before,
.rating-card::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 45px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 12px
  );
  z-index: 0;
}
.rating-card::before {
  top: 0;
}
.rating-card::after {
  bottom: 0;
}

/* Left Card Content */
.rating-card-content {
  position: relative;
  z-index: 1;
}
.rating-number {
  color: #ffffff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.rating-count {
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.rating-text {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* Overlapping Avatars */
.avatar-group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--dark-green);
  object-fit: cover;
  margin-left: -12px; /* Creates the overlap */
  background-color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  position: relative;
}
.avatar-group .avatar-circle:first-child {
  margin-left: 0;
}

/* === RIGHT CARD: TESTIMONIAL QUOTE === */
.testi-card {
  background-color: #ffffff;
  border: 1px solid #e8e9eb;
  border-radius: 20px;
  padding: 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

/* Giant Watermark Quote SVG */
.quote-watermark {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

/* Right Card Content */
.testi-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.testi-stars-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.testi-score {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
}
.testi-quote-text {
  color: var(--text-gray);
  font-size: 17px;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 40px;
}

/* Right Card Footer (Author + Buttons) */
.testi-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.testi-author-name {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.testi-author-title {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}

/* Navigation Buttons */
.nav-btn-group {
  display: flex;
  gap: 12px;
}
.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.nav-btn:hover {
  transform: scale(1.05);
}
.btn-prev {
  background-color: var(--lime-green);
  color: var(--dark-green);
}
.btn-next {
  background-color: var(--dark-green);
  color: #ffffff;
}
.nav-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive Spacing */
@media (max-width: 991px) {
  .testi-card {
    padding: 30px;
  }
  .quote-watermark {
    right: 10px;
    width: 100px;
  }
  .testi-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ==================== MOVED STYLE BLOCK 10 ==================== */
/* Section Core */
.team-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --border-color: #e8e9eb;
  --bg-light: #f7f8f9;
  --text-gray: #7a7a7a;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* Section Header Typography */
.team-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-green);
}
.team-main-title {
  color: var(--dark-green);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 10px;
}

/* Team Card Container */
.team-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 16px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hover & Active State for Card */
.team-card:hover,
.team-card.active {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  box-shadow: 0 20px 40px rgba(29, 54, 37, 0.1);
}

/* Image Wrapper */
.team-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-img {
  width: 100%;
  height: 340px !important;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

/* Social Media Strip Overlay */
.team-social {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--lime-green);
  border-radius: 20px 0 0 0;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.team-card:hover .team-social,
.team-card.active .team-social {
  opacity: 1;
  transform: translateX(0);
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--dark-green);
  color: var(--lime-green);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease;
  font-size: 14px;
}
.team-social a:hover {
  transform: scale(1.15);
}

/* Info Box */
.team-info {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card:hover .team-info,
.team-card.active .team-info {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Info Typography */
.team-name {
  color: var(--dark-green);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}
.team-title {
  color: var(--text-gray);
  font-size: 14.5px;
  margin: 0;
  transition: color 0.3s ease;
}

/* Hover State Typography */
.team-card:hover .team-name,
.team-card.active .team-name {
  color: #ffffff;
}
.team-card:hover .team-title,
.team-card.active .team-title {
  color: #a6b5ab; /* Subtle light green/gray */
}

/* ==================== MOVED STYLE BLOCK 11 ==================== */
/* Section Core */
.blogs-section {
  background-color: var(--dark-green, #1d3625);
  position: relative;
  padding: 100px 0;
  z-index: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
}

/* Top & Bottom Diagonal Pattern Overlay */
.blogs-pattern {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 12px
  );
  z-index: -1;
}
.pattern-top {
  top: 0;
}
.pattern-bottom {
  bottom: 0;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: #ffffff;
}

/* Header Button */
.btn-white {
  background-color: #ffffff;
  color: var(--dark-green);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
.btn-white:hover {
  background-color: #e5e5e5;
  color: var(--dark-green);
}

/* Blog Card Structure */
.blog-card {
  background-color: rgba(255, 255, 255, 0.06); /* Subtle lighter green */
  border: 1px solid rgba(255, 255, 255, 0.08); /* Crisp outer edge */
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Card Image & Badge Area */
.blog-img-wrap {
  position: relative;
  margin-bottom: 28px; /* Space for the overlapping badge */
}
.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%);
  display: block;
}

.blog-badge {
  position: absolute;
  bottom: -14px;
  left: 12px;
  background-color: var(--lime-green);
  color: var(--dark-green);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 4px 4px 4px;
}

.blog-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.blog-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Underlined Read More Link */
.blog-link {
  color: var(--lime-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}
.blog-link span {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.blog-link:hover {
  opacity: 0.8;
  color: var(--lime-green);
}

/* ==================== MOVED STYLE BLOCK 12 ==================== */
/* Section Core */
.faq-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --border-color: #e5e7eb;
  --bg-gray: #f7f8f9;
  --text-gray: #7a7a7a;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* === LEFT COLUMN: ACCORDION === */
.faq-accordion .accordion-item {
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: none;
}

.faq-accordion .accordion-button {
  background-color: var(--bg-gray);
  color: var(--dark-green);
  font-weight: 700;
  font-size: 16px;
  padding: 22px 24px;
  box-shadow: none !important;
  border: none;
  border-radius: 16px !important;
  transition: all 0.3s ease;
}

/* Active Accordion State */
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--dark-green);
  color: #ffffff;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding-bottom: 20px;
}

/* Custom Plus/Minus Icons */
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--dark-green);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−"; /* En dash for minus */
  color: #ffffff;
  transform: none;
}

/* Accordion Body */
.faq-accordion .accordion-body {
  background-color: var(--dark-green);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.6;
  padding: 0 24px 24px 24px;
  border-top: none;
}

/* Subtle Border inside Active Item */
.faq-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}

/* === RIGHT COLUMN: CARDS === */

/* 1. CTA Card (Dark Green) */
.faq-cta-card {
  background-color: var(--dark-green);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Diagonal Top/Bottom Pattern Overlay */
.faq-cta-card::before,
.faq-cta-card::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 35px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 12px
  );
  z-index: 0;
}
.faq-cta-card::before {
  top: 0;
}
.faq-cta-card::after {
  bottom: 0;
}

.faq-cta-content {
  position: relative;
  z-index: 1;
}

.faq-cta-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}
.faq-cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-lime {
  background-color: var(--lime-green);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
.btn-lime:hover {
  opacity: 0.9;
}

/* 2. Contact Card (Light Gray) */
.faq-contact-card {
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--lime-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-contact-text-sm {
  color: var(--text-gray);
  font-size: 12px;
  margin-bottom: 4px;
}
.faq-contact-title {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}
.faq-contact-number {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* ==================== MOVED STYLE BLOCK 13 ==================== */
/* Section Core */
.newsletter-section {
  background-color: #f6f7f8; /* Matches the light gray background */
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Shared Variables */
:root {
  --dark-green: #1d3625;
  --lime-green: #bbfb26;
  --border-color: #e5e7eb;
  --text-gray: #aeb4ba;
}

/* Header Mini Logo */
.section-logo-mark {
  position: relative;
  width: 24px;
  height: 16px;
}
.section-logo-mark .c1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--lime-green);
}
.section-logo-mark .c2 {
  position: absolute;
  left: 10px;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 0 16px 16px 0;
  background-color: var(--dark-green);
}

/* Typography */
.newsletter-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-green);
}

.newsletter-title {
  color: var(--dark-green);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 15px;
  margin-bottom: 40px;
}

/* Form Layout */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Input Field Styling */
.newsletter-input-wrapper {
  position: relative;
  flex-grow: 1;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 16px 20px 16px 65px; /* Extra left padding for the icon */
  font-size: 15px;
  color: #333333;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.newsletter-input::placeholder {
  color: var(--text-gray);
  font-weight: 500;
}

.newsletter-input:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(29, 54, 37, 0.08);
}

/* Inner Lime Icon */
.input-icon-box {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background-color: var(--lime-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--dark-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Submit Button */
.btn-subscribe {
  background-color: var(--dark-green);
  color: var(--lime-green);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background-color: #122217;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
  .btn-subscribe {
    width: 100%;
  }
}

/* ==================== MOVED INLINE STYLES ==================== */

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-15-medium {
  font-size: 15px !important;
  font-weight: 500 !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-text-17-lh16 {
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.u-text-17-lh17 {
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.u-fs-2rem {
  font-size: 2rem !important;
}

.u-section-heading {
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  letter-spacing: -1px !important;
  line-height: 1.2 !important;
}

.u-ms-4 {
  margin-left: 4px !important;
}

.u-about-image {
  max-width: 600px !important;
  object-fit: contain !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-py10-px24 {
  padding: 10px 24px !important;
}

.u-sparkle-bottom-left {
  position: absolute !important;
  bottom: -10px !important;
  left: -15px !important;
}

.u-sparkle-small-bottom-left {
  position: absolute !important;
  bottom: 5px !important;
  left: -15px !important;
}

.u-sparkle-top-left {
  position: absolute !important;
  top: -25px !important;
  left: -35px !important;
}

.u-underline-offset-6 {
  text-underline-offset: 6px !important;
}

.u-width-80 {
  width: 80% !important;
}

.u-width-85 {
  width: 85% !important;
}

.u-width-95 {
  width: 95% !important;
}

/* ==========================================================================
   SERVICES PAGE: HERO & MARQUEE
   ========================================================================== */
.page-hero {
  background-color: var(--bg-light, #f8f9f9);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  color: var(--dark-green);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.page-breadcrumb {
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 600;
}

.page-breadcrumb span.current {
  color: var(--dark-green);
}

/* Page Hero Dot Patterns */
.hero-dots {
  position: absolute;
  width: 120px;
  height: 80px;
  background-image: radial-gradient(#d1d5db 2.5px, transparent 2.5px);
  background-size: 20px 20px;
  z-index: 0;
  opacity: 0.6;
}
.hero-dots.top-right {
  top: 20%;
  right: 25%;
}
.hero-dots.bottom-left {
  bottom: 15%;
  left: 20%;
}

/* ==========================================================================
   SERVICES PAGE: MAIN GRID SECTION
   ========================================================================== */
.services-page-grid {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Centered Header Logo Mark (Dark circles on white background) */
.section-logo-mark.light-bg .c2,
.section-logo-mark.light-bg .c3 {
  background-color: var(--dark-green);
}

.srv-main-title {
  color: var(--dark-green);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 15px;
}

/* Services Cards */
.srv-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.srv-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

/* Highlight Card */
.srv-card.lime-card {
  background-color: var(--lime-green);
  border-color: var(--lime-green);
}

/* Card Image */
.srv-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
  margin-bottom: 16px;
}
/* For inverted cards where text is on top */
.srv-card .srv-content + .srv-img-wrap {
  margin-bottom: 0;
  margin-top: 16px;
}

.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  transition: transform 0.5s ease;
}
.srv-card:hover .srv-img {
  transform: scale(1.05);
}

/* Card Content */
.srv-content {
  padding: 0 8px 8px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.srv-title {
  color: var(--dark-green);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.srv-divider {
  height: 1px;
  background-color: var(--border-color, #e5e7eb);
  margin-bottom: 16px;
  width: 100%;
}
.srv-card.lime-card .srv-divider {
  background-color: rgba(29, 54, 37, 0.15);
}

.srv-text {
  color: var(--text-gray);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.srv-card.lime-card .srv-text {
  color: rgba(29, 54, 37, 0.75);
}

.srv-link {
  color: var(--dark-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}
.srv-link:hover {
  opacity: 0.7;
  color: var(--dark-green);
}

/* Load More Button */
.btn-load-more {
  background-color: var(--dark-green);
  color: var(--lime-green);
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  transition: 0.3s ease;
  border: none;
}
.btn-load-more:hover {
  background-color: #122217;
  color: var(--lime-green);
}




/* ==========================================================================
   ABOUT PAGE: VIDEO & MISSION SECTION
   ========================================================================== */
.about-vision-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Video Banner Wrapper */
.video-banner-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.video-banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
}

/* Custom Play Button Overlay with Glassmorphism */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: rgba(0, 0, 0, 0.4);
}

.play-btn-inner {
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* The Play Triangle */
.play-btn-inner svg {
    width: 18px;
    height: 18px;
    fill: var(--dark-green, #1d3625);
    margin-left: 3px; /* Optically centers the triangle */
}

/* Vision & Mission Blocks */
.vm-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--dark-green, #1d3625);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-green, #bbfb26);
    font-size: 22px;
    margin-bottom: 24px;
}

.vm-title {
    color: var(--dark-green, #1d3625);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.vm-text {
    color: var(--text-gray, #7a7a7a);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .video-banner-img { height: 350px; }
    .vm-block { margin-bottom: 40px; }
}