:root {
  --green: #08811e;
  --red: #c02d17;
  --white: #ffffff;
  --dark: #1c1c1c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* HEADER */
.acm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.acm-nav-container {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
}

.acm-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.acm-nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.acm-nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.acm-nav-menu a:hover {
  color: var(--green);
}

/* HAMBURGER */
.acm-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.acm-menu-btn span {
  display: block;
  height: 3px;
  width: 28px;
  margin: 5px auto;
  background: var(--green);
  border-radius: 999px;
  transition: 0.35s ease;
}

.acm-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.acm-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.acm-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */
.acm-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 4% 60px;
  background: #000;
}

.acm-hero-slider,
.acm-hero-slide,
.acm-hero-overlay {
  position: absolute;
  inset: 0;
}

.acm-hero-slider {
  z-index: 1;
}

.acm-hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.acm-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.acm-hero-overlay {
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.58),
    rgba(0,0,0,.68)
  );
}

/* FLOATING SEARCH */
.acm-floating-search {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: min(760px, 90%);
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  animation: searchDrop 0.9s ease both;
}

.acm-floating-search input {
  flex: 1;
  border: none;
  outline: none;
  height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  font-family: inherit;
}

.acm-floating-search button {
  border: none;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.acm-floating-search button:hover {
  background: #a62614;
}

/* SEARCH RESULTS */
.acm-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 10px;
  right: 10px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  z-index: 20;
}

.acm-search-results.active {
  display: block;
}

.acm-search-results a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--dark);
  border-bottom: 1px solid #eee;
}

.acm-search-results a:hover {
  background: #f8fbf8;
  color: var(--green);
}

/* HERO CONTENT CENTERED */
.acm-hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  margin: 0 auto;
  padding-top: 90px; /* pushes content below search bar */
  color: white;
  text-align: center;
  animation: fadeUp 1s ease both;
}

.acm-hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.acm-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.acm-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.75;
}

/* BUTTONS */
.acm-hero-buttons {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.acm-btn {
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.acm-btn-green {
  background: var(--green);
  color: white;
}

.acm-btn-red {
  background: var(--red);
  color: white;
}

.acm-btn-outline {
  border: 2px solid white;
  color: white;
}

.acm-btn:hover {
  transform: translateY(-3px);
}

.acm-btn-outline:hover {
  background: white;
  color: var(--green);
}

/* TRUST COUNTERS */
.acm-trust-row {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  max-width: 820px;
}

.acm-trust-row div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}

.acm-trust-row strong {
  display: block;
  font-size: 1.55rem;
  color: white;
}

.acm-trust-row span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.86);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .acm-menu-btn {
    display: block;
  }

  .acm-nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: white;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-12px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
  }

  .acm-nav-menu.active {
    max-height: 540px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .acm-nav-menu a {
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 700px) {
  .acm-hero {
    min-height: 100svh;
    padding: 160px 5% 40px;
  }

  .acm-logo span {
    font-size: 0.78rem;
  }

  .acm-logo img {
    width: 46px;
    height: 46px;
  }

  .acm-floating-search {
    top: 92px;
    width: 92%;
    border-radius: 18px;
    flex-direction: column;
  }

  .acm-floating-search button {
    width: 100%;
  }

  .acm-hero-buttons {
    flex-direction: column;
  }

  .acm-btn {
    width: 100%;
  }

  .acm-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 430px) {
  .acm-trust-row {
    grid-template-columns: 1fr;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes searchDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}






/*====================================================================About Us===============================================================*/
.acu-about-premium {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(192,45,23,0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.acu-about-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.acu-about-left {
  animation: acuFadeLeft 0.9s ease both;
}

.acu-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c02d17;
  font-weight: 700;
  margin-bottom: 18px;
}

.acu-about-tag::before {
  content: "";
  width: 46px;
  height: 2px;
  background: #c02d17;
}

.acu-about-left h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 24px;
  color: #1c1c1c;
}

.acu-about-left h2 span {
  display: block;
  color: #08811e;
}

.acu-about-lead {
  max-width: 620px;
  color: #555;
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.acu-about-statement {
  display: flex;
  gap: 18px;
  max-width: 640px;
  margin-bottom: 34px;
}

.acu-about-statement span {
  width: 6px;
  min-width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #08811e, #c02d17);
}

.acu-about-statement p {
  color: #444;
  line-height: 1.9;
  font-weight: 500;
}

.acu-about-btn {
  display: inline-flex;
  text-decoration: none;
  background: #08811e;
  color: white;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.35s ease;
}

.acu-about-btn:hover {
  background: #c02d17;
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(192,45,23,0.25);
}

/* IMAGE SIDE */
.acu-about-right {
  position: relative;
  min-height: 560px;
  animation: acuFadeRight 0.9s ease both;
}

.acu-about-image-wrap {
  position: absolute;
  inset: 40px 30px 0 0;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
}

.acu-about-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.35), transparent),
    linear-gradient(to right, rgba(8,129,30,0.25), transparent);
  z-index: 2;
}

.acu-about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: acuImageZoom 8s ease-in-out infinite alternate;
}

.acu-about-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 78%;
  height: 82%;
  border: 2px solid rgba(8,129,30,0.18);
  border-radius: 42px;
  z-index: 0;
}

