/* ============================================================
   GEANY SOFTECH — home.css
   AI-Style Corporate Design for Home Page
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gs-orange: #fe9402;
  --gs-orange2: #fd5f24;
  --gs-red: #f53548;
  --gs-purple: #cd3576;
  --gs-navy: #0A1628;
  --gs-navy2: #0f1e38;
  --gs-white: #ffffff;
  --gs-gray: #f4f6fb;
  --gs-text: #1e293b;
  --gs-muted: #64748b;

  --gs-grad: linear-gradient(135deg, #fe9402 0%, #fd5f24 33%, #f53548 66%, #cd3576 100%);
  --gs-grad-r: linear-gradient(to right, #fe9402, #fd5f24, #f53548, #cd3576);
  --gs-grad-soft: linear-gradient(135deg,
      rgba(254, 148, 2, .08) 0%,
      rgba(253, 95, 36, .07) 40%,
      rgba(245, 53, 72, .06) 70%,
      rgba(205, 53, 118, .06) 100%);

  --gs-shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
  --gs-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  --gs-shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --gs-radius: 16px;
  --gs-radius-lg: 24px;
  --gs-trans: .3s ease;
}

body {
  background: #fafbff;
  color: var(--gs-text);
  overflow-x: hidden;
}

/* ── General UI Utilities ── */
.hm-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 6px 0;
  margin-bottom: 12px;
}

.hm-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.hm-sub {
  font-size: 1.05rem;
  color: var(--gs-muted);
  max-width: 640px;
  line-height: 1.8;
}

.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--gs-trans);
  position: relative;
  overflow: hidden;
}

.hm-btn--primary {
  background: var(--gs-grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(245, 53, 72, .35);
}

.hm-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(245, 53, 72, .45);
}

/* ============================================================
   HEADER — Matches about-team.css
   ============================================================ */
.site-header {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254, 148, 2, .12);
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08), 0 1px 0 rgba(254, 148, 2, .15);
}

.header__bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.header__grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(254, 148, 2, .08), transparent);
  animation: hline-pulse 3s ease-in-out infinite;
}

.header__grid-line--1 {
  left: 25%;
  animation-delay: 0s;
}

.header__grid-line--2 {
  left: 50%;
  animation-delay: .8s;
}

.header__grid-line--3 {
  left: 75%;
  animation-delay: 1.6s;
}

@keyframes hline-pulse {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.header__inner {
  position: relative;
  z-index: 1;
}

.logo__wrapper {
  position: relative;
  display: inline-flex;
}

.logo__glow {
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: var(--gs-grad);
  opacity: 0;
  filter: blur(10px);
  transition: .3s;
}

.logo:hover .logo__glow {
  opacity: .18;
}

.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gs-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}

.nav__item.active>.nav__link::after,
.nav__link:hover::after {
  transform: scaleX(1);
}

.btn--nav {
  background: var(--gs-grad) !important;
  box-shadow: 0 4px 18px rgba(245, 53, 72, .35) !important;
  border-radius: 50px !important;
  gap: 7px;
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 53, 72, .45) !important;
}

.dropdown {
  border: 1px solid rgba(254, 148, 2, .15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .13), 0 0 0 1px rgba(254, 148, 2, .08);
  border-radius: 18px;
}

.dropdown__link:hover {
  background: var(--gs-grad-soft);
  color: var(--gs-orange);
}

.dropdown__link i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FOOTER — Matches about-team.css
   ============================================================ */
.footer {
  background: var(--gs-navy);
  position: relative;
  overflow: hidden;
}

.footer__top-bar {
  height: 3px;
  width: 100%;
  background: var(--gs-grad);
}

.footer__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
}

.footer__main {
  position: relative;
  z-index: 1;
  padding: 64px 0 44px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer__heading-accent {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--gs-grad);
  flex-shrink: 0;
}

.footer__tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  transition: var(--gs-trans);
}

.tech-pill i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-pill:hover {
  background: rgba(254, 148, 2, .12);
  border-color: rgba(254, 148, 2, .4);
  color: #fff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.footer__contact-icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .85rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, .6);
  transition: var(--gs-trans);
}

.footer__contact a:hover {
  color: var(--gs-orange);
}

.footer__social-link {
  transition: var(--gs-trans);
}

.footer__social-link:hover {
  background: var(--gs-grad);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(245, 53, 72, .4);
}

.footer__links a:hover {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__links a i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--gs-trans);
}

.footer__bottom-links a:hover {
  color: var(--gs-orange);
}

