@charset "UTF-8";
/*  style.scss  –  pixel-perfect, Bootstrap-5 compatible
 *  compile → ../css/style.css
 * -------------------------------------------------------- */
/* ----------  FONT VARIABLES  ---------- */
/* ----------  DESIGN TOKENS  ---------- */
.text-black {
  color: #1d1d1d !important;
}

.text-green {
  color: #78eb54 !important;
}

p {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.2px;
}

h2 {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 83px;
  letter-spacing: -0.45px;
  color: rgba(255, 255, 255, 0.95);
}

h3 {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.box-shadow-green {
  box-shadow: 0 4px 8px 0 rgba(120, 235, 84, 0.5);
}

/* ----------  MIXINS  ---------- */
/* ----------  BASE  ---------- */
body {
  color: #f4f4e7;
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ----------  NAVBAR  ---------- */
nav {
  background-color: #001a0d;
  padding-bottom: 0;
  box-shadow: none;
}
nav .nav-item {
  cursor: pointer !important;
}
nav .nav-link {
  color: rgba(255, 255, 255, 0.9490196078) !important;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
nav .nav-link .iconify-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
nav .navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ----------  BUTTONS  ---------- */
.btn-primary {
  background-color: #78eb54 !important;
  color: #1d1d1d !important;
  border: none !important;
}

.text-white {
  color: rgba(255, 255, 255, 0.9490196078) !important;
}

/* ----------  MOBILE TOP BAR / MENU  ---------- */
.mobile-top-row {
  padding: 0.5rem 1rem;
  background-color: #001a0d;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

#mobileMenu {
  position: fixed;
  inset: 64px 0 0 0;
  background-color: rgba(255, 255, 255, 0.9490196078);
  overflow-y: auto;
  z-index: 1040;
}
#mobileMenu .mobile-menu {
  min-height: 100%;
  margin-left: calc(-1 * var(--bs-gutter-x, 1rem));
  margin-right: calc(-1 * var(--bs-gutter-x, 1rem));
  background-color: rgba(255, 255, 255, 0.9490196078);
}
#mobileMenu .mobile-menu .menu-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#mobileMenu .mobile-menu .menu-item .menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  text-decoration: none;
  color: #1d1d1d;
  font-weight: 500;
  transition: all 0.3s ease;
}
#mobileMenu .mobile-menu .menu-item .menu-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
#mobileMenu .mobile-menu .menu-item .menu-link i {
  font-size: 14px;
  color: #1d1d1d;
}

/* ----------  MEGA-MENU  ---------- */
.navbar .dropdown.position-static {
  position: static;
}
.navbar .dropdown.position-static .dropdown-menu {
  background-color: #f8f8f5;
  position: absolute;
  inset: 100% 0 auto 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: opacity visibility 0.3s ease;
}
.navbar .dropdown.position-static:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ----------  MEGA-MENU LAYOUT FIXES  ---------- */
.mega-menu-row {
  display: flex;
  align-items: stretch;
  gap: 0 var(--gap);
  padding: var(--gap) 0;
}
.mega-menu-row .col-lg-8 {
  flex-grow: 1;
}

/* left list */
.left-service-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.left-service-list .service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem;
  border-radius: 6px;
  color: #1d1d1d;
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.left-service-list .service-item:hover, .left-service-list .service-item.active {
  background-color: #78eb54;
  color: #1d1d1d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}
.left-service-list .service-item .arrow-right {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.left-service-list .service-item:hover .arrow-right, .left-service-list .service-item.active .arrow-right {
  opacity: 1;
  transform: translateX(0);
}

/* divider – same height as columns */
.divider-rule {
  width: 2px;
  background: #e3e3e3;
  align-self: stretch;
  margin: 0;
}

/* right column – 4-per-row lines with border + radius */
.mega-menu-services {
  flex: 1 1 0%;
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  border-radius: 5px;
  margin-top: 2px;
  margin-right: 1px;
  margin-left: -1px;
}

.divider {
  border-top: 1px solid #e5e5e5;
  margin: 1.25rem 0;
}

.service-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #212529;
  transition: transform 0.15s ease-in-out;
}
.service-block:hover {
  transform: translateY(-3px);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background-color: #f6f6f6 !important;
}

.service-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}
.service-line:last-child {
  border-bottom: none;
}
.service-line {
  /* rounded white “button” corners */
}
.service-line .service-block:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.service-line .service-block:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* individual card – icon left / text right */
.service-block {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  text-decoration: none;
  color: #1d1d1d;
  transition: background 0.3s ease;
}
.service-block:hover {
  background: rgba(120, 235, 84, 0.08);
}
.service-block .icon-wrapper {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 6px;
}
.service-block .icon-wrapper i {
  font-size: 20px;
  color: #fff;
}
.service-block span {
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.2px;
  font-weight: 300;
}