.acu-about-floating-text {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.acu-about-floating-text strong {
  display: block;
  color: #08811e;
  font-size: 1.3rem;
}

.acu-about-floating-text span {
  color: #555;
  font-size: 0.88rem;
  font-weight: 600;
}

.acu-float-one {
  top: 80px;
  left: -18px;
  animation: acuFloatOne 4s ease-in-out infinite;
}

.acu-float-two {
  right: 0;
  bottom: 42px;
  animation: acuFloatTwo 4.5s ease-in-out infinite;
}

/* VALUES STRIP */
.acu-about-values {
  width: min(1180px, 92%);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(8,129,30,0.15);
  border-bottom: 1px solid rgba(8,129,30,0.15);
}

.acu-about-values div {
  padding: 32px 28px;
  border-right: 1px solid rgba(8,129,30,0.15);
  animation: acuFadeUp 0.8s ease both;
}

.acu-about-values div:last-child {
  border-right: none;
}

.acu-about-values span {
  color: #c02d17;
  font-weight: 800;
  font-size: 0.95rem;
}

.acu-about-values h3 {
  margin: 10px 0;
  color: #1c1c1c;
  font-size: 1.15rem;
}

.acu-about-values p {
  color: #555;
  line-height: 1.7;
  font-size: 0.94rem;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .acu-about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .acu-about-right {
    min-height: 520px;
  }

  .acu-about-values {
    grid-template-columns: 1fr;
  }

  .acu-about-values div {
    border-right: none;
    border-bottom: 1px solid rgba(8,129,30,0.15);
  }

  .acu-about-values div:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .acu-about-premium {
    padding: 80px 0;
  }

  .acu-about-right {
    min-height: 430px;
  }

  .acu-about-image-wrap {
    inset: 36px 0 0 0;
    border-radius: 28px;
  }

  .acu-about-right::before {
    left: 0;
    width: 92%;
    border-radius: 28px;
  }

  .acu-about-floating-text {
    padding: 14px 18px;
  }

  .acu-float-one {
    top: 58px;
    left: 10px;
  }

  .acu-float-two {
    right: 10px;
    bottom: 24px;
  }
}

/* ANIMATIONS */
@keyframes acuFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes acuFadeRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes acuFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acuImageZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes acuFloatOne {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes acuFloatTwo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}



 
/*==============================================================Teams section=============================================================*/
 .acu-team-carousel-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(192,45,23,0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.acu-team-carousel-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.acu-team-carousel-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  animation: acuFadeUp 0.8s ease both;
}

.acu-team-carousel-header span {
  color: #c02d17;
  font-weight: 800;
}

.acu-team-carousel-header h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 12px 0 16px;
  color: #1c1c1c;
}

.acu-team-carousel-header p {
  color: #555;
  line-height: 1.85;
}

.acu-team-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acu-team-stage {
  position: relative;
  width: min(860px, 100%);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acu-team-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(8,129,30,0.12), rgba(192,45,23,0.1));
  animation: acuSoftPulse 4s ease-in-out infinite;
}

.acu-team-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(80px) scale(0.96);
  transition: 0.7s ease;
}

.acu-team-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.acu-team-profile {
  position: relative;
  width: 330px;
  height: 330px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #08811e, #c02d17);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  animation: acuImageFloat 4s ease-in-out infinite;
}

.acu-team-profile::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(8,129,30,0.45);
  animation: acuRotate 12s linear infinite;
}

.acu-team-profile::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 45px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 8px solid rgba(8,129,30,0.16);
}

.acu-team-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid white;
  border-radius: 50%;
  display: block;
}

.acu-team-details {
  position: relative;
  z-index: 2;
}

.acu-team-details span {
  color: #c02d17;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 12px;
}

.acu-team-details h3 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #1c1c1c;
  margin-bottom: 14px;
}

.acu-team-details p {
  color: #08811e;
  font-weight: 800;
  font-size: 1.15rem;
}

.acu-team-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #08811e;
  font-size: 1.7rem;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
  transition: 0.35s ease;
  z-index: 5;
}

.acu-team-arrow:hover {
  background: #08811e;
  color: white;
  transform: translateY(-4px);
}

.acu-team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.acu-team-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(8,129,30,0.25);
  cursor: pointer;
  transition: 0.35s ease;
}

.acu-team-dots button.active {
  width: 34px;
  background: #08811e;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .acu-team-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .acu-team-stage {
    min-height: 620px;
  }

  .acu-team-profile {
    width: 280px;
    height: 280px;
  }

  .acu-team-arrow {
    position: absolute;
    bottom: -20px;
  }

  .acu-team-prev {
    left: 28%;
  }

  .acu-team-next {
    right: 28%;
  }

  .acu-team-dots {
    margin-top: 70px;
  }
}

@media (max-width: 500px) {
  .acu-team-carousel-section {
    padding: 80px 0;
  }

  .acu-team-stage {
    min-height: 560px;
  }

  .acu-team-profile {
    width: 230px;
    height: 230px;
  }

  .acu-team-prev {
    left: 18%;
  }

  .acu-team-next {
    right: 18%;
  }
}

/* ANIMATIONS */
@keyframes acuFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acuImageFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes acuRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes acuSoftPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
/*=====================Partners below team ==========================*/
/* =========================
   ACUMEN PARTNERS
========================= */

.ac-partners-section {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbf8 100%
    );

  overflow: hidden;
}

.ac-partners-section::before {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  right: -120px;
  top: -120px;

  background: rgba(8, 129, 30, 0.06);

  border-radius: 50%;

  filter: blur(10px);
}

.ac-partners-header {
  position: relative;
  z-index: 2;

  max-width: 760px;

  margin: auto auto 55px;

  padding: 0 20px;

  text-align: center;
}

.ac-partners-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(8, 129, 30, 0.08);

  color: #08811e;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 20px;
}

.ac-partners-header h2 {
  margin: 0 0 18px;

  font-size: 46px;
  line-height: 1.05;

  color: #101010;
  font-weight: 900;
}

.ac-partners-header p {
  margin: 0 auto;

  max-width: 620px;

  color: #5f5f5f;

  font-size: 16px;
  line-height: 1.9;
}