/* ============================================================
   HOME HERO SECTION — AI-Styled Reactive Aurora Blobs
   ============================================================ */
.hm-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-h, 100dvh);
  display: flex;
  align-items: center;
  background: var(--gs-navy);
  padding: clamp(90px, 12vh, 140px) 0 clamp(60px, 8vh, 90px);
  box-sizing: border-box;
}

.hm-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

.hm-blob--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, #fe9402 0%, transparent 70%);
  opacity: .4;
}

.hm-blob--2 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #f53548 0%, transparent 70%);
  opacity: .35;
}

.hm-blob--3 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: 30%;
  background: radial-gradient(circle, #cd3576 0%, transparent 70%);
  opacity: .3;
}

.hm-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(254, 148, 2, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 148, 2, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
  z-index: 2;
}

@keyframes grid-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.hm-hero__columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hm-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hm-hero__right {
  display: flex;
  position: relative;
}

.hm-hero__bg-img-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.05) 5%, rgba(0, 0, 0, 0.6) 35%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.05) 5%, rgba(0, 0, 0, 0.6) 35%, #000 100%);
}

.hm-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.95;
}

.hm-hero__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #0A1628 0%,
      rgba(10, 22, 40, 0.6) 30%,
      transparent 100%);
  pointer-events: none;
}

.hm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gs-orange);
  margin-bottom: 22px;
}

.hm-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gs-orange);
  box-shadow: 0 0 8px var(--gs-orange);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: .6;
  }
}

.hm-hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}

.hm-hero__title-grad {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hm-hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Scroll indicator */
.hm-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}

.hm-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(254, 148, 2, .8), transparent);
  animation: hm-scroll-pulse 2s ease-in-out infinite;
}

@keyframes hm-scroll-pulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .6;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

/* ============================================================
   JOIN WITH US SECTION (Modern Banner)
   ============================================================ */
.hm-join-banner {
  padding: 60px 0;
  background: var(--gs-navy2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.hm-join-banner__inner {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(254, 148, 2, 0.15);
  border-radius: var(--gs-radius-lg);
  padding: 45px 50px 45px 60px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.hm-join-banner__inner .hm-btn {
  display: inline-flex;
  width: fit-content;
  flex-shrink: 0;
}

.hm-join-banner__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.hm-about {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.hm-about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hm-about__desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gs-muted);
  margin-bottom: 24px;
}

.hm-about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* AI Floating Hex/Ring Visual element */
.hm-about__ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 4px dashed rgba(254, 148, 2, .35);
  position: absolute;
  animation: spin-ring 25s linear infinite;
  flex-shrink: 0;
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

.hm-about__card {
  background: var(--gs-navy);
  border-radius: var(--gs-radius-lg);
  padding: 44px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: var(--gs-shadow-lg);
  border: 1px solid rgba(254, 148, 2, .15);
  text-align: center;
  width: min(460px, 90%);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.hm-about__card-logo {
  max-width: 140px;
  margin: 0 auto 24px;
}

.hm-about__card h4 {
  color: var(--gs-orange);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hm-about__card p {
  color: rgba(255, 255, 255, .7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   WHY CHOOSE US SECTION (Modern Tech UI Style)
   ============================================================ */
.hm-choose {
  padding: 100px 0;
  background: var(--gs-gray);
  position: relative;
}

.hm-choose__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hm-choose__sub {
  color: var(--gs-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 40px;
}

.hm-choose__list {
  display: grid;
  gap: 25px;
}

.hm-choose__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hm-choose__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hm-choose__item-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin: 0;
}

.hm-choose__item-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gs-muted);
  margin: 0;
}

.hm-choose__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gs-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: var(--gs-trans);
}

.hm-choose__icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--gs-trans);
}

.hm-choose__item:hover .hm-choose__icon {
  background: var(--gs-grad);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 12px rgba(254, 148, 2, 0.25);
}

.hm-choose__item:hover .hm-choose__icon i {
  background: none;
  -webkit-text-fill-color: #fff;
  background-clip: initial;
}

.hm-choose__text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gs-navy);
}

.hm-choose__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hm-choose__stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--gs-radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--gs-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--gs-trans);
}

.hm-choose__stat-card--full {
  grid-column: span 2;
}

.hm-choose__stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(254, 148, 2, 0.03) 0%, rgba(255, 255, 255, 0) 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hm-choose__stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 148, 2, 0.2);
  box-shadow: var(--gs-shadow);
}

.hm-choose__stat-card:hover .hm-choose__stat-glow {
  opacity: 1;
}