/* dynamic badge colours */
.badge-blue iconify-icon {
  color: #5b6bff !important;
}

.badge-red iconify-icon {
  color: #ff325d !important;
}

.badge-green iconify-icon {
  color: #1f8a46 !important;
}

.badge-yellow iconify-icon {
  color: #fcc11a !important;
}

.badge-blue1 iconify-icon {
  color: #3b9eff !important;
}

.badge-black iconify-icon {
  color: #1d1d1d !important;
}

.badge-purple iconify-icon {
  color: #9b5bff !important;
}

.badge-orange iconify-icon {
  color: #ff6827 !important;
}

.badge-red1 iconify-icon {
  color: #cf0003 !important;
}

.badge-green1 iconify-icon {
  color: #007aa7 !important;
}

.badge-purple1 iconify-icon {
  color: #7028ff !important;
}

/* ----------  CTA ROW  ---------- */
.mt-5.pt-3.d-flex {
  margin-top: 24px !important;
  padding-top: 24px !important;
}

.scope-btn {
  border-color: #78eb54 !important;
  color: #1d1d1d !important;
  background-color: #ffffff !important;
  font-weight: 500;
}
.scope-btn i {
  margin-left: 5px;
}
.scope-btn:hover {
  background-color: #78eb54 !important;
  color: #1d1d1d !important;
}

/* ----------  UTILITIES  ---------- */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .nav-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* ----------  RIGHT PANEL TRANSITION  ---------- */
.service-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* placeholder styling */
.placeholder-box {
  height: 280px;
  border: 2px dashed #ced4da;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #6c757d;
  background: #fff;
}

/* ---------- VIDEO SERVICE CARD ---------- */
.video-service-card {
  width: 100%;
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-top: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  transition: transform 0.25s ease;
}
.video-service-card:hover {
  transform: translateY(-4px);
}

/* image wrapper */
.video-thumb {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* caption */
.video-caption {
  padding: 20px 0px 0px 5px;
}
.video-caption h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  line-height: 1.4;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  background-color: #f7f8ec;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(120, 255, 140, 0.35);
  filter: blur(80px);
  z-index: 0;
}

/* title */
.hero-title {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 75px;
  letter-spacing: -1px;
  color: #1d1d1d;
  max-width: 900px;
}
.hero-title .highlight {
  color: #2ec300;
}

/* subtitle */
.hero-subtitle {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 870px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.08px;
  color: rgba(29, 29, 29, 0.8);
}

.btn {
  padding: 13px 24px;
  color: #0c1903;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  border-radius: 8px;
}
.btn.btn-success {
  background-color: #78eb54;
  border: none;
}
.btn.btn-transparent {
  background-color: transparent;
  border: 0.5px solid rgba(120, 120, 120, 0.6);
  color: rgba(255, 255, 255, 0.9490196078);
}
.btn.btn-transparent:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}
.btn.btn-white {
  background-color: #fefefe;
  border: 1px solid rgba(120, 120, 120, 0.2);
}
.btn.btn:hover {
  color: #0c1903;
}

/* Swiper hero */
.coverflow-stage {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 420px;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  justify-content: center;
}