/* =========================
   SLIDER
========================= */

.ac-partners-slider {
  position: relative;
  overflow: hidden;
}

.ac-partners-track {
  display: flex;
  align-items: center;
  gap: 26px;

  width: max-content;

  animation: acPartnerScroll 28s linear infinite;
}

.ac-partners-track:hover {
  animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.ac-partner-card {
  width: 230px;
  height: 120px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border-radius: 24px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.35s ease;
}

.ac-partner-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.1);

  border-color: rgba(8, 129, 30, 0.2);
}

.ac-partner-card img {
  max-width: 140px;
  max-height: 60px;

  object-fit: contain;

  opacity: 0.9;

  transition: 0.35s ease;
}

.ac-partner-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* =========================
   ANIMATION
========================= */

@keyframes acPartnerScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .ac-partners-section {
    padding: 70px 0;
  }

  .ac-partners-header h2 {
    font-size: 34px;
  }

  .ac-partners-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .ac-partner-card {
    width: 180px;
    height: 100px;
  }

  .ac-partner-card img {
    max-width: 110px;
  }

}







/*============================================================================What we offer=========================================================*/
.ac-offer-editorial {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(192,45,23,0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.ac-offer-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.ac-offer-heading {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
  animation: acOfferFadeUp 0.8s ease both;
}

.ac-offer-heading span {
  display: inline-block;
  color: #c02d17;
  font-weight: 800;
  margin-bottom: 12px;
}

.ac-offer-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.ac-offer-heading p {
  color: #555;
  line-height: 1.85;
}

/* MAIN LAYOUT */
.ac-offer-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.ac-offer-layout::before {
  content: "";
  position: absolute;
  left: 51%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8,129,30,0.28),
    rgba(192,45,23,0.24),
    transparent
  );
}

/* LEFT */
.ac-offer-main,
.ac-credit-main {
  position: relative;
  animation: acOfferFadeUp 0.9s ease both;
}

.ac-credit-main {
  animation-delay: 0.2s;
}

.ac-offer-label {
  color: #08811e;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.ac-offer-label.red {
  color: #c02d17;
}

.ac-offer-main h3,
.ac-credit-main h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #1c1c1c;
}

.ac-offer-main > p,
.ac-credit-main > p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 34px;
}

/* DOCUMENT RAIL - NOT CARDS */
.ac-document-rail {
  position: relative;
  padding-left: 34px;
  margin-bottom: 34px;
}

.ac-document-rail::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    #08811e,
    rgba(8,129,30,0.18)
  );
}

.ac-document-rail div {
  position: relative;
  padding: 0 0 24px;
  opacity: 0;
  transform: translateX(-24px);
  animation: acRailReveal 0.7s ease forwards;
}

.ac-document-rail div:nth-child(1) { animation-delay: 0.10s; }
.ac-document-rail div:nth-child(2) { animation-delay: 0.18s; }
.ac-document-rail div:nth-child(3) { animation-delay: 0.26s; }
.ac-document-rail div:nth-child(4) { animation-delay: 0.34s; }
.ac-document-rail div:nth-child(5) { animation-delay: 0.42s; }
.ac-document-rail div:nth-child(6) { animation-delay: 0.50s; }

.ac-document-rail div::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid #08811e;
  box-shadow: 0 0 0 8px rgba(8,129,30,0.08);
}

.ac-document-rail strong {
  display: block;
  color: #1c1c1c;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: 0.3s ease;
}

.ac-document-rail span {
  color: #555;
  font-size: 0.92rem;
}

.ac-document-rail div:hover strong {
  color: #08811e;
  transform: translateX(5px);
}

/* CREDIT SIDE */
.ac-credit-line {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.ac-credit-line span {
  position: relative;
  display: block;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid rgba(192,45,23,0.18);
  color: #1c1c1c;
  font-weight: 700;
  opacity: 0;
  transform: translateX(26px);
  animation: acCreditReveal 0.7s ease forwards;
}

.ac-credit-line span:nth-child(1) { animation-delay: 0.18s; }
.ac-credit-line span:nth-child(2) { animation-delay: 0.28s; }
.ac-credit-line span:nth-child(3) { animation-delay: 0.38s; }
.ac-credit-line span:nth-child(4) { animation-delay: 0.48s; }

.ac-credit-line span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(192,45,23,0.1);
  color: #c02d17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.ac-credit-statement {
  position: relative;
  padding-left: 22px;
  margin-bottom: 34px;
}

.ac-credit-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c02d17, #08811e);
}

.ac-credit-statement strong {
  display: block;
  color: #c02d17;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.ac-credit-statement p {
  color: #555;
  line-height: 1.75;
}

/* BUTTONS */
.ac-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  transition: 0.35s ease;
}

.ac-green-btn {
  background: #08811e;
}

.ac-red-btn {
  background: #c02d17;
}

.ac-offer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ac-offer-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ac-offer-layout::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .ac-offer-editorial {
    padding: 80px 0;
  }

  .ac-offer-heading {
    margin-bottom: 48px;
  }

  .ac-document-rail {
    padding-left: 30px;
  }

  .ac-document-rail div::before {
    left: -30px;
  }

  .ac-offer-btn {
    width: 100%;
  }
}

/* ANIMATIONS */
@keyframes acOfferFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acRailReveal {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes acCreditReveal {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}






/*=================================================================partners and team=================================================*/
.partners-team-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  padding: 90px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-team-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partners-block,
.team-block {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  padding: 90px 0;;
  border-radius: 18px;
  padding: 34px;
  
}

.partners-block {
  background: #ffffff;
  margin-bottom: 28px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.07);
}


