#preloader,
body {
  background: var(--gs-bg);
}
.btn-primary-gs,
.card-gs-gradient,
.frame-card-gs-gradient,
.card-gs,
.frame-card-gs,
.footer,
.hero,
.project-card {
  overflow: hidden;
}
.footer-links a,
.footer-social a,
a {
  text-decoration: none;
}
.btn-primary-gs,
.page-title,
.stat,
.value-card {
  text-align: center;
}
.brand-mark,
.icon-badge,
.preloader-core,
.scroll-top,
.team-social a,
.theme-toggle {
  place-items: center;
}
:root {
  --gs-bg: #f6faf3;
  --gs-fg: #0f2a1d;
  --gs-muted: #5a6b60;
  --gs-border: #dfe7dc;
  --gs-primary: #16a34a;
  --gs-primary-hover: #15803d;
  --gs-secondary: #166534;
  --gs-accent: #84cc16;
  --gs-accent-glow: #a3e635;
  --gs-earth: #a16207;
  --gs-card: #ffffff;
  --gs-card-hover: #fafff7;
  --gs-radius: 1rem;
  --gs-radius-lg: 1.5rem;
  --gs-radius-xl: 2rem;
  --gs-radius-full: 999px;
  --gs-gradient: linear-gradient(135deg, #16a34a 0%, #22c55e 40%, #84cc16 100%);
  --gs-gradient-subtle: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.08) 0%,
    rgba(132, 204, 22, 0.06) 100%
  );
  --gs-gradient-dark: linear-gradient(
    135deg,
    #0f2a1d 0%,
    #14532d 50%,
    #0f2a1d 100%
  );
  --gs-hero: linear-gradient(
    135deg,
    rgba(15, 42, 29, 0.78) 0%,
    rgba(22, 101, 52, 0.5) 60%,
    rgba(15, 42, 29, 0.65) 100%
  );
  --gs-shadow-sm: 0 2px 8px rgba(15, 42, 29, 0.06);
  --gs-shadow-md: 0 8px 32px rgba(15, 42, 29, 0.1);
  --gs-shadow-lg: 0 20px 56px rgba(22, 101, 52, 0.18);
  --gs-shadow-xl: 0 32px 80px rgba(22, 101, 52, 0.25);
  --gs-shadow-btn: 0 10px 30px -8px rgba(22, 163, 74, 0.5);
  --gs-glass: rgba(255, 255, 255, 0.7);
  --gs-glass-border: rgba(255, 255, 255, 0.55);
  --gs-blur: blur(16px);
  --gs-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gs-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-bs-theme="dark"] {
  --gs-bg: #0b1a13;
  --gs-fg: #eaf5ec;
  --gs-muted: #9fb3a5;
  --gs-border: #1e2e25;
  --gs-card: #122318;
  --gs-card-hover: #162d1f;
  --gs-glass: rgba(18, 35, 24, 0.75);
  --gs-glass-border: rgba(255, 255, 255, 0.08);
  --gs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --gs-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --gs-shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.45);
  --gs-shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.55);
  --gs-hero: linear-gradient(
    135deg,
    rgba(11, 26, 19, 0.85) 0%,
    rgba(18, 35, 24, 0.6) 60%,
    rgba(11, 26, 19, 0.7) 100%
  );
  --gs-gradient-subtle: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.12) 0%,
    rgba(132, 204, 22, 0.08) 100%
  );
}
* {
  border-color: var(--gs-border);
}
html {
  scroll-behavior: smooth;
}
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body {
  color: var(--gs-fg);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  transition: background 0.4s, color 0.4s;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s, visibility 0.55s;
  pointer-events: all;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: 1.4s linear infinite preloaderSpin;
}
.preloader-ring:first-child {
  width: 120px;
  height: 120px;
  border-top-color: #16a34a;
  border-right-color: rgba(22, 163, 74, 0.4);
  animation-duration: 1.6s;
}
.preloader-ring:nth-child(2) {
  width: 94px;
  height: 94px;
  border-bottom-color: #84cc16;
  border-left-color: rgba(132, 204, 22, 0.4);
  animation-duration: 1.1s;
  animation-direction: reverse;
}
.preloader-ring:nth-child(3) {
  width: 66px;
  height: 66px;
  border-top-color: #22c55e;
  border-right-color: rgba(34, 197, 94, 0.35);
  animation-duration: 0.85s;
}
.preloader-core {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gs-gradient);
  display: grid;
  color: #fff;
  font-size: 1.3rem;
  z-index: 2;
  animation: 1.2s ease-in-out infinite preloaderPulse;
  box-shadow: 0 0 40px rgba(22, 163, 74, 0.5);
}
.preloader-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  animation: 8s linear infinite preloaderSpin;
}
.preloader-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  opacity: 0.7;
}
.btn-primary-gs,
.card-gs-gradient,
.frame-card-gs-gradient,
.card-gs,
.frame-card-gs,
.section-y,
.section-y > * {
  position: relative;
}
.preloader-dot:first-child {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #84cc16;
}
.preloader-dot:nth-child(2) {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
}
.preloader-dot:nth-child(3),
.preloader-dot:nth-child(4),
.search-box i {
  top: 50%;
  transform: translateY(-50%);
}
.preloader-dot:nth-child(3) {
  left: 8px;
  background: #16a34a;
}
.preloader-dot:nth-child(4) {
  right: 8px;
  background: #84cc16;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(22, 163, 74, 0.5);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 60px rgba(22, 163, 74, 0.7);
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit, Inter, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}
a {
  color: inherit;
  transition: var(--gs-transition);
}
.container-x {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 1024px) {
  .container-x {
    padding-inline: 2rem;
  }
}
.section-y {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .section-y {
    padding-block: 7rem;
  }
}
.section-y::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(120px);
}
.section-y > * {
  z-index: 1;
}
.section-alt::before {
  width: 500px;
  height: 500px;
  background: rgba(22, 163, 74, 0.07);
  top: -180px;
  right: -200px;
}
.section-alt2::before {
  width: 400px;
  height: 400px;
  background: rgba(132, 204, 22, 0.08);
  bottom: -140px;
  left: -160px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--gs-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.btn-outline-gs,
.btn-primary-gs {
  align-items: center;
  font-weight: 600;
  gap: 0.55rem;
  cursor: pointer;
}
.btn-outline-gs,
.card-gs-glass {
  backdrop-filter: var(--gs-blur);
}
.btn-primary-gs {
  background-image: var(--gs-gradient);
  color: #fff;
  border: 0;
  border-radius: var(--gs-radius-full);
  padding: 0.85rem 1.7rem;
  box-shadow: var(--gs-shadow-btn);
  transition: var(--gs-bounce);
  display: inline-block;
}
.btn-outline-gs,
.cert-badge {
  border-radius: var(--gs-radius-full);
}
.btn-primary-gs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn-primary-gs:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 18px 40px -8px rgba(22, 163, 74, 0.55);
}
.btn-primary-gs:hover::after,
.card-gs:hover::before,
.frame-card-gs:hover::before,
.card-gs-gradient:hover::before,
.frame-card-gs-gradient:hover::before,
.value-card:hover::before {
  opacity: 1;
}
.btn-primary-gs:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(22, 163, 74, 0.4);
}
.btn-outline-gs {
  display: inline-flex;
  padding: 0.8rem 1.55rem;
  border: 1.5px solid rgba(22, 163, 74, 0.55);
  color: var(--gs-fg);
  background: var(--gs-glass);
  transition: var(--gs-bounce);
}
.frame-card-gs,
.card-gs-gradient,
.frame-card-gs-gradient,
.card-gs,
.card-gs-glass {
  padding: 1.75rem;
  transition: var(--gs-bounce);
}
.btn-outline-gs:hover {
  background: var(--gs-primary);
  color: #fff;
  border-color: var(--gs-primary);
  transform: translateY(-2px);
  box-shadow: var(--gs-shadow-btn);
}
.frame-card-gs,
.frame-card-gs-gradient,
.card-gs-gradient,
.card-gs {
  background: var(--gs-card);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
}
.frame-card-gs::before,
.frame-card-gs-gradient::before,
.card-gs-gradient::before,
.card-gs::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-gradient-subtle);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
  pointer-events: none;
}
.blog-card:hover,
.card-gs:hover,
.card-gs-gradient:hover,
.frame-card-gs-gradient:hover,
.frame-card-gs:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(22, 163, 74, 0.25);
}
.card-gs-glass {
  background: var(--gs-glass);
  border: 1px solid var(--gs-glass-border);
  border-radius: var(--gs-radius-lg);
}
.card-gs-glass:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(22, 163, 74, 0.3);
}
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: grid;
  background: var(--gs-gradient);
  color: #fff;
  font-size: 1.3rem;
  transition: var(--gs-bounce);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}