/* Card */
.flow-item {
  position: absolute;
  top: 50%;
  width: 260px;
  height: 360px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image fits card */
.flow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Slot positions — FIGMA SPACING */
/* LEFT SIDE */
.flow-item:nth-child(1) {
  transform: translate(-460px, -50%) scale(0.65);
  opacity: 1;
  z-index: 1;
}

.flow-item:nth-child(2) {
  transform: translate(-254px, -50%) scale(0.85);
  opacity: 1;
  z-index: 2;
}

/* CENTER */
.flow-item:nth-child(3) {
  transform: translate(0, -50%) scale(1);
  opacity: 1;
  z-index: 3;
}

/* RIGHT SIDE */
.flow-item:nth-child(4) {
  transform: translate(254px, -50%) scale(0.85);
  opacity: 1;
  z-index: 2;
}

.flow-item:nth-child(5) {
  transform: translate(460px, -50%) scale(0.65);
  opacity: 1;
  z-index: 1;
}

/* Swiper hero */
.btn-text-swap {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* ✅ hide real text */
  color: transparent !important;
  user-select: none;
}
.btn-text-swap::before, .btn-text-swap::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
  color: #0c1903;
  white-space: nowrap;
  pointer-events: none;
}
.btn-text-swap::before {
  opacity: 1;
  transform: translateY(0);
}
.btn-text-swap::after {
  opacity: 0;
  transform: translateY(100%);
}
.btn-text-swap:hover::before {
  opacity: 0;
  transform: translateY(-100%);
}
.btn-text-swap:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.rotate-180 {
  transform: rotate(180deg);
}

.green-body {
  background-color: #001a0d;
  padding: 124px 0px;
  position: relative;
  overflow: hidden;
}

.top-left-circle::after {
  content: "";
  width: 402.18px;
  height: 402.679px;
  border-radius: 402.679px;
  top: -29vh;
  left: -26vh;
  position: absolute;
  background: rgba(120, 235, 84, 0.06);
}
.top-left-circle::before {
  content: "";
  width: 507px;
  height: 507px;
  border-radius: 507px;
  top: -37vh;
  left: -34vh;
  position: absolute;
  background: rgba(120, 235, 84, 0.06);
}

.section-title {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 6.44px;
  text-transform: uppercase;
}

.service-icon-card {
  padding: 24px 36px;
  border-radius: 24px;
  background: #fff;
}
.service-icon-card .service-card-title {
  color: #1d1d1d;
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  display: flex;
  justify-content: space-between;
}

.zoom-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.zoom-img .zoom-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  z-index: 2;
}
.zoom-img img {
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}
.zoom-img:hover img {
  transform: scale(1.1);
}

.our-work .work-portfolio {
  border-radius: 24px;
  background: #17281c;
  padding: 33px;
}
.our-work .work-portfolio .work-img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-direction: row;
}
@media (max-width: 767px) {
  .our-work .work-portfolio .work-img {
    flex-direction: column;
  }
}
.our-work .work-portfolio .work-img-slider {
  margin-top: 30px;
}
.our-work .work-portfolio .work-img-slider .zoom-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 17.52%, rgba(0, 0, 0, 0.47) 66.63%, #000 83.84%);
  z-index: 1;
  pointer-events: none;
}

.bottom-right-circle::after {
  content: "";
  width: 402.18px;
  height: 402.679px;
  border-radius: 402.679px;
  bottom: -29vh;
  right: -26vh;
  position: absolute;
  background: rgba(120, 235, 84, 0.06);
}
.bottom-right-circle::before {
  content: "";
  width: 507px;
  height: 507px;
  border-radius: 507px;
  bottom: -37vh;
  right: -34vh;
  position: absolute;
  background: rgba(120, 235, 84, 0.06);
}

.bottom-left-circle::after {
  content: "";
  width: 402.18px;
  height: 402.679px;
  border-radius: 402.679px;
  bottom: -29vh;
  left: -26vh;
  position: absolute;
  background: rgba(120, 235, 84, 0.06);
}
.bottom-left-circle::before {
  content: "";
  width: 507px;
  height: 507px;
  border-radius: 507px;
  bottom: -37vh;
  left: -34vh;
  position: absolute;
  background: rgba(120, 235, 84, 0.06);
}

.green-card {
  padding: 48px;
  border-radius: 24px;
  background: #17281c;
  margin-bottom: 25px;
  min-height: 380px;
}
.green-card .card-title {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.96px;
  color: rgba(255, 255, 255, 0.95);
  margin: 15px 0px 15px 0px;
}
.green-card .card-description {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.08px;
}
.green-card:hover {
  background: #1a3d2b;
  transition: background 0.3s ease;
}