.section-tag {
  display: inline-block;
  color: #c02d17;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.partners-block h2,
.team-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1c1c1c;
}

.section-intro {
  color: #555;
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* PARTNERS */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.partners-logos img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: 0.3s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* TEAM */
.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.team-member {
  text-align: center;
  flex: 1 1 150px;
  max-width: 170px;
}

.team-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #08811e;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #08811e;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.88rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .partners-block,
  .team-block {
    padding: 26px 22px;
  }

  .team-row {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .partners-logos {
    justify-content: center;
  }

  .team-member {
    max-width: 130px;
  }

  .team-img {
    width: 85px;
    height: 85px;
  }
}




/* PLACEHOLDERS */
.placeholder-section {
  padding: 80px 0;
}

.alt-bg {
  background: var(--light);
}

/* FOOTER */
.footer {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.footer h2,
.footer p {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .offer-box {
    padding: 28px 22px;
  }

  .logo {
    font-size: 0.9rem;
  }

  .hero-slide img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }
}




/*================================what we offer and microcredit========================================*/
.acumen-offer-experience {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(192,45,23,0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.acumen-offer-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.acumen-offer-head {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
  animation: acumenOfferFadeUp 0.8s ease both;
}

.acumen-offer-head span {
  color: #c02d17;
  font-weight: 800;
}

.acumen-offer-head h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 12px 0 16px;
  color: #1c1c1c;
}

.acumen-offer-head p {
  color: #555;
  line-height: 1.85;
}

.acumen-offer-switch {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.acumen-offer-tab {
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  background: transparent;
  color: #08811e;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid rgba(8,129,30,0.2);
  transition: 0.35s ease;
}

.acumen-offer-tab.red {
  color: #c02d17;
  border-color: rgba(192,45,23,0.22);
}

.acumen-offer-tab:hover {
  background: #08811e;
  color: white;
  transform: translateY(-4px);
}

.acumen-offer-tab.red:hover {
  background: #c02d17;
}

/* FULL REVEAL PANEL */
.acumen-reveal-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4faf5 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: 0.75s cubic-bezier(.77,0,.18,1);
  overflow: hidden;
}

.acumen-reveal-panel.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.acumen-reveal-panel.red-mode {
  background:
    radial-gradient(circle at top left, rgba(192,45,23,0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff7f5 100%);
}

.acumen-reveal-panel::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  right: -260px;
  top: -160px;
  background: rgba(8,129,30,0.08);
  animation: acumenBlobFloat 6s ease-in-out infinite;
}

.acumen-reveal-panel.red-mode::before {
  background: rgba(192,45,23,0.08);
}

.acumen-reveal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #c02d17;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 16px 38px rgba(0,0,0,0.14);
  transition: 0.35s ease;
}

.acumen-reveal-close:hover {
  background: #c02d17;
  color: white;
  transform: rotate(90deg);
}

.acumen-reveal-left {
  position: relative;
  z-index: 3;
  padding: 120px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(-60px);
  opacity: 0;
  transition: 0.75s ease 0.25s;
}

.acumen-reveal-panel.active .acumen-reveal-left {
  transform: translateX(0);
  opacity: 1;
}

.acumen-reveal-left span {
  color: #c02d17;
  font-weight: 900;
  margin-bottom: 16px;
}

.acumen-reveal-left h3 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 24px;
  color: #1c1c1c;
}

.acumen-reveal-left p {
  max-width: 620px;
  color: #555;
  line-height: 1.9;
  font-size: 1.03rem;
  margin-bottom: 34px;
}

.acumen-reveal-btn {
  width: fit-content;
  text-decoration: none;
  background: #08811e;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.35s ease;
}

.acumen-reveal-btn:hover {
  background: #c02d17;
  transform: translateY(-4px);
}

.acumen-reveal-btn.red-btn {
  background: #c02d17;
}

.acumen-reveal-btn.red-btn:hover {
  background: #08811e;
}

/* RIGHT SIDE FLOATING WORD EXPERIENCE */
.acumen-reveal-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.acumen-doc-cloud {
  position: relative;
  width: min(620px, 90%);
  height: 520px;
}

.acumen-doc-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: 999px;
  background: white;
  color: #08811e;
  font-weight: 800;
  box-shadow: 0 24px 55px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

.red-mode .acumen-doc-cloud span {
  color: #c02d17;
}

.acumen-reveal-panel.active .acumen-doc-cloud span {
  animation: acumenCloudReveal 0.7s ease forwards,
             acumenCloudFloat 4s ease-in-out infinite;
}

.acumen-doc-cloud span:nth-child(1) { left: 35%; top: 0; animation-delay: .10s, 1s; }
.acumen-doc-cloud span:nth-child(2) { right: 0; top: 95px; animation-delay: .20s, 1.2s; }
.acumen-doc-cloud span:nth-child(3) { left: 0; top: 130px; animation-delay: .30s, 1.4s; }
.acumen-doc-cloud span:nth-child(4) { right: 8%; bottom: 170px; animation-delay: .40s, 1.6s; }
.acumen-doc-cloud span:nth-child(5) { left: 8%; bottom: 130px; animation-delay: .50s, 1.8s; }
.acumen-doc-cloud span:nth-child(6) { left: 38%; bottom: 20px; animation-delay: .60s, 2s; }
.acumen-doc-cloud span:nth-child(7) { right: 25%; top: 230px; animation-delay: .70s, 2.2s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .acumen-reveal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .acumen-reveal-left {
    padding: 110px 30px 40px;
  }

  .acumen-doc-cloud {
    height: 420px;
    margin-bottom: 50px;
  }
}