.hm-choose__stat-val {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.hm-choose__stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gs-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.hm-why {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hm-why__blur-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 148, 2, 0.05) 0%, rgba(245, 53, 72, 0.02) 45%, rgba(255, 255, 255, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.hm-service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: var(--gs-radius);
  padding: 55px 30px 30px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--gs-shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hm-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gs-grad);
  border-radius: var(--gs-radius) var(--gs-radius) 0 0;
  opacity: 0;
  transition: var(--gs-trans);
}

.hm-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(254, 148, 2, .2);
  box-shadow: 0 20px 40px rgba(254, 148, 2, 0.08);
}

.hm-service-card:hover::before {
  opacity: 1;
}

.hm-service-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.hm-service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(254, 148, 2, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hm-service-card:hover .hm-service-card__icon {
  transform: translateX(-50%) translateY(-4px) scale(1.12);
}

.hm-service-card:hover .hm-service-card__icon img {
  box-shadow: 0 10px 24px rgba(254, 148, 2, 0.35);
}

.hm-service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-top: 10px;
  margin-bottom: 12px;
  transition: var(--gs-trans);
}

.hm-service-card:hover h3 {
  color: var(--gs-orange2);
}

.hm-service-card p {
  font-size: 0.9rem;
  color: var(--gs-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hm-service-card__more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gs-orange2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  opacity: 0.75;
  text-decoration: none;
  transition: var(--gs-trans);
}

.hm-service-card:hover .hm-service-card__more {
  opacity: 1;
  color: var(--gs-orange);
}

.hm-service-card__more i {
  font-size: 0.75rem;
  transition: var(--gs-trans);
}

.hm-service-card:hover .hm-service-card__more i {
  transform: translateX(4px);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.hm-products {
  padding: 100px 0;
  background: #fff;
}

.hm-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.hm-prod-card {
  background: #fff;
  border-radius: var(--gs-radius-lg);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
  transition: var(--gs-trans);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.hm-prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .2);
}

.hm-prod-card__img {
  height: 200px;
  background: var(--gs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hm-prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
  transition: transform .5s ease;
}

.hm-prod-card:hover .hm-prod-card__img img {
  transform: scale(1.08);
}

.hm-prod-card__body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hm-prod-card__cat {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gs-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hm-prod-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gs-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hm-prod-card p {
  font-size: 0.9rem;
  color: var(--gs-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.hm-prod-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gs-orange);
  text-decoration: none;
  transition: var(--gs-trans);
}

.hm-prod-card__link i {
  font-size: 0.8rem;
  transition: transform .3s ease;
}

.hm-prod-card:hover .hm-prod-card__link i {
  transform: translateX(4px);
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.hm-clients {
  padding: 90px 0;
  background: var(--gs-gray);
  overflow: hidden;
  position: relative;
}

.hm-clients__track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
  margin-top: 36px;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

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

.hm-client-logo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 12px;
  padding: 16px 30px;
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gs-shadow-sm);
  flex-shrink: 0;
}

.hm-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: .95;
  transition: var(--gs-trans);
}

.hm-client-logo:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* ============================================================
   STEPS TO START SECTION
   ============================================================ */
.hm-steps {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hm-steps__header {
  text-align: center;
  margin-bottom: 70px;
}

.hm-steps__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hm-steps__curve {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: calc(100% - 80px);
  z-index: 1;
  pointer-events: none;
}

.hm-steps__list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.hm-steps__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.hm-step-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: var(--gs-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--gs-shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 90%;
}

.hm-steps__row:nth-child(even) .hm-step-card {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  align-items: flex-start;
}

.hm-steps__row:nth-child(odd) .hm-step-card {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  align-items: flex-end;
}

.hm-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .25);
}

.hm-step-card__icon-wrap {
  position: relative;
  margin-bottom: 24px;
  z-index: 2;
}

.hm-step-card__icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--gs-trans);
  border: 1px solid rgba(254, 148, 2, .1);
}

.hm-step-card__icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
}

.hm-step-card:hover .hm-step-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(254, 148, 2, .2);
  border-color: transparent;
}

.hm-step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.hm-step-card p {
  font-size: 0.9rem;
  color: var(--gs-muted);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.hm-step-card__number {
  position: absolute;
  bottom: -15px;
  font-size: 7.5rem;
  font-weight: 900;
  color: rgba(254, 148, 2, .06);
  line-height: 1;
  pointer-events: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: var(--gs-trans);
  z-index: 1;
}

.hm-steps__row:nth-child(even) .hm-step-card__number {
  right: 15px;
}

.hm-steps__row:nth-child(odd) .hm-step-card__number {
  left: 15px;
}

.hm-step-card:hover .hm-step-card__number {
  color: rgba(254, 148, 2, .12);
  transform: scale(1.05) translateY(-5px);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.contact-map {
  background: var(--gs-gray);
}

.map-header {
  text-align: center;
  padding: 70px 0 40px;
}

.map-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1.5px solid rgba(254, 148, 2, .28);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  background-color: rgba(254, 148, 2, .05);
}

.map-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 10px;
}