/* ----------  FOOTER  ---------- */
.site-footer {
  background-color: #001a0d;
  color: gray;
  position: relative;
  width: 100%;
  padding: 0 0 0px 0;
  background-image: radial-gradient(#1a3d2b 1px, transparent 1px);
  background-size: 20px 20px;
}
.site-footer a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #78eb54;
}
.site-footer ul {
  list-style: none;
  padding-left: 0;
}

.subscribe-card {
  background-color: #001a0d;
  width: 90%;
  margin: 0 auto;
  padding: 40px 50px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transform: translateY(-50%);
  margin-bottom: -60px;
  box-shadow: 0px 13px 33.8px 0px rgba(255, 255, 255, 0.2);
}
.subscribe-card .subscribe-text {
  max-width: 50%;
}
.subscribe-card .subscribe-text h2 {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.subscribe-card .subscribe-text h2 .highlight {
  color: #78eb54;
  font-weight: 600;
}
.subscribe-card .subscribe-text p {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0px !important;
}
.subscribe-card .subscribe-form {
  display: flex;
  gap: 15px;
  width: 45%;
}
.subscribe-card .subscribe-form input {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  flex: 1;
  background: transparent;
  border: 1px solid #aeaeae;
  padding: 15px 20px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.95);
  outline: none;
}
.subscribe-card .subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.95);
}
.subscribe-card .subscribe-form input:focus {
  border-color: #78eb54;
}
.subscribe-card .subscribe-form button {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #78eb54;
  color: #1d1d1d;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  /* transition BOTH background and color smoothly */
  transition: background-color 0.3s ease, color 0.3s ease;
}
.subscribe-card .subscribe-form button:hover {
  background-color: #1d1d1d;
  color: #78eb54;
}