@media (max-width: 600px) {
  .acumen-offer-experience {
    padding: 80px 0;
  }

  .acumen-offer-switch {
    flex-direction: column;
  }

  .acumen-offer-tab,
  .acumen-reveal-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .acumen-reveal-left h3 {
    font-size: 2.6rem;
  }

  .acumen-doc-cloud {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 92%;
  }

  .acumen-doc-cloud span {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    flex: 1 1 45%;
    min-width: 130px;
  }
}
.acumen-panel-back {
  margin-top: 18px;

  width: fit-content;

  border: none;
  background: transparent;

  color: #08811e;

  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;

  cursor: pointer;

  padding: 0;

  transition: 0.35s ease;
}

.acumen-panel-back:hover {
  transform: translateX(-6px);
  color: #c02d17;
}

.red-back {
  color: #c02d17;
}

.red-back:hover {
  color: #08811e;
}

@media (max-width: 600px) {

  .acumen-panel-back {
    width: 100%;
    text-align: center;
  }
}

@keyframes acumenOfferFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acumenBlobFloat {
  0%, 100% {
    transform: translate(0,0) scale(1);
  }

  50% {
    transform: translate(-30px,40px) scale(1.12);
  }
}

@keyframes acumenCloudReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes acumenCloudFloat {
  0%, 100% {
    margin-top: 0;
  }

  50% {
    margin-top: -16px;
  }
}




/*====================================================Process========================================*/

.process-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at bottom left, rgba(8, 129, 30, 0.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.process-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: #c02d17;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.process-header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

/* FLOW */
.process-flow {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #08811e 0%, #c02d17 100%);
  opacity: 0.2;
}

/* STEP */
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 0 0 28px 0;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #08811e;
  color: #08811e;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(8, 129, 30, 0.08);
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 6px;
}

.step-content h3 {
  font-size: 1.15rem;
  color: #08811e;
  margin-bottom: 6px;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ACTIONS */
.process-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline-process {
  border: 2px solid #08811e;
  color: #08811e;
  background: transparent;
}

.btn-outline-process:hover {
  background: #08811e;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-primary-process {
  background: #c02d17;
  color: #ffffff;
}

.btn-primary-process:hover {
  background: #a62614;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }

  .process-step {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .process-flow::before {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .process-header {
    margin-bottom: 36px;
  }

  .process-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/*=============================================================== completed projects ==============================================*/
/* =========================
   ACUMEN PROJECTS SECTION
========================= */
.ah-projects-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.ah-projects-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.ah-projects-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.ah-projects-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #c02d17;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ah-projects-header h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  color: #1a1a1a;
}

.ah-projects-header p {
  margin: 0;
  color: #5b5b5b;
  line-height: 1.8;
  font-size: 1rem;
}

.ah-projects-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* ROW */
.ah-project-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(8, 129, 30, 0.08);
  animation: ahProjectFadeUp 0.8s ease both;
}

.ah-project-row:nth-child(2) {
  animation-delay: 0.12s;
}

.ah-project-row:nth-child(3) {
  animation-delay: 0.24s;
}

.ah-project-row-reverse {
  grid-template-columns: 1fr 340px;
}

.ah-project-row-reverse .ah-project-image-box {
  order: 2;
}

.ah-project-row-reverse .ah-project-info {
  order: 1;
}

/* IMAGE */
.ah-project-image-box {
  width: 100%;
  max-width: 340px;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3ee;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.ah-project-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ah-project-row:hover .ah-project-image {
  transform: scale(1.05);
}

/* INFO */
.ah-project-info {
  max-width: 620px;
}

.ah-project-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(8, 129, 30, 0.08);
  color: #08811e;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.ah-project-info h3 {
  margin: 0 0 12px;
  color: #1b1b1b;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.ah-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.ah-project-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5f6f6;
  border: 1px solid #ebebeb;
  color: #444;
  font-size: 0.9rem;
  font-weight: 500;
}

.ah-project-location {
  margin: 0 0 10px;
  color: #c02d17;
  font-size: 0.96rem;
  font-weight: 600;
}

.ah-project-text {
  margin: 0;
  color: #5b5b5b;
  line-height: 1.8;
  font-size: 0.97rem;
}

/* HOVER */
.ah-project-row {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ah-project-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

/* ANIMATION */
@keyframes ahProjectFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .ah-project-row,
  .ah-project-row-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ah-project-row-reverse .ah-project-image-box,
  .ah-project-row-reverse .ah-project-info {
    order: initial;
  }

  .ah-project-image-box {
    max-width: 100%;
    height: 240px;
  }

  .ah-project-info {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .ah-projects-section {
    padding: 80px 0;
  }

  .ah-projects-header {
    margin-bottom: 40px;
  }

  .ah-project-row {
    padding: 16px;
    border-radius: 18px;
  }

  .ah-project-image-box {
    height: 210px;
    border-radius: 14px;
  }

  .ah-project-meta span {
    font-size: 0.84rem;
    min-height: 34px;
    padding: 7px 12px;
  }

  .ah-project-text {
    font-size: 0.94rem;
  }
}



/*============================================================================================================micro credit =====================================================*/

.ah-micro {
  --ahm-green: #08811e;
  --ahm-red: #c02d17;
  --ahm-white: #ffffff;
  --ahm-dark: #1c1c1c;
  --ahm-text: #575757;
  --ahm-light: #f8fbf8;
  --ahm-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  --ahm-radius: 24px;
  --ahm-border: 1px solid rgba(8, 129, 30, 0.08);
  position: relative;
  overflow: hidden;
}

.ah-micro *,
.ah-micro *::before,
.ah-micro *::after {
  box-sizing: border-box;
}

.ah-micro-shell {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------------- HERO ---------------- */
.ah-micro-hero {
  position: relative;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at top right, rgba(8, 129, 30, 0.08), transparent 25%),
    radial-gradient(circle at bottom left, rgba(192, 45, 23, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.ah-micro-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(8, 129, 30, 0.05);
}

.ah-micro-hero::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(192, 45, 23, 0.05);
}

.ah-micro-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  animation: ahMicroFadeUp 0.8s ease both;
}

.ah-micro-eyebrow {
  display: inline-block;
  color: var(--ahm-red);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.ah-micro-hero-content h1 {
  margin: 0 0 16px;
  color: var(--ahm-dark);
  line-height: 1.08;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.ah-micro-hero-content p {
  margin: 0 auto 30px;
  max-width: 680px;
  color: var(--ahm-text);
  font-size: 1rem;
  line-height: 1.8;
}

.ah-micro-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------- SECTION HEAD ---------------- */
.ah-micro-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  animation: ahMicroFadeUp 0.8s ease both;
}

.ah-micro-section-head h2 {
  margin: 0 0 12px;
  color: var(--ahm-dark);
  line-height: 1.12;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.ah-micro-section-head p {
  margin: 0;
  color: var(--ahm-text);
  line-height: 1.75;
}

/* ---------------- BUTTONS ---------------- */
.ah-micro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ah-micro-btn-primary {
  background: var(--ahm-green);
  color: var(--ahm-white);
  box-shadow: 0 10px 24px rgba(8, 129, 30, 0.18);
}

.ah-micro-btn-primary:hover {
  background: #066917;
  transform: translateY(-2px);
}

.ah-micro-btn-outline {
  background: transparent;
  color: var(--ahm-green);
  border-color: var(--ahm-green);
}

.ah-micro-btn-outline:hover {
  background: var(--ahm-green);
  color: var(--ahm-white);
  transform: translateY(-2px);
}

/* ---------------- PRODUCTS ---------------- */
.ah-micro-products {
  padding: 95px 0 40px;
  background: var(--ahm-white);
}

.ah-micro-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

   max-width: 900px;
  margin: 0 auto;
}

.ah-micro-product {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border: var(--ahm-border);
  border-radius: var(--ahm-radius);
  padding: 30px 24px;
  box-shadow: var(--ahm-shadow);
  text-align: center;
  overflow: hidden;
  animation: ahMicroFadeUp 0.8s ease both;
}

.ah-micro-product:nth-child(2) {
  animation-delay: 0.12s;
}

.ah-micro-product:nth-child(3) {
  animation-delay: 0.24s;
}

.ah-micro-product::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(8, 129, 30, 0.05);
}

.ah-micro-product:nth-child(2)::before {
  background: rgba(192, 45, 23, 0.05);
}

.ah-micro-product-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 129, 30, 0.09);
  color: var(--ahm-green);
  font-weight: 700;
  font-size: 0.95rem;
}

.ah-micro-product:nth-child(2) .ah-micro-product-icon {
  background: rgba(192, 45, 23, 0.09);
  color: var(--ahm-red);
}

.ah-micro-product h3 {
  margin: 0 0 10px;
  color: var(--ahm-dark);
  font-size: 1.22rem;
}

.ah-micro-product p {
  margin: 0;
  color: var(--ahm-text);
  line-height: 1.75;
  font-size: 0.95rem;
}

.ah-micro-product:hover {
  transform: translateY(-6px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

/* ---------------- STEPS ---------------- */
.ah-micro-steps {
  padding: 55px 0 45px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.ah-micro-step-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ah-micro-step-line::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 129, 30, 0.2), rgba(192, 45, 23, 0.2));
}

.ah-micro-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 14px;
  animation: ahMicroFadeUp 0.8s ease both;
}

