/* Subsidy Gyaan — minimal overrides (keeps Enviro template look) */
p {
  text-align: justify;
}

/* Text logo */
.brand-logo-text {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #14213D !important;
  line-height: 1.2;
  display: block;
}

.brand-byline {
  display: block;
  color: #0D8B8B !important;
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 2px;
}

.footer .brand-logo-text {
  font-size: 1rem;
}

/* Hero tagline — prominent but balanced (~60px) */
.hero-heading.hero-tagline {
  color: #F28C28 !important;
  font-size: 60px;
  line-height: 1.15;
  font-weight: 700;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.01em;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-heading.hero-tagline .tagline-line {
  display: block;
  white-space: nowrap;
}

.hero-heading.hero-tagline .tagline-line:last-child {
  margin-left: 95px;
}

.hero-heading-block {
  margin-bottom: var(--_size---margin--4xsm);
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .hero-heading.hero-tagline {
    font-size: 44px;
  }

  .hero-heading.hero-tagline .tagline-line:last-child {
    margin-left: 70px;
  }
}

@media screen and (max-width: 768px) {
  .hero-heading.hero-tagline {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-heading.hero-tagline .tagline-line {
    white-space: normal;
  }

  .hero-heading.hero-tagline .tagline-line:last-child {
    margin-left: 55px;
  }
}

/* Hero stat numbers */
.hero-stat-num {
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-num.is-dark-color {
  color: #063232;
}

.hero-content-left .button-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Service slider */
.service-slider .w-slider-mask {
  display: flex;
  transition: transform 0.5s ease;
  white-space: nowrap;
  overflow: visible;
}

.service-slider .w-slide {
  flex: 0 0 100%;
  width: 100%;
  display: block;
  white-space: normal;
}

/* Marquee animations */
@keyframes brandMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes testimonialMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.brand-track {
  animation: brandMarquee 25s linear infinite;
  width: max-content;
}

.testimonial-main-wrap {
  display: flex;
  overflow: hidden;
}

.testimonial-main-wrap .testimonial-main-block {
  animation: testimonialMarquee 40s linear infinite;
  flex-shrink: 0;
}

/* FAQ accordion */
.accordion-item .w-dropdown-list {
  display: block;
  position: static;
  background: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.w--open .w-dropdown-list {
  max-height: 300px;
}

.accordion-item.w--open .vertical-line {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-item .vertical-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Nav dropdown */
.dropdown .w-dropdown-list {
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown.w--open .w-dropdown-list,
.dropdown:hover .w-dropdown-list {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Project tabs */
.project-tab-content-block {
  display: none;
}

.project-tab-content-block.w--tab-active {
  display: block;
}

.project-tab-link .project-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.project-tab-link.w--current .project-answer-wrap {
  max-height: 200px;
}

.project-tab-link.w--current .project-accordion-arrow {
  transform: rotate(180deg);
}

.project-accordion-arrow {
  transition: transform 0.3s ease;
}

/* Form states */
.w-form-done,
.w-form-fail {
  display: none;
  padding: 16px;
  border-radius: 12px;
  margin-top: 12px;
}

.w-form-done {
  background: #d4edda;
  color: #155724;
}

.w-form-fail {
  background: #f8d7da;
  color: #721c24;
}

.w-form-done.show,
.w-form-fail.show {
  display: block;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
@media screen and (max-width: 991px) {
  .navbar .w-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 50, 50, 0.95);
    border-radius: 20px;
    margin-top: 12px;
    padding: 16px;
  }

  .navbar.w--nav-menu-open .w-nav-menu {
    display: block;
  }

  .navbar .w-nav-button {
    display: block;
  }

  .nav-menu-block {
    width: 100% !important;
  }
}

/* Glassmorphism Header */
.header {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.navbar,
.navbar-block,
.brand-block,
.w-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.navbar,
.navbar-block {
  background-color: transparent !important;
}

.menu-link {
  color: #475569 !important;
  font-weight: 600;
}

.menu-link:hover,
.menu-link.w--current {
  color: #0D8B8B !important;
}

.dropdown-link {
  color: #475569 !important;
}

.dropdown-link:hover,
.dropdown-link.w--current {
  color: #0D8B8B !important;
  font-weight: 600;
}

.dropdown-arrow-icon {
  /* Turns the white/colored icon into #475569 (Dark Slate) */
  filter: brightness(0) saturate(100%) invert(32%) sepia(12%) saturate(984%) hue-rotate(177deg) brightness(94%) contrast(89%) !important;
  transition: filter 0.3s ease;
}

.dropdown-toggle:hover .dropdown-arrow-icon,
.dropdown:hover .dropdown-arrow-icon,
.dropdown-toggle .menu-link.w--current+.dropdown-arrow-icon {
  /* Turns the icon into #0D8B8B (Teal) on hover or active dropdown state */
  filter: brightness(0) saturate(100%) invert(33%) sepia(97%) saturate(1469%) hue-rotate(151deg) brightness(96%) contrast(92%) !important;
}

/* Custom Marquee Animation */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.custom-marquee-wrapper:hover {
  animation-play-state: paused !important;
}

/* IMPACT Redesign Styles */

/* Hero Colors & Spacing */
.hero-section {
  background-color: #FAF6EE !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: calc(100vh - 90px) !important;
  display: flex !important;
  align-items: flex-end !important;
}

/* Big Background Watermark Branding (Pushed below header, fully visible) */
.hero-bg-watermark {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(30px, 10vw, 150px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.5vw, 6px);
  color: rgba(12, 43, 33, 0.04);
  -webkit-text-stroke: 1.5px rgba(0, 181, 98, 0.12);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

@media screen and (max-width: 479px) {
  .hero-bg-watermark {
    top: 50px !important;
  }
}

/* Hero Content Styles */
.impact-hero-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 68px;
  color: #000000;
  line-height: 1.25;
  /* Increased to give breathing room for Hindi characters */
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-transform: none;
}

.impact-hero-subheading {
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #00B562;
  margin-bottom: 24px;
  /* Space between subheading and paragraph */
  letter-spacing: -0.5px;
  line-height: 1.35;
}

.impact-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 36px;
  /* Space between paragraph and buttons */
}

.hero-buttons-container {
  display: flex;
  gap: 20px;
  /* Space between Check Eligibility and Book Consultation buttons */
  align-items: center;
  flex-wrap: wrap;
}

.impact-btn-outline {
  border: 2px solid #00B562 !important;
  color: #00B562 !important;
  background: transparent !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 15px;
}

.impact-btn-outline:hover {
  background-color: rgba(0, 181, 98, 0.05) !important;
}

.impact-btn-solid {
  background-color: #00B562 !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0, 181, 98, 0.25);
  transition: all 0.3s ease;
  font-size: 15px;
}

.impact-btn-solid:hover {
  background-color: #009650 !important;
  box-shadow: 0 6px 18px rgba(0, 181, 98, 0.35) !important;
  transform: translateY(-1px);
}

/* Hero Collage CSS Grid (em-based for fluid scaling) */
.impact-collage-grid {
  font-size: 16px;
  /* Base scale */
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-rows: 8.75em 15em 10em;
  grid-gap: 1.25em;
  align-items: stretch;
  max-width: 40.625em;
  margin-left: auto;
  padding: 1.25em 0;
  width: 100%;
}

.impact-collage-item {
  border-radius: 2.1875em;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.05);
}

.impact-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stat Cards replacing old solid circles */
.collage-circle-green,
.hero-stat-card-green {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(135deg, #0c2b21 0%, #00B562 100%);
  border-radius: 2.1875em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2em;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 181, 98, 0.2);
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.collage-circle-green:hover,
.hero-stat-card-green:hover {
  transform: translateY(-4px);
}

.collage-wide-img {
  grid-column: 2 / 4;
  grid-row: 1;
  border-radius: 2.1875em;
}

.collage-left-mid-img {
  grid-column: 1;
  grid-row: 2;
  border-radius: 2.1875em;
}

.collage-center-mid-img {
  grid-column: 2;
  grid-row: 2 / 4;
  border-radius: 2.1875em;
}

.collage-right-mid-img {
  grid-column: 3;
  grid-row: 2;
  border-radius: 2.1875em;
}

.collage-left-bot-img {
  grid-column: 1;
  grid-row: 3;
  border-radius: 2.1875em;
}

.collage-circle-yellow,
.hero-stat-card-yellow {
  grid-column: 3;
  grid-row: 3;
  background: linear-gradient(135deg, #F28C28 0%, #D97706 100%);
  border-radius: 2.1875em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2em;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(242, 140, 40, 0.25);
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.collage-circle-yellow:hover,
.hero-stat-card-yellow:hover {
  transform: translateY(-4px);
}

.stat-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5em;
  line-height: 1.1;
  margin-bottom: 0.2em;
  color: #ffffff;
}

.stat-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

/* Hero Brand Elements */
.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(12, 43, 33, 0.05);
  border: 1px solid rgba(12, 43, 33, 0.15);
  border-radius: 50px;
  color: #0c2b21;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-brand-pill-dot {
  width: 7px;
  height: 7px;
  background-color: #00B562;
  border-radius: 50%;
}

.hero-highlight-span {
  color: #00B562;
  position: relative;
  display: inline-block;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.hero-trust-item span.check {
  color: #00B562;
  font-weight: 800;
}

/* About Section Styles */
.impact-about-section {
  background-color: #0c2b21 !important;
  /* Premium dark forest green to match site */
  padding: 50px 0 !important;
  position: relative;
  overflow: hidden;
}

.impact-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-gap: 60px;
  align-items: center;
}

.about-team-outer {
  width: 100%;
  overflow: visible;
  position: relative;
}

.about-team-container {
  display: flex;
  gap: 20px;
  margin-left: -120px;
  /* Shifts the first card off-screen left */
}

.team-card {
  position: relative;
  flex: 0 0 210px;
  height: 290px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f1f5f9;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
  box-sizing: border-box;
}

.team-card-name {
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.team-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.about-us-label {
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FEB52B !important;
  /* Golden-yellow accent to pop on green background */
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-us-heading {
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: #ffffff !important;
  /* White text for contrast on dark green background */
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: -1.5px;
}

.about-us-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85) !important;
  /* Semi-transparent white for readability */
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-btn-explore {
  background-color: #FEB52B !important;
  /* Golden-yellow button background */
  color: #0c2b21 !important;
  /* Deep forest green text */
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(254, 181, 43, 0.25) !important;
  transition: all 0.3s ease;
  font-size: 15px;
}

.about-btn-explore:hover {
  background-color: #e59a1f !important;
  /* Slightly darker gold on hover */
  color: #0c2b21 !important;
  box-shadow: 0 6px 18px rgba(254, 181, 43, 0.35) !important;
  transform: translateY(-1px);
}

/* About Left Visual Styling */
.about-left-visual {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-left-visual:hover .about-visual-img {
  transform: scale(1.04);
}

/* Spacing for Counter Section */
.counter-section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  /* Balanced bottom padding */
}

.counter-section .empty-space {
  display: none !important;
  /* Hide redundant empty-space spacer inside the counter section to keep margins identical */
}

.counter-main-block {
  margin-top: 0 !important;
  /* Reset any negative margin pulling it up */
}

/* Custom Services Section Styling */
.custom-services-section {
  background-color: #0c2b21 !important;
  /* Premium dark forest green */
  padding: 80px 0 !important;
  overflow: hidden;
}

.custom-services-grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  align-items: center;
  /* Vertically center left column with cards */
}

.custom-services-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.custom-services-right {
  position: relative;
  overflow: visible;
  min-width: 0;
  /* Prevent CSS Grid blowout/shrink issues */
}

/* Slider Controls (Arrows) — positioned above title */
.custom-slider-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

/* Override Webflow arrow positioning style to keep them side by side below the title */
.custom-slider-controls .custom-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-slider-controls .custom-arrow:hover {
  background: #FEB52B !important;
  /* Accent yellow */
  border-color: #FEB52B !important;
  transform: scale(1.05) !important;
}

/* Slider Wrapper and Track */
.custom-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.custom-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Card Wrapper - holds Webflow native card structure */
.custom-slider-card {
  flex: 0 0 calc(50% - 12px);
  /* 2 cards visible */
  width: calc(50% - 12px) !important;
  /* Force explicit width */
  max-width: calc(50% - 12px);
  display: block;
}

/* Service Card Inner Styles — Full-image card with text overlay */
.custom-slider-card .service-main-wrap {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  /* Prevent shrink-to-fit */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  height: 100%;
  min-height: 340px;
}

.custom-slider-card .service-main-wrap:hover .service-image {
  transform: scale(1.06);
}

/* Image fills the entire card as background */
.custom-slider-card .service-image-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.custom-slider-card .service-image {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Dark gradient overlay for text readability */
.custom-slider-card .service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(180deg,
      rgba(12, 43, 33, 0.75) 0%,
      /* Dark green overlay for premium look */
      rgba(12, 43, 33, 0.55) 40%,
      rgba(12, 43, 33, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Text content overlaid on top of image */
.custom-slider-card .service-single-block {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 340px;
  padding: 28px 24px;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0); /* Force GPU composite layer to prevent background image from overlaying on mobile */
}

.custom-slider-card .service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 8px;
}

.custom-slider-card .service-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* "Learn More >" button at bottom */
.custom-slider-card .service-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: fit-content;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-slider-card .service-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.custom-slider-card .service-button-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.custom-slider-card .service-arrow {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  /* Make arrow white */
  transition: transform 0.3s ease;
}

.custom-slider-card .service-main-wrap:hover .service-arrow {
  transform: translateX(4px);
}


/* Custom slider dot styling when nested in our custom section */
.custom-slider-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 40px !important;
}

.custom-slider-dots .w-slider-dot {
  background: rgba(255, 255, 255, 0.25) !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

.custom-slider-dots .w-slider-dot.w-active {
  background: #FEB52B !important;
  /* Mustard yellow active dot matching About theme */
  transform: scale(1.3) !important;
}

/* Responsiveness overrides inside grid layout */
@media screen and (max-width: 991px) {
  .custom-services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    align-items: stretch !important;
  }

  .custom-services-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .custom-slider-controls {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .custom-slider-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media screen and (max-width: 768px) {
  .custom-slider-card {
    flex: 0 0 calc(50% - 12px) !important;
    width: calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
  }

  .custom-slider-card .service-main-wrap {
    min-height: 280px;
  }

  .custom-slider-card .service-single-block {
    min-height: 280px;
  }

  .custom-slider-card .service-title {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 520px) {
  .custom-slider-card .service-single-block {
    padding: 16px 12px !important;
  }

  .custom-slider-card .service-title {
    font-size: 15px !important;
  }

  .custom-slider-card .service-text {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .custom-slider-card .service-button {
    padding: 6px 12px !important;
    border-radius: 6px !important;
  }

  .custom-slider-card .service-button-text {
    font-size: 11px !important;
  }

  .custom-slider-card .service-arrow {
    width: 10px !important;
    height: 10px !important;
  }
}

/* Responsiveness overrides */
@media screen and (max-width: 991px) {
  .impact-hero-title {
    font-size: 48px;
  }

  .impact-about-grid {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }

  .about-team-container {
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .impact-collage-grid {
    margin: 0 auto;
  }

  .about-left-visual {
    height: 380px;
  }
}

@media screen and (max-width: 520px) {
  .brand-byline {
    font-size: 0.65rem !important;
  }
}

/* Allow Subsidy Scheme images to display fully without cropping */
.project-image-block {
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

.project-tab-image {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  /* Keep the rounded corners */
}

@media screen and (max-width: 768px) {
  .impact-hero-title {
    font-size: 36px;
  }

  .about-us-heading {
    font-size: 36px;
  }

  .about-left-visual {
    height: 300px;
  }
}


/* =========================================
   Redesign: Complete Subsidy Section 
   ========================================= */

/* Main Section Background & Spacing */
.project-section {
  background-color: #f7f9f9 !important;
  /* Soft off-white to make cards pop */
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Fix title overlap by resetting absolute positioning from original template */
.heading-block.is-project {
  position: relative !important;
  inset: auto !important;
  height: auto !important;
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  text-align: center !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.heading-block.is-project .section-heading {
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Adjust the main flex container for the tabs to have a better gap */
.project-title-block .project-main-tab {
  display: flex !important;
  gap: 60px !important;
  align-items: flex-start !important;
}

/* Left Image Container (project-teb-content) */
.project-teb-content {
  flex: 1 !important;
  border-radius: 24px !important;
  overflow: visible !important;
  /* allow glow to show */
  position: relative !important;
}

/* Fix image height collapsing by forcing tab panes to 100% height */
.project-tab-content-block,
.project-teb-content .w-tab-pane {
  height: auto !important;
}

/* Add a glowing backdrop behind the image container */
.project-teb-content::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, rgba(6, 50, 50, 0.15) 0%, rgba(227, 87, 43, 0.15) 100%);
  border-radius: 32px;
  z-index: -1;
  filter: blur(20px);
  transition: background 0.5s ease;
}

/* Actual image block */
.project-image-block {
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px rgba(6, 50, 50, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  height: 620px !important;
  width: 100% !important;
  /* Force width to be bounded by parent column */
  background: #ffffff !important;
  /* Pure white background for logos */
  padding: 30px !important;
  /* Breathing room for the logos */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  z-index: 1;
}

.project-image-block img {
  border-radius: 20px !important;
  max-height: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
  /* Contain the logo without cropping */
  transition: transform 0.7s ease !important;
}

.project-image-block:hover img {
  transform: scale(1.05) !important;
}

/* Right Side: Tab Menu Container */
.tabs-menu {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

/* Interactive Cards (Tab Links) */
.project-tab-link {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(6, 50, 50, 0.05) !important;
  border-radius: 16px !important;
  padding: 24px 30px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  display: block !important;
  position: relative;
  overflow: hidden;
}

.project-tab-link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(6, 50, 50, 0.08) !important;
  border-color: rgba(6, 50, 50, 0.2) !important;
}

/* Active Tab State */
.project-tab-link.w--current {
  background: #0c2b21 !important;
  /* Premium dark forest green */
  border-color: #0c2b21 !important;
  box-shadow: 0 12px 30px rgba(12, 43, 33, 0.3) !important;
  transform: translateX(-10px) !important;
}

/* Decorative accent bar on active tab */
.project-tab-link.w--current::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: #e3572b;
  /* Vibrant orange accent */
  border-radius: 16px 0 0 16px;
}

/* Typography Inside Tabs */
.project-tab-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 8px !important;
}

.project-tab-header .accordion-tittle {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0c2b21 !important;
  transition: color 0.3s ease !important;
  font-family: 'Outfit', sans-serif !important;
}

/* When active, make title white */
.project-tab-link.w--current .accordion-tittle {
  color: #ffffff !important;
}

.project-answer-wrap .project-accordion-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  transition: color 0.3s ease !important;
}

/* When active, make text light */
.project-tab-link.w--current .project-accordion-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Icon / Arrow */
.project-accordion-icon-block {
  background: #f1f5f9 !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0 !important;
}

.project-accordion-arrow {
  width: 14px !important;
  height: 14px !important;
  transition: transform 0.3s ease !important;
}

/* Active Arrow State */
.project-tab-link.w--current .project-accordion-icon-block {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: none !important;
  /* Remove rotation */
}

.project-tab-link.w--current .project-accordion-arrow {
  display: none !important;
  /* Hide original arrow */
}

.project-tab-link.w--current .project-accordion-icon-block::after {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Mobile Adjustments */
@media screen and (max-width: 1024px) {
  .project-title-block .project-main-tab {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: stretch !important;
    /* Force stacked items to take full horizontal width */
  }

  .project-image-block {
    height: 400px !important;
  }

  .tabs-menu {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .project-tab-link.w--current {
    transform: none !important;
    /* Keep gaps even by disabling transform on mobile */
  }

  /* Reset fixed heights from desktop layout to collapse container and remove empty space */
  .projects-main-block,
  .project-right-block,
  .project-title-block,
  .project-main-tab,
  .project-teb-content {
    height: auto !important;
    min-height: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .project-image-block {
    height: 300px !important;
    padding: 15px !important;
  }
}

@media screen and (max-width: 520px) {
  .project-image-block {
    height: 220px !important;
    padding: 10px !important;
  }
}

/* Custom Breadcrumb Redesign */
.custom-breadcrumb {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(13, 139, 139, 0.1);
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  border: 1px solid #E2E8F0;
  position: relative;
  z-index: 10;
}

.custom-breadcrumb .breadcrumb-home {
  color: #1E73BE;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-breadcrumb .breadcrumb-home:hover {
  color: #0D8B8B;
}

.custom-breadcrumb .breadcrumb-divider {
  margin: 0 12px;
  opacity: 0.4;
  display: flex;
  align-items: center;
}

.custom-breadcrumb .breadcrumb-current {
  color: #14213D;
  font-weight: 700;
}

/* FAQ Accordion Redesign */
.accordion {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.accordion-item {
  background-color: #ffffff !important;
  border: 1px solid rgba(12, 43, 33, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
  width: 100% !important;
  display: block !important;
  position: relative !important;
  margin-bottom: 16px !important;
}

.accordion-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(12, 43, 33, 0.06) !important;
  border-color: rgba(12, 43, 33, 0.15) !important;
}

/* Open State */
.accordion-item.w--open {
  background-color: #f5fbf7 !important;
  /* Soft mint green */
  border-color: rgba(12, 43, 33, 0.15) !important;
  box-shadow: 0 10px 25px rgba(12, 43, 33, 0.08) !important;
}

/* Accordion Toggle (Clickable Header) */
.accordion-toggle {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px 30px !important;
  background: transparent !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 64px !important;
}

.accordion-toggle:focus {
  outline: none !important;
}

/* Accordion Title (Question) */
.accordion-tittle {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0c2b21 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding-right: 20px !important;
}

/* Accordion Icon Container */
.accordion-icon-block {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(12, 43, 33, 0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

.accordion-item.w--open .accordion-icon-block {
  background: #0c2b21 !important;
}

/* Icon Lines (+ and -) */
.accordion-icon-block .horizontal-line,
.accordion-icon-block .vertical-line {
  background-color: #0c2b21 !important;
  border-radius: 2px !important;
  position: absolute !important;
  transition: all 0.3s ease !important;
}

.accordion-icon-block .horizontal-line {
  width: 14px !important;
  height: 2px !important;
}

.accordion-icon-block .vertical-line {
  width: 2px !important;
  height: 14px !important;
}

.accordion-item.w--open .horizontal-line {
  background-color: #ffffff !important;
}

.accordion-item.w--open .vertical-line {
  background-color: #ffffff !important;
  transform: rotate(90deg) !important;
  opacity: 0 !important;
}

/* Accordion Content Wrapper */
.accordion-item .w-dropdown-list {
  display: block !important;
  position: static !important;
  background: transparent !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.accordion-item.w--open .w-dropdown-list {
  max-height: 250px !important;
}

/* Accordion Body */
.accordion-body {
  padding: 0 !important;
  /* No padding when collapsed to prevent text leak */
  background: transparent !important;
}

.accordion-item.w--open .accordion-body {
  padding: 0 30px 24px 30px !important;
  /* Padding only when open */
}

/* Accordion Answer Text */
.accordion-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin: 0 !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(12, 43, 33, 0.06) !important;
}

/* Home Process Section Styles */
.home-process-section {
  padding: 50px 0 !important;
  background-color: #f7f9f9 !important;
  /* Soft off-white to alternate section backgrounds */
}

.home-process-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 20px !important;
}

.home-process-step {
  background: #ffffff !important;
  border: 1px solid rgba(12, 43, 33, 0.08) !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
}

.home-process-step:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(12, 43, 33, 0.06) !important;
  border-color: rgba(12, 43, 33, 0.15) !important;
}

.home-process-num {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #00B562 !important;
  /* Primary brand green */
  margin-bottom: 16px !important;
  line-height: 1 !important;
}

.home-process-step h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0c2b21 !important;
  /* Deep green */
  margin: 0 0 12px 0 !important;
  line-height: 1.3 !important;
}

.home-process-step p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #475569 !important;
  /* Slate grey */
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* Responsiveness for Process Grid */
@media screen and (max-width: 991px) {
  .home-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .home-process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .home-process-step {
    padding: 24px !important;
  }
}

/* Global Homepage & About Page Section Padding (50px top & bottom) */
.main .hero-section,
.main .impact-about-section,
#about,
.main .services-section,
#services,
.main .project-section,
#schemes,
.main .testimonial-section,
#why-us,
.main .accordion-section,
.main .home-process-section,
#process,
.main .blog-section,
#articles,
.about-inner-hero,
.about-intro-section,
.about-stats-section,
.about-purpose-section,
.about-audience-section,
.why-choose-section,
.about-approach-section,
.about-knowledge-section,
.about-commitment-section,
.about-trust-section {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* Specific spacious padding for the Counter Section on the homepage */
.main .counter-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

/* Increase gap between counter metric cards */
.main .counter-main-block {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
  /* Increased gap from default */
  width: 100% !important;
}

.main .counter-single-block {
  margin: 0 !important;
  width: 100% !important;
}

@media screen and (max-width: 991px) {
  .main .counter-main-block {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media screen and (max-width: 479px) {
  .main .counter-main-block {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Hero Section container spacing to push hero grid content DOWN and utilize bottom space */
.main .hero-section {
  padding-top: 0 !important;
  padding-bottom: 20px !important;
}

.main .hero-section > .container > div {
  padding-top: 130px !important;
  padding-bottom: 30px !important;
}

/* Hide standard top/bottom empty-space elements globally to ensure consistent section padding, while keeping inner sub-spacers (.is-small) */
.empty-space:not(.is-small) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Premium Pill Button (Badge) Override */
.pill-button,
.hero-label {
  display: inline-block !important;
  width: fit-content !important;
  /* Restrict width to fit text only */
  background-color: transparent !important;
  color: #00B562 !important;
  /* Brand green */
  border: none !important;
  border-bottom: 2px solid #00B562 !important;
  /* Clean underline */
  padding: 0 0 4px 0 !important;
  /* 4px spacing between text and underline */
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  box-shadow: none !important;
  margin-bottom: 12px !important;
}

/* Also style the about-us-label which acts as the badge in the about section */
.about-us-label {
  display: inline-block !important;
  width: fit-content !important;
  /* Restrict width to fit text only */
  background-color: transparent !important;
  color: #FEB52B !important;
  /* Gold text */
  border: none !important;
  border-bottom: 2px solid #FEB52B !important;
  /* Clean gold underline */
  padding: 0 0 4px 0 !important;
  /* 4px spacing */
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

/* Styling for homepage process heading */
#process h2.section-heading {
  max-width: 100% !important;
  /* Allow the heading to take up full available container width */
  line-height: 1.45 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 24px !important;
}

#process .heading-block {
  max-width: 1000px !important;
  /* Increased width to allow heading to fit on 2 lines */
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 60px !important;
  /* Spacious margin below heading block */
}

/* Redesigned "Who We Support" Section */
.about-support-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-top: 20px !important;
}

.about-support-card {
  background: #ffffff !important;
  border: 1px solid rgba(12, 43, 33, 0.08) !important;
  border-radius: 20px !important;
  padding: 36px 30px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
}

.about-support-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 35px rgba(12, 43, 33, 0.08) !important;
}

/* Card Icons */
.support-icon-block {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  margin-bottom: 24px !important;
  transition: all 0.3s ease !important;
}

.icon-industrial {
  background-color: rgba(13, 139, 139, 0.08) !important;
  color: #0D8B8B !important;
}

.icon-agro {
  background-color: rgba(254, 181, 43, 0.08) !important;
  color: #FEB52B !important;
}

.icon-grassroots {
  background-color: rgba(0, 181, 98, 0.08) !important;
  color: #00B562 !important;
}

.about-support-card:hover .support-icon-block {
  transform: scale(1.08) rotate(3deg) !important;
}

/* Card Heading & Desc */
.about-support-card h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0c2b21 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
}

.support-card-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 0 24px 0 !important;
}

/* Card List */
.support-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: auto !important;
}

.support-list-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #334155 !important;
}

.support-list-item span {
  color: #00B562 !important;
  /* Green checkmark */
  font-weight: 700 !important;
}

/* Hover effects targeting borders */
.about-support-card.card-industrial:hover {
  border-color: rgba(13, 139, 139, 0.25) !important;
}

.about-support-card.card-agro:hover {
  border-color: rgba(254, 181, 43, 0.25) !important;
}

.about-support-card.card-grassroots:hover {
  border-color: rgba(0, 181, 98, 0.25) !important;
}

/* Responsive grid */
@media screen and (max-width: 1024px) {
  .about-support-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
}

@media screen and (max-width: 768px) {
  .about-support-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .about-support-card {
    padding: 30px 24px !important;
  }
}

/* Styling for About Page headings */
.about-audience-section .heading-block,
.about-commitment-section .heading-block {
  max-width: 1000px !important;
  /* Increase width to allow heading to fit in 2 lines */
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-audience-section h2.section-heading,
.about-commitment-section h2.section-heading {
  max-width: 100% !important;
  /* Ensure heading text takes up full available width */
  line-height: 1.2 !important;
}

/* Styling for About Page Knowledge card heading */
.about-knowledge-card {
  max-width: 1000px !important;
  /* Increase width to allow heading to fit in 2 lines */
}

.about-knowledge-card h2.section-heading {
  max-width: 100% !important;
  /* Ensure heading text takes up full available width */
  line-height: 1.2 !important;
}

/* Services Page Enhancements */
.services-section .empty-space:not(.is-small) {
  display: none !important;
}

.services-section .heading-block.is-service {
  max-width: 1000px !important;
  /* Increase width to allow heading to fit in 2 lines */
  margin-left: auto !important;
  margin-right: auto !important;
}

.services-section h2.section-heading.is-service {
  max-width: 100% !important;
  /* Ensure heading text takes up full available width */
  line-height: 1.2 !important;
}

/* Center align Scheme Details heading block */
.sub-accordion-section .heading-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-accordion-section .heading-block .section-intro-text {
  padding-top: 15px;
}

/* Add gap between buttons in hero section */
.about-inner-hero-content .button-block.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Center align text in FAQ section */
.sub-faq-section .section-intro-text {
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
}

/* Entrance Animations for Hero Collage Components */
@keyframes greenCircleEntrance {
  from {
    opacity: 0;
    transform: translateX(-120px) scale(0.6);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes yellowCircleEntrance {
  from {
    opacity: 0;
    transform: translateX(120px) scale(0.6);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes collageImageSlideDown {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }

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

@keyframes collageImageSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes collageImageSlideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes collageImageZoom {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.collage-circle-green {
  opacity: 0;
  animation: greenCircleEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.collage-circle-yellow {
  opacity: 0;
  animation: yellowCircleEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.collage-wide-img {
  opacity: 0;
  animation: collageImageSlideDown 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.collage-left-mid-img {
  opacity: 0;
  animation: collageImageSlideLeft 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.collage-right-mid-img {
  opacity: 0;
  animation: collageImageSlideRight 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.collage-left-bot-img {
  opacity: 0;
  animation: collageImageSlideLeft 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.collage-center-mid-img {
  opacity: 0;
  animation: collageImageZoom 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Hero Grid Wrapper (Replacing Inline Grid) */
.hero-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

/* =========================================
   Responsiveness for 1024px Max Width
   ========================================= */
@media screen and (max-width: 1200px) {
  .impact-collage-grid {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 1024px) {
  .hero-grid-wrap {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    text-align: center !important;
    padding: 40px 0 !important;
  }

  .impact-hero-title,
  .impact-hero-subheading,
  .impact-hero-text {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-buttons-container {
    justify-content: center !important;
  }

  .impact-collage-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 11em 11em !important;
    grid-gap: 1em !important;
    max-width: 25em !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 14px !important;
    height: auto !important;
  }

  .collage-circle-green,
  .collage-circle-yellow,
  .collage-left-bot-img,
  .collage-right-mid-img {
    display: none !important;
  }

  .collage-wide-img {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
    border-radius: 1.5em !important;
  }

  .collage-left-mid-img {
    grid-column: 1 !important;
    grid-row: 2 !important;
    border-radius: 1.5em !important;
  }

  .collage-center-mid-img {
    grid-column: 2 !important;
    grid-row: 2 !important;
    border-radius: 1.5em !important;
    background-color: #ffffff !important;
    padding: 1em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .custom-services-grid {
    grid-template-columns: 320px 1fr !important;
    gap: 30px !important;
  }

  .impact-about-grid {
    grid-gap: 30px !important;
  }

  /* FAQ Accordion Section Stacking */
  .accordion-main-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .accordion-right-block,
  .accordion-left-block {
    width: 100% !important;
    max-width: 100% !important;
  }

  .accordion-right-content-block {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 450px !important;
    /* Keep it from stretching too wide on tablet */
  }

  /* Project Heading Block Responsiveness */
  .heading-block.is-project {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .heading-block.is-project .section-heading {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }

  /* Global spacing reductions to remove massive gaps on mobile/tablet */
  .empty-space {
    min-height: 40px !important;
  }

  .project-section {
    padding-top: 0px !important;
    /* Completely remove top padding on mobile/tablet */
    padding-bottom: 30px !important;
  }

  .is-none,
  .empty-space.is-none {
    display: none !important;
    /* Ensure is-none spacer is completely hidden */
  }

  /* Remove top gap for Why Choose Us section */
  #why-us .empty-space {
    display: none !important;
  }

  .main .testimonial-section,
  #why-us {
    padding-top: 10px !important;
    padding-bottom: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .impact-collage-grid {
    font-size: 13px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Dynamic fluid sizing for Hero Collage on Mobile */
@media screen and (max-width: 768px) {
  .impact-collage-grid {
    font-size: 11px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Smaller margins and fonts for project heading on mobile */
  .heading-block.is-project {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
  }

  .heading-block.is-project .section-heading {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 520px) {
  .impact-collage-grid {
    font-size: 9px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Force 2x2 grid for footer on all mobile and tablet viewports */
@media screen and (max-width: 1199px) {
  .custom-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 30px !important;
    /* Balanced row-gap and column-gap */
  }
}

/* Collapse footer to 1 column below 520px */
@media screen and (max-width: 520px) {
  .custom-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Blog/Articles Section Mobile Responsiveness below 520px */
  .blog-collection-list,
  .w-dyn-items {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-single-block {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
  .blog-image-wrap {
    display: block !important;
    width: 100% !important;
  }
  .blog-image {
    width: 100% !important;
    height: 180px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }
  .card-img {
    width: 100% !important;
    border-radius: 12px 12px 0 0 !important;
    box-sizing: border-box !important;
  }
  .blog-post-content-block {
    padding: 20px 15px !important;
    box-sizing: border-box !important;
  }
  .blog-meta-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* Mobile Navbar Hamburger & Dropdown Visibility */
.menu-button.w-nav-button,
.menu-button.w-nav-button .w-icon-nav-menu {
  color: #0c2b21 !important; /* Make hamburger icon dark forest green */
  background-color: transparent !important;
  font-size: 24px !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media screen and (max-width: 991px) {
  .nav-menu-block.w-nav-menu {
    background-color: #FAF6EE !important; /* Premium cream matching hero background */
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(12, 43, 33, 0.12) !important;
    padding: 24px !important;
    margin-top: 15px !important;
    border: 1px solid rgba(12, 43, 33, 0.05) !important;
  }
  
  .nav-menu-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .menu-link {
    color: #0c2b21 !important; /* Dark green links */
    padding: 12px 16px !important;
    border-radius: 8px !important;
    transition: background-color 0.2s ease !important;
    width: 100% !important;
    display: block !important;
  }

  .menu-link:hover,
  .menu-link.w--current {
    background-color: rgba(12, 43, 33, 0.05) !important;
    color: #0D8B8B !important; /* Teal accent on active/hover */
  }

  /* Dropdown styling for sub-menus on mobile */
  .dropdown-list.w-dropdown-list {
    background-color: rgba(12, 43, 33, 0.03) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    margin-top: 6px !important;
    position: static !important; /* In-flow layout */
    box-shadow: none !important;
    border: 1px solid rgba(12, 43, 33, 0.03) !important;
    width: 100% !important;
  }

  .dropdown-link.w-dropdown-link {
    color: #475569 !important;
    padding: 10px 16px !important;
    border-radius: 6px !important;
    display: block !important;
  }

  .dropdown-link.w-dropdown-link:hover {
    background-color: rgba(12, 43, 33, 0.05) !important;
    color: #0D8B8B !important;
  }

  .dropdown-toggle .dropdown-arrow-icon {
    filter: brightness(0) saturate(100%) invert(12%) sepia(34%) saturate(958%) hue-rotate(113deg) brightness(95%) contrast(98%) !important; /* Hex #0c2b21 */
  }
}

.hero-highlight-span {
  color: #f59e0b !important;
}

/* Hide hamburger menu on desktop widths to prevent layout issues from long CTA text */
@media screen and (min-width: 992px) {
  .menu-button.w-nav-button {
    display: none !important;
  }
}

/* Make header full width across all screens */
.header .container.w-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media screen and (min-width: 992px) {
  .header .container.w-container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

.hero-trust-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
  background-color: rgba(0, 181, 98, 0.08);
  padding: 8px 12px;
  border-radius: 6px;
}

.hero-trust-badge svg {
  color: #00B562;
}

/* Why Choose Us Grid */
.why-us-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.why-us-card-new {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-us-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: #00B562;
}
.why-us-icon-new {
  font-size: 24px;
  background: rgba(0, 181, 98, 0.1);
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.why-us-text-new {
  font-size: 16px;
  font-weight: 600;
  color: #14213D;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

/* Fancy Cinematic Preloader */
body.loading {
  overflow: hidden;
}

.fancy-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-bg {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #ffffff; /* White loading screen background */
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}
.preloader-left {
  left: 0;
  transform-origin: left;
}
.preloader-right {
  right: 0;
  transform-origin: right;
}

body.loaded .preloader-left {
  transform: translateX(-100%);
}
body.loaded .preloader-right {
  transform: translateX(100%);
}

.fancy-preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

body.loaded .fancy-preloader-content {
  opacity: 0;
  transform: scale(1.2);
  pointer-events: none;
}

.fancy-logo-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fancy-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  /* Wipe reveal effect to simulate drawing */
  -webkit-mask-image: linear-gradient(120deg, black 50%, rgba(0,0,0,0) 50%);
  -webkit-mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
  animation: logoWipeReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards, subtleFloat 3s infinite ease-in-out 1.2s;
}

.fancy-logo-ring {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(12, 43, 33, 0.2);
  border-top-color: #f7a01d; /* Brand orange/gold */
  opacity: 0;
  animation: ringReveal 0.8s ease forwards 0.8s, spinRing 4s linear infinite 0.8s;
  z-index: 1;
}

.fancy-brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 52px; /* Increased font size for bigger branding */
  font-weight: 800;
  color: #0c2b21; /* Dark green for visibility on white background */
  letter-spacing: 2px;
  line-height: 1.2;
  margin-top: 35px; /* Added space between logo and text */
  margin-bottom: 20px; /* Added space between this and subtitle */
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: brandEntrance 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

@media screen and (max-width: 480px) {
  .fancy-brand-text {
    font-size: 28px !important;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
  }
}

.fancy-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f7a01d; /* Brand golden/orange */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px; /* Adjusted to work with margin-bottom above */
  opacity: 0;
  transform: translateY(15px);
  animation: textEntrance 0.8s ease forwards 0.7s;
}

@keyframes logoWipeReveal {
  0% { -webkit-mask-position: 100% 0; transform: scale(0.9); }
  100% { -webkit-mask-position: 0% 0; transform: scale(1); }
}

@keyframes ringReveal {
  0% { opacity: 0; transform: scale(0.8) rotate(-45deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes textEntrance {
  0% { opacity: 0; transform: translateY(20px); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}

@keyframes brandEntrance {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); filter: blur(10px); letter-spacing: 0px; }
  50% { opacity: 1; filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 6px; }
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Floating contact buttons */
.floating-contact-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp {
  background-color: #25D366;
}

.floating-btn.call {
  background-color: #0D7C83;
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Global Premium Hover Effects for Cards & Box Components */
.why-us-card-new,
.home-process-step,
.who-card,
.sub-trust-card,
.testimonial-card-block,
.service-card,
.industry-card,
.blog-card,
.blog-collection-item {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-us-card-new:hover,
.home-process-step:hover,
.who-card:hover,
.sub-trust-card:hover,
.testimonial-card-block:hover,
.service-card:hover,
.industry-card:hover,
.blog-card:hover,
.blog-collection-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 35px rgba(13, 139, 139, 0.08) !important;
  border-color: #0d8b8b !important;
}

/* Mobile FAQ Alignment Fix */
@media screen and (max-width: 767px) {
  .accordion-tittle,
  .accordion-text {
    text-align: center !important;
  }
}