.frame-card-gs .icon-badge,
.card-gs-gradient .icon-badge,
.frame-card-gs-gradient .icon-badge,
.card-gs:hover .icon-badge,
.contact-info-card:hover .icon-badge {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.45);
}
.navbar-gs {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--gs-bg) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gs-border);
  transition: 0.35s;
}
.brand,
.navbar-gs .nav-link {
  transition: var(--gs-transition);
}
.navbar-gs.scrolled {
  box-shadow: var(--gs-shadow-md);
  background: color-mix(in oklab, var(--gs-bg) 92%, transparent);
}
.navbar-gs .nav-link {
  color: var(--gs-fg);
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative;
}
.navbar-gs .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2.5px;
  background: var(--gs-gradient);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.navbar-gs .nav-link:hover {
  color: var(--gs-primary);
}
.navbar-gs .nav-link:hover::after {
  transform: scaleX(1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: Outfit;
  font-weight: 800;
  font-size: 1.35rem;
}
.brand-mark,
.scroll-top.show {
  display: grid;
}
.brand-mark,
.project-card,
.theme-toggle {
  transition: var(--gs-bounce);
}
.brand:hover {
  transform: scale(1.03);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 0.8rem;
  background: var(--gs-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.08);
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gs-border);
  background: var(--gs-card);
  color: var(--gs-fg);
  display: grid;
  cursor: pointer;
}
.footer-social a,
.scroll-top {
  border-radius: 50%;
  color: #fff;
}
.footer h5,
.footer h6,
.hero {
  color: #fff;
}
.theme-toggle:hover {
  background: var(--gs-primary);
  color: #fff;
  border-color: var(--gs-primary);
  transform: rotate(20deg);
  box-shadow: var(--gs-shadow-btn);
}
.project-card:hover,
.scroll-top:hover {
  transform: translateY(-4px);
}
.hero,
.project-card:hover {
  box-shadow: var(--gs-shadow-xl);
}
.hero {
  position: relative;
  border-radius: var(--gs-radius-xl);
  isolation: isolate;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 8s;
}
.blog-card:hover img,
.hero:hover img.bg {
  transform: scale(1.06);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-hero);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  z-index: -1;
  pointer-events: none;
}
.project-card {
  position: relative;
  border-radius: var(--gs-radius-lg);
  display: block;
  box-shadow: var(--gs-shadow-md);
}
.faq .accordion-button,
.project-overlay,
img {
  transition: var(--gs-transition);
}
.project-card img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover img {
  transform: scale(1.1);
}
.project-overlay {
  position: absolute;
  inset: auto 1rem 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.scroll-top,
.team-card {
  transition: var(--gs-bounce);
}
.project-card:hover .project-overlay {
  transform: translateY(-3px);
}
.work-title {
  color: #000 !important;
}
.faq .accordion-button {
  color: var(--gs-fg);
}
.blog-card:hover,
.team-card:hover {
  box-shadow: var(--gs-shadow-lg);
}
a:hover .chip {
  background: rgba(22, 163, 74, 0.2);
}
.footer {
  position: relative;
  background: linear-gradient(180deg, #10281d 0, #0b1a13 100%);
  color: #c8d8cb;
  padding: 90px 0 25px;
}
.page-title,
.scroll-top {
  background: var(--gs-gradient);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(64, 179, 92, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(132, 204, 22, 0.06),
      transparent 35%
    );
  pointer-events: none;
}
.footer h5 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}
.stat b,
.timeline-year {
  font-family: Outfit;
  font-weight: 800;
}
.footer p {
  line-height: 1.9;
}
.footer-text {
  max-width: 360px;
}
.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li,
.footer-links li {
  margin-bottom: 14px;
}
.footer-links a {
  color: #c8d8cb;
  transition: 0.3s;
  position: relative;
}
.footer-links a::before {
  content: "➜";
  opacity: 0;
  margin-right: 0;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #67d47a;
  padding-left: 8px;
}
.footer-links a:hover::before {
  opacity: 1;
  margin-right: 8px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
}
.footer-contact i {
  color: #67d47a;
  font-size: 18px;
  margin-top: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.35s;
}
.footer-social a:hover {
  background: #4caf50;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}
.newsletter input {
  height: 52px;
  border: none;
  background: #fff;
}
.newsletter .btn {
  width: 56px;
  border-radius: 10px;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 55px 0 25px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 15px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #c8d8cb;
  text-decoration: none;
  transition: 0.3s;
}
.footer-bottom-links a:hover {
  color: #67d47a;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 70px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .newsletter form {
    flex-direction: column;
  }
  .newsletter .btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 12px;
  }
}
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: none;
  border: 0;
  z-index: 60;
  box-shadow: 0 10px 30px -8px rgba(22, 163, 74, 0.6);
  cursor: pointer;
}
.page-title::after,
.page-title::before,
.stats-band::after,
.stats-band::before {
  border-radius: 50%;
  pointer-events: none;
  content: "";
  position: absolute;
}
.scroll-top:hover {
  box-shadow: 0 16px 40px -6px rgba(22, 163, 74, 0.7);
}
.page-title {
  border-radius: 0 0 var(--gs-radius-xl) var(--gs-radius-xl);
}
hr {
  opacity: 0.5;
}
::selection {
  background: rgba(22, 163, 74, 0.25);
  color: var(--gs-fg);
}
.page-title,
.stats-band {
  background: var(--gs-gradient-dark);
  overflow: hidden;
}
:focus-visible {
  outline: 2px solid var(--gs-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .hero,
  .stats-band {
    border-radius: var(--gs-radius-lg);
  }
  .hero {
    min-height: 420px !important;
  }
  .hero h1 {
    font-size: 2rem !important;
  }
  .section-y {
    padding-block: 3.5rem;
  }
}
@media (max-width: 576px) {
  .hero {
    border-radius: 1rem;
    min-height: 360px !important;
  }
  .hero h1 {
    font-size: 1.55rem !important;
  }
  .btn-outline-gs,
  .btn-primary-gs {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .frame-card-gs,
  .card-gs-gradient,
  .frame-card-gs-gradient,
  .card-gs {
    padding: 1.25rem;
  }
}
.page-title h1,
.stat b {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.offcanvas {
  height: 700px !important;
}
.page-title {
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  border-radius: 0 0 var(--gs-radius-xl) var(--gs-radius-xl);
  position: relative;
}
.page-title::before {
  width: 400px;
  height: 400px;
  background: rgba(132, 204, 22, 0.1);
  top: -120px;
  right: -100px;
}
.page-title::after {
  width: 250px;
  height: 250px;
  background: rgba(22, 163, 74, 0.15);
  bottom: -80px;
  left: -60px;
}
.page-title h1 {
  position: relative;
  z-index: 1;
}
.breadcrumb-gs {
  display: inline-flex;
  display: inline-flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.breadcrumb-gs a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.breadcrumb-gs a:hover {
  color: #a3e635;
}
.stats-band {
  border-radius: var(--gs-radius-xl);
  padding: 3.5rem 1rem;
  color: #fff;
  position: relative;
  box-shadow: var(--gs-shadow-lg);
}
.timeline,
.timeline-item {
  position: relative;
  padding-left: 2rem;
}
.stats-band::before {
  width: 300px;
  height: 300px;
  background: rgba(132, 204, 22, 0.15);
  top: -100px;
  right: -80px;
}
.stats-band::after {
  width: 200px;
  height: 200px;
  background: rgba(22, 163, 74, 0.2);
  bottom: -60px;
  left: -40px;
}
.stat {
  color: #fff;
  position: relative;
  z-index: 1;
}
.stat b {
  display: block;
  background: linear-gradient(180deg, #fff 0, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-card {
  border-radius: var(--gs-radius-lg);
  background: var(--gs-card);
  border: 1px solid var(--gs-border);
  box-shadow: var(--gs-shadow-sm);
}
.team-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.team-meta {
  backdrop-filter: blur(10px);
  transition: var(--gs-transition);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gs-gradient);
  border-radius: 999px;
  opacity: 0.4;
}
.timeline-item {
  padding-bottom: 2.5rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -1.45rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gs-gradient);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.15);
  z-index: 1;
}
.search-box,
.team-card,
.value-card {
  position: relative;
}
.cert-badge,
.value-card {
  background: var(--gs-card);
  transition: var(--gs-bounce);
}
.blog-card,
.team-card {
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
}
.timeline-year {
  font-size: 1.1rem;
  color: var(--gs-primary);
  margin-bottom: 0.25rem;
}
.value-card {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  padding: 1.75rem;
  overflow: hidden;
}
.value-card:hover .icon-badge-sm {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.45);
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.2rem;
  border: 1.5px solid var(--gs-border);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: default;
}
.cert-badge:hover {
  border-color: var(--gs-primary);
  box-shadow: var(--gs-shadow-md);
  transform: translateY(-2px);
}
.cert-badge i {
  color: var(--gs-primary);
  font-size: 1.1rem;
}
.chip {
  border-radius: var(--gs-radius-full);
  color: var(--gs-secondary);
  transition: var(--gs-transition);
}
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-content p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--gs-muted);
}
.blog-content ol,
.blog-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}
.blog-content ol li,
.blog-content ul li {
  margin-bottom: 0.5rem;
  color: var(--gs-muted);
}
.blog-content blockquote {
  background: var(--gs-gradient-subtle);
  border-left: 4px solid var(--gs-primary);
  padding: 1.2rem 1.8rem;
  border-radius: 0 var(--gs-radius) var(--gs-radius) 0;
  margin: 2rem 0;
  font-style: italic;
}
.author-bio,
.form-control-gs,
.related-post-card,
.share-links a {
  background: var(--gs-card);
}
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  padding: 1.8rem;
  margin-top: 3rem;
}
.author-bio img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.share-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gs-border);
  align-items: center;
  justify-content: center;
  color: var(--gs-muted);
  transition: var(--gs-bounce);
  margin-right: 0.5rem;
}
.blog-card img,
.related-post-card img,
.team-card img {
  width: 100%;
  object-fit: cover;
}
.share-links a:hover {
  background: var(--gs-primary);
  color: #fff;
  border-color: var(--gs-primary);
  transform: translateY(-3px);
  box-shadow: var(--gs-shadow-md);
}
.related-post-card {
  display: block;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  transition: var(--gs-bounce);
}
.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(22, 163, 74, 0.25);
}
.related-post-card img {
  aspect-ratio: 16/9;
}
.form-control-gs {
  border: 1.5px solid var(--gs-border);
  color: var(--gs-fg);
  transition: var(--gs-transition);
}
.input-group {
  flex-wrap: nowrap !important;
}
.chip {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--gs-radius-full);
  background: rgba(22, 163, 74, 0.12);
  color: var(--gs-secondary);
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card,
.faq-category-btn,
.filter-btn {
  background: var(--gs-card);
  transition: var(--gs-bounce);
}
.blog-card {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
}
.blog-card img {
  aspect-ratio: 16/10;
  transition: transform 0.7s;
}
.faq-category-btn,
.filter-btn {
  border: 1.5px solid var(--gs-border);
  color: var(--gs-fg);
  padding: 0.6rem 1.25rem;
  border-radius: var(--gs-radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.faq-category-btn.active,
.faq-category-btn:hover,
.filter-btn.active,
.filter-btn:hover {
  background: var(--gs-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--gs-shadow-btn);
  transform: translateY(-2px);
}
.contact-info-card,
.faq .accordion-item,
.form-control-gs,
.team-card {
  background: var(--gs-card);
}
.faq .accordion-button,
.form-control-gs {
  color: var(--gs-fg);
  transition: var(--gs-transition);
}
.form-control-gs {
  border: 1.5px solid var(--gs-border);
  border: 1.5px solid var(--gs-border);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  width: 75%;
}
#contactForm .form-control-gs {
  width: 100% !important;
}
.form-control-gs:focus {
  outline: 0;
  border-color: var(--gs-primary);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
}
.contact-info-card {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  padding: 1.5rem;
  transition: var(--gs-bounce);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(22, 163, 74, 0.25);
}
.faq .accordion-item {
  border: 1px solid var(--gs-border);
  border-radius: 1rem !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--gs-transition);
}
.faq .accordion-item:hover {
  box-shadow: var(--gs-shadow-md);
  border-color: rgba(22, 163, 74, 0.2);
}
.faq .accordion-button {
  background: 0 0;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
}
.faq .accordion-button:not(.collapsed) {
  background: rgba(22, 163, 74, 0.08);
  color: var(--gs-secondary);
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--gs-muted);
  line-height: 1.8;
}
.faq .accordion-button i {
  margin-right: 0.75rem;
  color: var(--gs-primary);
  font-size: 1.1rem;
}
.search-box {
  margin-bottom: 2rem;
}
.search-box input {
  padding-left: 3rem;
}
.search-box i {
  position: absolute;
  left: 1.2rem;
  color: var(--gs-muted);
  font-size: 1.1rem;
}
.pricing-card.featured {
  background: var(--gs-gradient);
  color: #fff;
  border: 0;
  box-shadow: var(--gs-shadow-xl);
}
.featured .btn-primary-gs {
  background: #fff;
  color: var(--gs-primary);
}
.featured .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
.comparison-table th {
  background: rgba(22, 163, 74, 0.08);
  font-weight: 600;
}
.gallery-img {
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-img:hover {
  transform: scale(1.02);
}
.team-card {
  border-radius: var(--gs-radius-lg);
  border: 1px solid var(--gs-border);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.team-meta,
.team-social {
  position: absolute;
  right: 1rem;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(22, 163, 74, 0.2);
}
.team-card img {
  aspect-ratio: 4/5;
  transition: transform 0.8s;
}
.team-card:hover img {
  transform: scale(1.07);
}
.team-meta {
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.team-card:hover .team-meta {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.team-social {
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.35s;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(0);
}
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  color: var(--gs-primary);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}
.team-social a:hover {
  background: var(--gs-primary);
  color: #fff;
}
.privacy-nav-link {
  margin-bottom: 10px;
}
#navbar .active {
  color: var(--gs-primary) !important;
  font-weight: 700 !important;
}