.ah-micro-step:nth-child(2) {
  animation-delay: 0.12s;
}

.ah-micro-step:nth-child(3) {
  animation-delay: 0.24s;
}

.ah-micro-step:nth-child(4) {
  animation-delay: 0.36s;
}

.ah-micro-step-no {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ahm-white);
  border: 2px solid rgba(8, 129, 30, 0.16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  color: var(--ahm-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-micro-step h3 {
  margin: 0 0 8px;
  color: var(--ahm-dark);
  font-size: 1.06rem;
}

.ah-micro-step p {
  margin: 0;
  color: var(--ahm-text);
  line-height: 1.65;
  font-size: 0.94rem;
}

/* ---------------- REQUIREMENTS ---------------- */
.ah-micro-requirements {
  padding: 55px 0 45px;
  background: var(--ahm-white);
}

.ah-micro-requirements-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  animation: ahMicroFadeUp 0.8s ease both;
}

.ah-micro-pill {
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5faf5 0%, #eef7ef 100%);
  border: 1px solid rgba(8, 129, 30, 0.12);
  color: var(--ahm-green);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(8, 129, 30, 0.05);
}

/* ---------------- FORM ---------------- */
.ah-micro-form-section {
  padding: 55px 0 100px;
  background:
    radial-gradient(circle at bottom left, rgba(192, 45, 23, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
}

.ah-micro-form-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border-top: 5px solid var(--ahm-red);
  border-radius: 28px;
  padding: 42px 32px;
  box-shadow: var(--ahm-shadow);
  position: relative;
  overflow: hidden;
  animation: ahMicroFadeUp 0.8s ease both;
}

.ah-micro-form-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(192, 45, 23, 0.05);
}

.ah-micro-form-head {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-bottom: 22px;
}

.ah-micro-form-head h2 {
  margin: 0 0 10px;
  color: var(--ahm-dark);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.ah-micro-form-head p {
  margin: 0;
  color: var(--ahm-text);
  line-height: 1.75;
}

.ah-micro-form {
  position: relative;
  z-index: 2;
}

.ah-micro-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ah-micro-field {
  display: flex;
  flex-direction: column;
}

.ah-micro-field-full {
  grid-column: 1 / -1;
}

.ah-micro-field label {
  margin-bottom: 8px;
  color: var(--ahm-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.ah-micro-field input,
.ah-micro-field select {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dedede;
  background: #ffffff;
  color: var(--ahm-dark);
  font: inherit;
  outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.2s ease;
}

.ah-micro-field input:focus,
.ah-micro-field select:focus {
  border-color: var(--ahm-green);
  box-shadow: 0 0 0 4px rgba(8, 129, 30, 0.08);
}

.ah-micro-field input[type="file"] {
  padding: 12px;
  background: #fafafa;
}

.ah-micro-submit {
  margin-top: 24px;
  border: none;
}

.ah-micro-form-message {
  margin-top: 14px;
  color: var(--ahm-green);
  font-size: 0.95rem;
}

/* ---------------- ANIMATION ---------------- */
@keyframes ahMicroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .ah-micro-products-grid,
  .ah-micro-step-line,
  .ah-micro-form-grid {
    grid-template-columns: 1fr;
  }

  .ah-micro-step-line::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .ah-micro-hero {
    padding: 130px 0 80px;
  }

  .ah-micro-products,
  .ah-micro-steps,
  .ah-micro-requirements,
  .ah-micro-form-section {
    padding-top: 42px;
  }

  .ah-micro-form-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .ah-micro-hero-actions {
    flex-direction: column;
  }

  .ah-micro-btn {
    width: 100%;
  }

  .ah-micro-pill {
    width: 100%;
    text-align: center;
  }
}




/*============================================================================= testimonials ==============================================================*/
.ah-testimonials {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(192,45,23,0.07), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.ah-testimonials-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.ah-testimonials-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  animation: ahFadeUp 0.8s ease both;
}

.ah-testimonials-header span {
  color: #c02d17;
  font-weight: 800;
}

.ah-testimonials-header h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 10px 0 14px;
  color: #1c1c1c;
}

.ah-testimonials-header p {
  color: #555;
  line-height: 1.8;
}

.ah-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.ah-testimonial-card {
  position: relative;
  min-height: 330px;
  border-radius: 30px;
  padding: 34px 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  isolation: isolate;
  animation: ahCardReveal 0.9s ease both;
  transition: 0.45s ease;
}

.ah-testimonial-card:nth-child(2) {
  animation-delay: 0.16s;
}

.ah-testimonial-card:nth-child(3) {
  animation-delay: 0.32s;
}

.ah-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: -3;
  transition: 0.65s ease;
}

.ah-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.72) 100%
    ),
    linear-gradient(
      135deg,
      rgba(8,129,30,0.62),
      rgba(192,45,23,0.32)
    );
}