.map-header p {
  color: var(--gs-muted);
  font-size: .95rem;
}

.map-embed-wrap {
  position: relative;
  border-top: 3px solid transparent;
  border-image: var(--gs-grad) 1;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, .06);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 430px;
  border: none;
  display: block;
  opacity: .95;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gs-grad);
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(245, 53, 72, .35);
  white-space: nowrap;
  z-index: 10;
}

/* ============================================================
   RESPONSIVE QUERIES
   ============================================================ */
@media (max-width: 991px) {
  .hm-steps__curve {
    display: none;
  }

  .hm-steps__row {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .hm-step-card {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    align-items: center !important;
    padding: 30px 24px;
  }

  .hm-steps__row:nth-child(odd) .hm-step-card__number {
    left: auto;
    right: 15px;
  }

  .hm-about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hm-about__visual {
    margin-top: 40px;
    min-height: 320px;
    overflow: hidden;
  }

  .hm-about__ring {
    width: min(300px, 85vw);
    height: min(300px, 85vw);
  }

  /* Wide rectangle card — shorter height, wider width */
  .hm-about__card {
    width: min(400px, 82vw);
    padding: 28px 24px;
    min-height: 240px;
  }

  .hm-hero__columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hm-hero__left {
    align-items: center;
  }

  .hm-hero__bg-img-container {
    width: 100%;
    opacity: 0.2;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hm-hero__bg-fade {
    background: radial-gradient(circle, rgba(10, 22, 40, 0.4) 0%, #0A1628 85%);
  }

  .hm-join-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 35px 25px;
  }

  .hm-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .hm-choose__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hm-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hm-products__grid {
    grid-template-columns: 1fr;
  }

  .hm-services-grid {
    grid-template-columns: 1fr;
  }

  .hm-choose__stats {
    grid-template-columns: 1fr;
  }

  .hm-choose__stat-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hm-choose__stat-card--full {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .hm-hero__title {
    font-size: 2.2rem;
  }

  .hm-about__visual {
    min-height: 270px;
    overflow: hidden;
  }

  .hm-about__ring {
    width: min(260px, 78vw);
    height: min(260px, 78vw);
  }

  /* Wide rectangle card on small phones */
  .hm-about__card {
    width: min(300px, 86vw);
    padding: 20px 20px;
    min-height: 200px;
  }

  .hm-about__card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .hm-about__card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* ============================================================
   FOOTER RESPONSIVE — matches careers.css breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }
}

/* ===== DUPLICATE TESTIMONIALS CAROUSEL ===== */
:root {
  --dot-color-1: #fe9402;
  --dot-color-1-rgb: 254, 148, 2;
  --dot-color-2: #fd5f24;
  --dot-color-2-rgb: 253, 95, 36;
  --dot-color-3: #f53548;
  --dot-color-3-rgb: 245, 53, 72;
  --dot-color-4: #cd3576;
  --dot-color-4-rgb: 205, 53, 118;
  --dot-color-5: #8b5cf6;
  --dot-color-5-rgb: 139, 92, 246;

  /* Default theme color (starts with slide 1) */
  --active-theme-color: var(--dot-color-1);
  --active-theme-rgb: var(--dot-color-1-rgb);
}

.carousel-container[data-active-slide="0"] {
  --active-theme-color: var(--dot-color-1);
  --active-theme-rgb: var(--dot-color-1-rgb);
}

.carousel-container[data-active-slide="1"] {
  --active-theme-color: var(--dot-color-2);
  --active-theme-rgb: var(--dot-color-2-rgb);
}

.carousel-container[data-active-slide="2"] {
  --active-theme-color: var(--dot-color-3);
  --active-theme-rgb: var(--dot-color-3-rgb);
}

.carousel-container[data-active-slide="3"] {
  --active-theme-color: var(--dot-color-4);
  --active-theme-rgb: var(--dot-color-4-rgb);
}

.carousel-container[data-active-slide="4"] {
  --active-theme-color: var(--dot-color-5);
  --active-theme-rgb: var(--dot-color-5-rgb);
}

.testimonials-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, rgba(254, 148, 2, 0.03) 0%, rgba(253, 95, 36, 0.02) 33%, rgba(245, 53, 72, 0.02) 66%, rgba(205, 53, 118, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-title-grad {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.testimonials-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(254, 148, 2, .25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.testimonials-main-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.testimonials-sub-desc {
  font-size: 1.05rem;
  color: var(--gs-muted);
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.carousel-container {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.carousel-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  transition: background 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s ease;
}

.carousel-glow--1 {
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(var(--active-theme-rgb), 0.25) 0%, transparent 70%);
}

.carousel-glow--2 {
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(var(--active-theme-rgb), 0.2) 0%, transparent 70%);
}

.carousel-card-wrapper {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--active-theme-rgb), 0.16);
  border-radius: var(--gs-radius-lg);
  box-shadow: 0 20px 50px rgba(var(--active-theme-rgb), 0.06);
  padding: 50px 70px;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active-slide {
  opacity: 1;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 24px;
}

.testimonial-card__avatar {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  margin: 6px;
}

.testimonial-client-logo {
  width: 78%;
  height: 78%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.testimonial-client-logo.logo-prism-johnson {
  width: 92%;
  height: 92%;
}

.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(var(--active-theme-rgb), 0.5);
  box-shadow: 0 0 10px rgba(var(--active-theme-rgb), 0.2);
  animation: pulse-ring 2.5s infinite ease-in-out;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.testimonial-card__info {
  flex-grow: 1;
}

.testimonial-client-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 3px;
}

.testimonial-client-role {
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-client-company {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gs-navy);
}

.testimonial-card__quote-icon {
  font-size: 3rem;
  color: rgba(var(--active-theme-rgb), 0.13);
  transition: color 0.6s ease;
  align-self: flex-start;
}

.testimonial-card__body {
  position: relative;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gs-text);
  font-weight: 500;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#ffffff, #ffffff), var(--gs-grad);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-nav i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: all 0.3s ease;
}

.carousel-nav--prev {
  left: -75px;
}

.carousel-nav--next {
  right: -75px;
}

.carousel-nav:hover {
  background-image: var(--gs-grad), var(--gs-grad);
  box-shadow: 0 8px 25px rgba(253, 95, 36, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav:hover i {
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.2);
}

.carousel-dot.active {
  background: var(--gs-grad) !important;
  border-color: transparent !important;
  box-shadow: 0 0 12px rgba(253, 95, 36, 0.6) !important;
  transform: scale(1.3);
}

.carousel-dot[data-slide="0"] {
  border-color: rgba(254, 148, 2, 0.25);
}

.carousel-dot[data-slide="1"] {
  border-color: rgba(253, 95, 36, 0.25);
}

.carousel-dot[data-slide="2"] {
  border-color: rgba(245, 53, 72, 0.25);
}

.carousel-dot[data-slide="3"] {
  border-color: rgba(205, 53, 118, 0.25);
}

.carousel-dot[data-slide="4"] {
  border-color: rgba(254, 148, 2, 0.25);
}

.carousel-dot[data-slide="0"]:hover {
  background: rgba(254, 148, 2, 0.4);
}

.carousel-dot[data-slide="1"]:hover {
  background: rgba(253, 95, 36, 0.4);
}

.carousel-dot[data-slide="2"]:hover {
  background: rgba(245, 53, 72, 0.4);
}

.carousel-dot[data-slide="3"]:hover {
  background: rgba(205, 53, 118, 0.4);
}

.carousel-dot[data-slide="4"]:hover {
  background: rgba(254, 148, 2, 0.4);
}

@media (max-width: 1120px) {
  .carousel-nav--prev {
    left: -40px;
  }

  .carousel-nav--next {
    right: -40px;
  }
}

@media (max-width: 900px) {
  .carousel-card-wrapper {
    padding: 40px 45px;
  }

  .carousel-nav {
    width: 44px;
    height: 44px;
  }

  .carousel-nav--prev {
    left: -28px;
  }

  .carousel-nav--next {
    right: -28px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0 50px;
  }

  .carousel-container {
    padding: 10px 5px;
  }

  .carousel-card-wrapper {
    padding: 35px 16px;
  }

  .testimonial-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .testimonial-card__quote-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2.2rem;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .carousel-nav {
    display: grid;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .carousel-nav--prev {
    left: -18px;
  }

  .carousel-nav--next {
    right: -18px;
  }
}

/* Short height viewports (landscape mobile, Nest Hub, etc.) */
@media (max-height: 580px) {
  .hm-hero__scroll {
    display: none !important;
  }
}