.footer-content {
  top: 30px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.footer-content .footer-heading {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-content .footer-heading.highlight {
  color: #78eb54;
}
.footer-content .footer-heading.with-underline {
  font-size: 24px;
  color: #666666;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.footer-content .footer-heading.with-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 90px;
  height: 2px;
  background-color: #33443a;
}
.footer-content .footer-heading.with-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 65px;
  height: 1px;
  background-color: #33443a;
}
.footer-content .footer-heading.with-underline .highlight {
  color: #78eb54;
}
.footer-content .footer-links li {
  margin-bottom: 12px;
}
.footer-content .footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.footer-content .footer-links li a:hover {
  color: rgba(255, 255, 255, 0.95);
}
.footer-content .payment-logos {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.footer-content .payment-logos .payment-row {
  display: flex;
  width: 100%;
  gap: 5px;
  /* First row: 4 items, evenly spaced */
}
.footer-content .payment-logos .payment-row:first-child {
  justify-content: space-between;
}
.footer-content .payment-logos .payment-row {
  /* Second row: 3 items, centered */
}
.footer-content .payment-logos .payment-row:nth-child(2) {
  justify-content: center;
}
.footer-content .payment-logos .payment-row .logo-box {
  background: #fff;
  border-radius: 4px;
  flex: 1 1 0;
  max-width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-content .payment-logos .payment-row .logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footer-content .contact-col .contact-list {
  padding: 0;
}
.footer-content .contact-col .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-content .contact-col .contact-list li i {
  color: gray;
  margin-top: 4px;
  font-size: 14px;
}
.footer-content .contact-col .contact-list li span {
  line-height: 1.5;
}

.footer-bottom {
  margin: 0px auto 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-bottom .footer-col {
  display: flex;
  align-items: center;
}
.footer-bottom .footer-col.footer-left {
  gap: 5px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.5019607843);
}
.footer-bottom .footer-col.footer-left .brand-logo img {
  height: 35px;
  width: 35px;
}
.footer-bottom .footer-col.footer-left span {
  font-size: 13px;
}
.footer-bottom .footer-col.footer-center {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.5019607843);
}
.footer-bottom .footer-col.footer-center .divider {
  margin: 0 5px;
  opacity: 0.5;
  border: none !important;
}
.footer-bottom .footer-col.footer-center a {
  text-decoration: none;
}
.footer-bottom .footer-col.footer-center a:hover {
  color: #78eb54;
}
.footer-bottom .footer-col {
  /* ---------- FOOTER BOTTOM RIGHT CORRECTIONS ---------- */
}
.footer-bottom .footer-col.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}
.footer-bottom .footer-col {
  /* AI Summary Button - Exact styling from image */
}
.footer-bottom .footer-col .ai-summary-button {
  background-color: #78eb54;
  border-radius: 30px;
  padding: 8px 5px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.footer-bottom .footer-col .ai-summary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer-bottom .footer-col .ai-summary-button__content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .footer-col .ai-summary-button__icon {
  color: #1d1d1d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom .footer-col .ai-summary-button__icon--sparkles {
  font-size: 16px;
}
.footer-bottom .footer-col .ai-summary-button__icon--logo {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}
.footer-bottom .footer-col .ai-summary-button__icon--arrow {
  font-size: 14px;
  opacity: 0.7;
  color: black;
}
.footer-bottom .footer-col .ai-summary-button__text {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 600;
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.footer-bottom .footer-col .ai-summary-button__separator {
  width: 1px;
  height: 20px;
  background-color: rgba(29, 29, 29, 0.2);
  margin: 0 4px;
}
.footer-bottom .footer-col {
  /* Social Wrapper - Curved green background */
}
.footer-bottom .footer-col .social-wrapper {
  background-color: #78eb54;
  border-radius: 30px 30px 0 0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
}
.footer-bottom .footer-col .social-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom .footer-col .social-container a {
  width: 32px;
  height: 32px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.footer-bottom .footer-col .social-container a:hover {
  transform: scale(1.1);
}
.footer-bottom .footer-col .social-container a iconify-icon {
  color: #78eb54;
  font-size: 16px;
}
.footer-bottom .footer-col {
  /* Responsive adjustments */
}
@media (max-width: 1024px) {
  .footer-bottom .footer-col .footer-right {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .footer-bottom .footer-col .social-wrapper {
    border-radius: 30px;
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  .footer-bottom .footer-col .footer-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-bottom .footer-col {
    justify-content: center !important;
    flex: unset;
  }
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .subscribe-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    transform: translateY(-20%);
    margin-bottom: -20px;
  }
  .subscribe-card .subscribe-text {
    max-width: 100%;
  }
  .subscribe-card .subscribe-form {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom .bottom-left {
    flex-direction: column;
    padding-left: 0;
    text-align: center;
  }
  .footer-bottom .bottom-left .legal-links {
    margin: 0;
  }
  .footer-bottom .bottom-right-wrapper {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom .bottom-right-wrapper .social-container {
    border-radius: 0;
    width: 100%;
    justify-content: center;
  }
}
.full-width-rule {
  width: 100%;
  height: 2px;
  background: rgba(242, 242, 247, 0.3019607843);
  border: none;
}

.case-studies-section {
  padding: 80px 0;
  background-color: #f4f4e7;
  font-family: "Onest", sans-serif;
}
.case-studies-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.case-studies-section {
  /* Eyebrow */
}
.case-studies-section .eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.case-studies-section {
  /* Title */
}
.case-studies-section .main-title {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  margin-top: 20px;
  font-size: 44px;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 20px;
}
.case-studies-section {
  /* Description */
}
.case-studies-section .description {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0 auto 70px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.8);
  max-width: 980px;
  text-align: center;
  justify-self: center;
}
.case-studies-section {
  /* Cards */
}
.case-studies-section .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
  margin-bottom: 60px;
}
.case-studies-section .card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.case-studies-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.case-studies-section .card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.case-studies-section .card h3 {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 16px 24px;
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  color: #1d1d1d;
  line-height: 38px;
}
.case-studies-section .case-study-btn {
  justify-self: center;
  border: 1px gray !important;
}
.case-studies-section .section-footer-exact {
  background-color: #001a0d;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 90px;
  position: relative;
  overflow: hidden;
}
.case-studies-section .section-footer-exact .bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.case-studies-section .section-footer-exact {
  /* ---------- TOP LEFT ---------- */
}
.case-studies-section .section-footer-exact .top-left {
  width: 260px;
  height: 260px;
  top: -120px;
  left: -120px;
  background: rgba(120, 235, 84, 0.0588235294);
}
.case-studies-section .section-footer-exact .top-left::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: 70px;
  left: 70px;
  background: rgba(120, 235, 84, 0.0588235294);
  border-radius: 50%;
}
.case-studies-section .section-footer-exact {
  /* ---------- BOTTOM RIGHT ---------- */
}
.case-studies-section .section-footer-exact .bottom-right {
  width: 260px;
  height: 260px;
  bottom: -140px;
  right: -140px;
  background: rgba(120, 235, 84, 0.0588235294);
}
.case-studies-section .section-footer-exact .bottom-right::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: 70px;
  right: 70px;
  background: rgba(120, 235, 84, 0.0588235294);
  border-radius: 50%;
}
.case-studies-section .section-footer-exact {
  /* Keep content above circles */
}
.case-studies-section .section-footer-exact .cta-section-exact {
  position: relative;
  z-index: 2;
}
.case-studies-section .section-footer-exact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 10%, rgba(120, 235, 84, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.case-studies-section .section-footer-exact .cta-section-exact {
  margin: 0 auto;
  padding: 50px 50px;
  width: 100%;
}
.case-studies-section .section-footer-exact .cta-title-exact {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9490196078);
  margin-bottom: 60px;
}
.case-studies-section .section-footer-exact {
  /* ---------- ANIMATION KEYFRAMES (Revised) ---------- */
}
@keyframes runner-move {
  0% {
    left: 71px;
    background-color: #78eb54;
    width: 13px;
  }
  40% {
    left: calc(100% - 71px - 13px);
    width: 13px;
  }
  50% {
    left: calc(100% - 71px - 13px);
    background-color: #78eb54;
    width: 13px;
  }
  90% {
    left: 71px;
    width: 13px;
  }
  100% {
    left: 71px;
    background-color: #78eb54;
    width: 13px;
  }
}
@keyframes activate-end {
  0% {
    background-color: #00381c;
    color: #fff;
  }
  40% {
    background-color: #78eb54;
    color: #1d1d1d;
  }
  50% {
    background-color: #78eb54;
    color: #1d1d1d;
  }
  90% {
    background-color: #00381c;
    color: #fff;
  }
  100% {
    background-color: #00381c;
    color: #fff;
  }
}
.case-studies-section .section-footer-exact {
  /* ---------- TIMELINE STYLES (Revised) ---------- */
}
.case-studies-section .section-footer-exact .cta-process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto 50px;
  height: 60px;
  align-items: flex-start;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Base line (Stops exactly at the masked area) */
}
.case-studies-section .section-footer-exact .cta-process-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 71px;
  right: 71px;
  height: 2px;
  background-color: #00381c;
  opacity: 0.4;
}
.case-studies-section .section-footer-exact .cta-process-timeline {
  /* Moving dot (Now respects its own width at the end) */
}
.case-studies-section .section-footer-exact .cta-process-timeline .timeline-runner {
  position: absolute;
  top: 22px;
  width: 13px;
  height: 4px;
  background-color: #78eb54;
  border-radius: 10px;
  animation: runner-move 3.5s ease-in-out infinite;
}
.case-studies-section .section-footer-exact .cta-process-timeline .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.case-studies-section .section-footer-exact .cta-process-timeline .process-step .process-icon {
  font-size: 30px;
  padding: 6px;
  border-radius: 50%;
  transition: background-color 0.4s ease, color 0.4s ease;
  background-color: #1d1d1d;
  transform: translateY(-50%) translateY(24px);
}
.case-studies-section .section-footer-exact .cta-process-timeline .process-step .process-text {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
}
.case-studies-section .section-footer-exact .cta-process-timeline {
  /* Activation styles remain the same */
}
.case-studies-section .section-footer-exact .cta-process-timeline .start-step .process-icon {
  background-color: #78eb54;
  color: #1d1d1d;
}
.case-studies-section .section-footer-exact .cta-process-timeline .end-step .process-icon {
  background-color: #00381c;
  color: #fff;
  animation: activate-end 3.5s ease-in-out infinite;
}
.case-studies-section .section-footer-exact .cta-buttons-exact .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  color: #1d1d1d;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.case-studies-section .section-footer-exact .cta-buttons-exact {
  /* Transparent / Secondary button */
}
.case-studies-section .section-footer-exact .cta-buttons-exact .btn-trans {
  background-color: transparent !important;
  border: 1px solid #fff;
  color: #fff;
  margin-left: 15px;
  /* ensure icon inherits color */
}
.case-studies-section .section-footer-exact .cta-buttons-exact .btn-trans .icon {
  color: #fff;
}
.case-studies-section .section-footer-exact .cta-buttons-exact .btn-trans:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.case-studies-section .section-footer-exact .cta-buttons-exact {
  /* icon animation (unchanged) */
}
.case-studies-section .section-footer-exact .cta-buttons-exact .icon-swap {
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  flex-shrink: 0;
  overflow: visible;
}
.case-studies-section .section-footer-exact .cta-buttons-exact .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.case-studies-section .section-footer-exact .cta-buttons-exact .icon-main {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.case-studies-section .section-footer-exact .cta-buttons-exact .icon-hover {
  opacity: 0;
  transform: translate(-140%, 160%);
}
.case-studies-section .section-footer-exact .cta-buttons-exact .btn:hover .icon-main {
  transform: translate(140%, -180%);
  opacity: 0;
}
.case-studies-section .section-footer-exact .cta-buttons-exact .btn:hover .icon-hover {
  transform: translate(-50%, -50%);
  opacity: 1;
}

@media (max-width: 768px) {
  .case-studies-section {
    padding: 60px 0;
  }
  .case-studies-section .section-header .section-title {
    font-size: 28px;
  }
  .case-studies-section .section-header .section-subtitle {
    font-size: 16px;
  }
  .case-studies-section .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .case-studies-section .case-studies-grid .case-study-card .card-content {
    padding: 20px;
  }
  .case-studies-section .section-footer .cta-section {
    padding: 30px 20px;
  }
  .case-studies-section .section-footer .cta-section .cta-title {
    font-size: 24px;
  }
  .case-studies-section .section-footer .cta-section .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .case-studies-section .section-footer .cta-section .cta-buttons .arrow-separator {
    transform: rotate(90deg);
  }
}
@media (max-width: 480px) {
  .case-studies-section .section-description p {
    font-size: 14px;
  }
  .case-studies-section .case-studies-grid .case-study-card .card-content .card-title {
    font-size: 18px;
  }
  .case-studies-section .case-studies-grid .case-study-card .card-content .card-description {
    font-size: 14px;
  }
}
.why-choose-us-section {
  padding-top: 80px;
  background-color: #f4f4e7;
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.why-choose-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-choose-us-section .eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.why-choose-us-section .main-title {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  margin-top: 20px;
  font-size: 44px;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 20px;
}
.why-choose-us-section .description {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 980px;
  margin: 0 auto 70px; /* Added auto margin and a bottom margin to separate from tabs */
  font-size: 16px;
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.8);
  text-align: center;
}
.why-choose-us-section .tab-section {
  background-color: #f4f4e7;
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.why-choose-us-section .tab-section .nav-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.why-choose-us-section .tab-section .nav-pills .nav-item {
  margin-right: 0.75rem;
  margin-bottom: 1rem;
  flex: 0 0 auto;
}
.why-choose-us-section .tab-section .nav-pills .nav-link {
  border-radius: 8px;
  padding: 18px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  background-color: white;
  color: #0e1c03;
}
.why-choose-us-section .tab-section .nav-pills .nav-link iconify-icon {
  color: #1d1d1d;
  transition: color 0.3s ease;
}
.why-choose-us-section .tab-section .nav-pills .nav-link:hover:not(.active) {
  background-color: #1d1d1d;
  color: #78eb54;
}
.why-choose-us-section .tab-section .nav-pills .nav-link:hover:not(.active) iconify-icon {
  color: #78eb54;
}
.why-choose-us-section .tab-section .nav-pills .nav-link.active {
  background-color: #1d1d1d !important;
  color: #78eb54 !important;
}
.why-choose-us-section .tab-section .nav-pills .nav-link.active iconify-icon {
  color: #78eb54 !important;
}
.why-choose-us-section .tab-content {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.why-choose-us-section .tab-content .circle {
  background-color: #78eb54;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-choose-us-section .tab-content .circle iconify-icon {
  color: #1d1d1d;
}
.why-choose-us-section .tab-content .content-pane-dark {
  background-color: #001a0d;
  color: #78eb54;
  border-radius: 16px;
}
.why-choose-us-section .tab-content .content-pane-dark h3 {
  color: #78eb54;
}
.why-choose-us-section .tab-content .content-pane-dark p {
  color: white;
}
.why-choose-us-section .tab-content .content-pane-light {
  background-color: white;
  border: 1px solid #1d1d1d;
  border-radius: 8px;
  color: #1d1d1d;
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 60px 0;
  }
  .why-choose-us-section .main-title {
    font-size: 36px;
  }
}
.our-strength-section {
  padding: 80px 0px;
  background-color: #f4f4e7;
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.our-strength-section .tab-section {
  background-color: #f4f4e7;
}
.our-strength-section .tab-section .nav-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.our-strength-section .tab-section .nav-pills .nav-item {
  margin-right: 0.75rem;
  margin-bottom: 1rem;
  flex: 0 0 auto;
}
.our-strength-section .tab-section .nav-pills .nav-link {
  border-radius: 25px;
  padding: 13px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  background-color: white;
  color: #1d1d1d;
  font-size: 16px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.our-strength-section .tab-section .nav-pills .nav-link iconify-icon {
  color: #1d1d1d;
  transition: color 0.3s ease;
}
.our-strength-section .tab-section .nav-pills .nav-link:hover:not(.active) {
  background-color: #1d1d1d;
  color: #78eb54;
}
.our-strength-section .tab-section .nav-pills .nav-link:hover:not(.active) iconify-icon {
  color: #78eb54;
}
.our-strength-section .tab-section .nav-pills .nav-link.active {
  background-color: #78eb54 !important;
  color: #1d1d1d !important;
}
.our-strength-section .tab-section .nav-pills .nav-link.active iconify-icon {
  color: #78eb54 !important;
}
.our-strength-section {
  /* =====  OUR-STRENGTH  TAB-PANES  ===== */
}
.our-strength-section .strength-card {
  padding: 24px;
  background-color: white;
  border-radius: 20px;
  text-align: start;
  color: #1d1d1d;
  min-height: 300px;
}
.our-strength-section .strength-icon {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #78eb54;
  margin-bottom: 8px;
}
.our-strength-section .strength-icon span {
  font-size: 32px;
  font-weight: 700;
}
.our-strength-section .strength-label {
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 28px;
  margin: 22px 0px 22px 0px;
}
.our-strength-section .strength-desc {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #1d1d1d;
  letter-spacing: -0.08px;
}
.our-strength-section {
  /* keep columns centred on mobile */
}
@media (max-width: 576px) {
  .our-strength-section .strength-number {
    font-size: 40px;
  }
  .our-strength-section .strength-label {
    font-size: 16px;
  }
  .our-strength-section .strength-desc {
    font-size: 13px;
  }
}

/* ================= GRID ================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

/* ================= ACCORDION ================= */
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-column .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: inherit;
}

.faq-item {
  background: #0f2318;
  overflow: hidden;
  border: none;
  transition: background 0.3s ease;
  margin-bottom: 20px;
  border-radius: 24px !important;
}
.faq-item .accordion-button {
  padding: 34px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  gap: 24px;
}
.faq-item:has(.accordion-button:not(.collapsed)) {
  background: #7cff5a;
  color: #1d1d1d;
}
.faq-item:has(.accordion-button:not(.collapsed)) .faq-question {
  color: #062010;
  background-color: transparent;
  box-shadow: none;
}
.faq-item:has(.accordion-button:not(.collapsed)) .icon {
  transform: rotate(180deg);
  border-color: #062010;
}
.faq-item:has(.accordion-button:not(.collapsed)) {
  /* Mobile/Default BS behavior handles the display:block/none.
      We just need to ensure the inner content looks right. */
}

.faq-question {
  width: 100%;
  background: none;
  background-color: transparent;
  border: none;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: none !important;
}
.faq-question::after {
  display: block !important;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2378eb54'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.faq-question:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23062010'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ================= ANSWER ================= */
.faq-answer {
  padding: 28px;
  background-color: #17281c !important;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.faq-answer p {
  font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: inherit;
}

.faq-item:has(.accordion-button:not(.collapsed)) .faq-answer p {
  color: rgba(255, 255, 255, 0.95);
}

/* ----------  TEMP: keep mega-menu open while designing  ---------- */

/*# sourceMappingURL=style.css.map */