.ah-testimonial-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  transition: 0.45s ease;
}

.ah-testimonial-card.featured {
  transform: translateY(-18px);
}

.ah-testimonial-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,0.24);
}

.ah-testimonial-card.featured:hover {
  transform: translateY(-30px) scale(1.02);
}

.ah-testimonial-card:hover::before {
  transform: scale(1.12);
}

.ah-testimonial-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.ah-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ah-verified-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #08811e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  z-index: 4;
  box-shadow: 0 14px 30px rgba(8,129,30,0.35);
  animation: ahBadgePulse 1.8s ease infinite;
}

.ah-stars {
  color: #f5b301;
  letter-spacing: 4px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  animation: ahStarGlow 1.5s ease infinite alternate;
}

.ah-testimonial-card p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.ah-client strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.ah-client span {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.ah-feedback-wrap {
  text-align: center;
  margin-top: 52px;
}

.ah-feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #08811e;
  color: white;
  text-decoration: none;
  font-weight: 800;
  transition: 0.35s ease;
}

.ah-feedback-btn:hover {
  background: #c02d17;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(192,45,23,0.24);
}

@media (max-width: 900px) {
  .ah-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ah-testimonial-card,
  .ah-testimonial-card.featured {
    transform: none;
  }

  .ah-testimonial-card:hover,
  .ah-testimonial-card.featured:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes ahFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ahCardReveal {
  from {
    opacity: 0;
    transform: translateY(42px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ahStarGlow {
  from {
    text-shadow: 0 0 0 rgba(245,179,1,0);
  }

  to {
    text-shadow: 0 0 18px rgba(245,179,1,0.55);
  }
}

@keyframes ahBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(8,129,30,0.35);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 18px 40px rgba(8,129,30,0.5);
  }
}





/*================================================================= FAQ ====================================================================*/
.acumen-premium-faq {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(8,129,30,0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(192,45,23,0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  overflow: hidden;
}

.apf-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.apf-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  animation: apfFadeUp 0.8s ease both;
}

.apf-header span {
  color: #c02d17;
  font-weight: 800;
}

.apf-header h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin: 10px 0 14px;
  color: #1c1c1c;
}

.apf-header p {
  color: #555;
  line-height: 1.85;
}

.apf-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: start;
}

.apf-intro {
  position: sticky;
  top: 90px;
  padding-left: 24px;
  border-left: 5px solid #08811e;
  animation: apfSlideLeft 0.9s ease both;
}

.apf-intro span {
  color: #c02d17;
  font-weight: 800;
}

.apf-intro h3 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 12px 0 18px;
  color: #1c1c1c;
}

.apf-intro p {
  color: #555;
  line-height: 1.85;
}

.apf-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.apf-item {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(8,129,30,0.13);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.06);
  transition: 0.35s ease;
  animation: apfFadeUp 0.8s ease both;
}

.apf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.1);
}

.apf-item.open {
  border-color: rgba(8,129,30,0.35);
  box-shadow: 0 28px 75px rgba(8,129,30,0.12);
}

.apf-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.apf-question span {
  color: #1c1c1c;
  font-weight: 800;
  font-size: 1rem;
}

.apf-question i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(8,129,30,0.1);
  color: #08811e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 800;
  transition: 0.35s ease;
}

.apf-item.open .apf-question i {
  background: rgba(192,45,23,0.1);
  color: #c02d17;
  transform: rotate(180deg);
}

.apf-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.apf-answer p {
  padding: 0 26px 26px;
  color: #555;
  line-height: 1.85;
  font-size: 0.95rem;
}

.apf-ask {
  max-width: 720px;
  margin: 58px auto 0;
  padding-top: 32px;
  text-align: center;
  border-top: 1px solid rgba(8,129,30,0.16);
  animation: apfFadeUp 1s ease both;
}

.apf-ask p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 22px;
}

.apf-ask a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 32px;
  border-radius: 999px;
  background: #08811e;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  transition: 0.35s ease;
}

.apf-ask a:hover {
  background: #c02d17;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(192,45,23,0.24);
}

@media (max-width: 900px) {
  .apf-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apf-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 600px) {
  .acumen-premium-faq {
    padding: 80px 0;
  }

  .apf-question {
    padding: 20px;
  }

  .apf-answer p {
    padding: 0 20px 22px;
  }

  .apf-ask a {
    width: 100%;
  }
}

@keyframes apfFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes apfSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}




/*============================================================== FOOTER =============================================================*/

.ac-footer {
  position: relative;
  background: #025f13;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.ac-footer::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  top: -180px;
  background: rgba(192, 45, 23, 0.12);
  border-radius: 50%;
  filter: blur(18px);
}

.ac-footer::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: -140px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  filter: blur(14px);
}

.ac-footer__top-line {
  height: 5px;
  background: linear-gradient(
    90deg,
    #08811e,
    #c02d17,
    #08811e
  );
}

/* =========================
   CONTAINER
========================= */

.ac-footer__container {
  position: relative;
  z-index: 2;

  max-width: 1230px;
  margin: auto;

  padding: 70px 28px 28px;
}

/* =========================
   GRID
========================= */

.ac-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 75px;
  align-items: flex-start;
}

/* =========================
   BRAND
========================= */

.ac-footer__brand {
  max-width: 330px;
}

.ac-footer__logo {
 
  align-items: center;
  gap: 18px;

  text-decoration: none;
  color: #ffffff;

  margin-bottom: 28px;
}

.ac-footer__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
}

.ac-footer__logo-text h3 {
  margin: 0;

  font-size: 30px;
  line-height: 0.92;
  font-weight: 900;

  letter-spacing: -0.8px;
}

.ac-footer__logo-text span {
  display: block;

  margin-top: 12px;

  font-size: 12px;
  color: rgba(255,255,255,0.76);

  white-space: nowrap;
}



.ac-footer__brand-info p {
  max-width: 240px;

  margin: 0 0 7px;

  font-size: 14px;
  line-height: 1.75;

  color: rgba(255,255,255,0.82);
}

.ac-footer__location-link {
  display: inline-block;

  margin-top: 6px;

  font-size: 14px;
  font-weight: 800;

  color: #ffffff !important;
  text-decoration: none;

  transition: 0.3s ease;
}

.ac-footer__location-link:hover {
  color: #c02d17 !important;
}

/* =========================
   HEADINGS
========================= */

.ac-footer__col h4 {
  margin: 0 0 22px;

  font-size: 17px;
  font-weight: 800;

  color: #ffffff;
}

.ac-footer__col h4::after {
  content: "";

  display: block;

  width: 42px;
  height: 3px;

  margin-top: 10px;

  background: #c02d17;
  border-radius: 50px;
}

/* =========================
   LISTS
========================= */

.ac-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ac-footer__col li {
  margin-bottom: 8px;

  font-size: 14px;
  line-height: 1.8;

  color: rgba(255,255,255,0.78);
}

/* =========================
   LINKS
========================= */

.ac-footer__links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;

  transition: all 0.3s ease;
}

.ac-footer__links a:hover {
  color: #ffffff;
  padding-left: 7px;
}

/* =========================
   BOTTOM
========================= */

.ac-footer__bottom {
  margin-top: 80px;
  padding-top: 10px;

  border-top: 1px solid rgba(255,255,255,0.16);

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;
  gap: 30px;
}

.ac-footer__bottom p {
  margin: 0;

  font-size: 13px;
  line-height: 1.7;

  color: rgba(255,255,255,0.75);
}

.ac-footer__credit {
  text-align: right;
  color: rgba(255,255,255,0.6) !important;
}

/* =========================
   SOCIALS
========================= */

.ac-footer__bottom-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ac-footer__bottom-socials a {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  text-decoration: none;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);

  color: #ffffff;
  font-size: 16px;

  transition: all 0.35s ease;
}

.ac-footer__bottom-socials a:hover {
  transform: translateY(-5px) scale(1.06);

  background: #c02d17;
  border-color: #c02d17;

  box-shadow:
    0 14px 28px rgba(0,0,0,0.24);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1080px) {

  .ac-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .ac-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ac-footer__credit {
    text-align: center;
  }

}

@media (max-width: 680px) {

  .ac-footer__container {
    padding: 56px 22px 26px;
  }

  .ac-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ac-footer__logo {
    gap: 16px;
  }

  .ac-footer__logo img {
    width: 52px;
    height: 52px;
  }

  .ac-footer__logo-text h3 {
    font-size: 24px;
    
  }

  .ac-footer__logo-text span {
    white-space: normal;
  }

  
  .ac-footer__bottom-socials {
    flex-wrap: wrap;
  }

}