
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #1c1c1c;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

i[class^="ri-"] {
  line-height: 1;
}


.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1200px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease;
}


.navbar.scrolled {
  background: #ffffff;
  border-color: #e2e2e2;
}

.navbar.scrolled .nav-links a {
  color: #141414;
}

.navbar.scrolled .nav-links a:hover {
  color: #ee7420;
}

.navbar.scrolled .logo-text strong {
  color: #141414;
}

.navbar-inner {
  padding: 9px 10px 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.logo-text small {
  color: #f4772e;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-top: 3px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.nav-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #f4772e;
}


.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.25s ease;
}

.navbar.scrolled .nav-toggle,
.navbar.menu-open .nav-toggle {
  color: #141414;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 18px 18px;
}

.mobile-menu a {
  color: #141414;
  font-size: 15.5px;
  font-weight: 400;
  padding: 11px 10px;
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}

.mobile-menu a:hover {
  background: #f5f5f4;
  color: #ee7420;
}

.mobile-menu-btn {
  margin-top: 10px;
  justify-content: center;
  font-size: 15px;
  padding: 13px 20px;
  color: #ffffff !important;
}

.navbar.menu-open {
  background: #ffffff;
  border-color: #e2e2e2;
  border-radius: 24px;
}

.navbar.menu-open .logo-text strong {
  color: #141414;
}

.navbar.menu-open .mobile-menu {
  display: flex;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease,
    box-shadow 0.15s ease;
}

.btn i {
  font-size: 1.1em;
}

.btn-orange {
  background: #ee7420;
  color: #ffffff;
  box-shadow: 0 5px 0 #111111;
}

.btn-orange:hover {
  background: #fb8434;
}

.btn-white {
  background: #ffffff;
  color: #141414;
  box-shadow: 0 5px 0 #111111;
}

.btn-white:hover {
  background: #f4f4f4;
}


.btn:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 #111111;
}

.btn-nav {
  font-size: 14px;
  padding: 11px 20px;
}

.btn-lg {
  font-size: 15.5px;
  padding: 17px 29px;
}


.hero {
  position: relative;
  min-height: 92vh;
  background-image: url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.42) 50%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%);
}


.hero {
  display: flex;
  align-items: flex-end;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 140px 0 130px;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 400;
  margin-bottom: 24px;
  transition: background 0.2s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-badge i {
  font-size: 15px;
  opacity: 0.9;
}

.badge-new {
  background: #ee7420;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 12px;
}


.hero-title {
  color: #ffffff;
  font-size: clamp(42px, 5.3vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 660px;
  margin-bottom: 22px;
}


.hero-desc {
  color: #ffffff;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 34px;
}


.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 60%,
    #ffffff 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 60%);
  pointer-events: none;
}


.about {
  background: #ffffff;
  padding: 120px 0 130px;
}

.about-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}

.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.about-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.about-title .dark {
  color: #141414;
}

.about-title .gray {
  color: #b3b3b3;
}

.about-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}


.about-clients {
  text-align: center;
}

.avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
}

.avatars img + img {
  margin-left: -12px;
}

.clients-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #141414;
}


.about-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 500;
  color: #141414;
  margin-bottom: 18px;
}

.about-address i {
  font-size: 18px;
}

.about-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 18px;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #4c4c4c;
  max-width: 420px;
}

.clients-text {
  font-weight: 500;
}


.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: #141414;
  margin-bottom: 14px;
}

.section-label i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #141414;
  color: #ffffff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #141414;
}

.section-label.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-title.center {
  text-align: center;
}


.services {
  background: #f5f5f4;
  padding: 115px 0 125px;
}

.services-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.services-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.15s ease;
}

.carousel-prev {
  background: #ee7420;
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 0 #111111;
}

.carousel-prev:hover {
  background: #fb8434;
}

.carousel-next {
  background: #ffffff;
  color: #ee7420;
  border: 1.5px solid #ee7420;
  box-shadow: 0 5px 0 #111111;
}

.carousel-next:hover {
  background: rgba(238, 116, 32, 0.08);
}

.carousel-btn:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 #111111;
}


.services-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 300px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 22px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 10px;
  padding: 0 6px;
}

.service-card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #4c4c4c;
  margin-bottom: 18px;
  padding: 0 6px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 500;
  color: #141414;
  padding: 0 6px;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #ee7420;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}


.process {
  background: #ffffff;
  padding: 120px 0 135px;
}

.process-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
  text-align: center;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #14224a;
  margin-bottom: 14px;
}

.process-badge i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #141414;
  color: #ffffff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process .section-title {
  margin-bottom: 70px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 0;
}

.process-step {
  padding: 0 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f6f6f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #141414;
  margin-bottom: 26px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 12px;
  white-space: nowrap;
}

.process-step p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #4c4c4c;
  margin: 0 auto;
}


.step-connector {
  position: absolute;
  top: 10px;
  height: 44px;
  width: calc(33.333% - 88px);
  overflow: visible;
}

.connector-1 {
  left: calc(16.666% + 44px);
}

.connector-2 {
  left: calc(50% + 44px);
}


.testimonials {
  background: #f5f5f4;
  padding: 115px 0 125px;
}

.testimonials-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
}

.testimonials .section-title {
  display: block;
  text-align: center;
  margin-bottom: 56px;
}


.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 300px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.stars {
  display: flex;
  gap: 3px;
  color: #ee7420;
  font-size: 17px;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #3c3c3c;
  margin-bottom: 26px;
  flex: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #141414;
}

.testimonial-person span {
  font-size: 13px;
  font-weight: 300;
  color: #8a8a8a;
}


.projects {
  background: #ffffff;
  padding: 110px 0 100px;
}

.projects-title {
  display: block;
  margin-bottom: 48px;
}

.projects .section-label {
  display: flex;
  justify-content: center;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee + .marquee {
  margin-top: 14px;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.marquee-track img {
  width: 450px;
  height: 285px;
  object-fit: cover;
  border-radius: 12px;
  flex: 0 0 auto;
}

@keyframes marquee-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee-left .marquee-track {
  animation: marquee-scroll-left 40s linear infinite;
}

.marquee-right .marquee-track {
  animation: marquee-scroll-right 40s linear infinite;
}


.marquee-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.6);
}

.marquee-logo .logo-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
}

.marquee-logo .logo-icon svg {
  width: 100%;
  height: 100%;
}

.marquee-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.marquee-logo-text strong {
  color: #141414;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
}

.marquee-logo-text small {
  color: #f4772e;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.6px;
  margin-top: 4px;
}


.map {
  position: relative;
  line-height: 0;
}

.map iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}


.map-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
}


.contact {
  background: #ffffff;
  padding: 125px 0 135px;
}

.contact-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}


.contact-form {
  background: #f7f7f6;
  border-radius: 22px;
  padding: 40px 38px 44px;
}

.contact-form h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 300;
  color: #141414;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
  outline: none;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b6b6b;
}

.contact-form select {
  appearance: none;
  color: #6b6b6b;
  cursor: pointer;
}

.select-wrap {
  position: relative;
}

.select-wrap i {
  position: absolute;
  right: 16px;
  top: 17px;
  font-size: 18px;
  color: #6b6b6b;
  pointer-events: none;
}

.contact-form button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
}


.contact-info .section-title {
  margin-bottom: 18px;
}

.contact-desc {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #4c4c4c;
  max-width: 460px;
  margin-bottom: 36px;
}

.contact-subtitle {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  font-size: 15px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 14px;
}

.contact-list strong {
  font-weight: 600;
  color: #141414;
  margin-right: 6px;
}


.cta {
  position: relative;
  background: #e96f1d;
  overflow: hidden;
}

.cta-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 64px 0;
  position: relative;
  z-index: 2;
}

.cta-body {
  max-width: 540px;
}

.cta-body h2 {
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 22px;
}

.cta-body p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.cta-media::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -90px;
  width: 180px;
  height: 120%;
  background: #e96f1d;
  border-radius: 0 55% 45% 0 / 0 60% 40% 0;
}


.stats {
  background: #ffffff;
  padding: 0 0 110px;
}

.stats-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  background: #f5f5f4;
  border-radius: 18px;
  padding: 34px 26px 30px;
  text-align: left;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(238, 116, 32, 0.12);
  color: #ee7420;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat strong {
  display: block;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #141414;
  margin-bottom: 6px;
}

.stat span {
  font-size: 14.5px;
  font-weight: 300;
  color: #4c4c4c;
}


.footer {
  background: #f7f7f6;
  padding: 90px 0 0;
}

.footer-inner {
  max-width: 1200px;
  width: calc(100% - 64px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 70px;
}


.footer-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #10182b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 26px;
  height: 26px;
}

.footer-logo span {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.footer-logo span small {
  color: #f4772e;
  font-size: 5.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-top: 3px;
}

.footer-brand p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #2c2c2c;
  max-width: 240px;
  margin-bottom: 24px;
}


.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
  font-size: 14.5px;
  font-weight: 300;
  color: #3c3c3c;
}

.footer-col a {
  color: #3c3c3c;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col a:hover {
  color: #ee7420;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact i {
  font-size: 17px;
  color: #141414;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #141414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social:hover {
  background: #ee7420;
  color: #ffffff;
  transform: translateY(-2px);
}


.footer-bottom {
  border-top: 1px solid #e4e4e2;
  padding: 26px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #3c3c3c;
}

.footer-bottom a {
  color: #3c3c3c;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ee7420;
}


@media (max-width: 900px) {
  .cta-media {
    display: none;
  }

  .cta-body {
    max-width: 100%;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
    padding: 44px 28px;
  }

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

  .testimonial-card {
    flex: 0 0 88%;
  }

  .process-step h3 {
    white-space: normal;
  }

  .marquee-track img {
    width: 220px;
    height: 140px;
  }

  .marquee-logo {
    width: 110px;
    height: 110px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card {
    flex: 0 0 84%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step-connector {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-media img {
    height: 340px;
  }

  .about-meta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-clients {
    text-align: left;
  }

  .avatars {
    justify-content: flex-start;
  }
}


@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .btn-nav {
    display: none;
  }

  .navbar {
    width: calc(100% - 24px);
    top: 10px;
  }

  .navbar-inner {
    padding: 8px 14px;
  }

  .hero-content {
    width: calc(100% - 44px);
    padding: 130px 0 80px;
  }

  .hero-title br,
  .hero-desc br {
    display: none;
  }

  .hero-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .map iframe {
    height: 380px;
  }

  .marquee-track img {
    width: 260px;
    height: 165px;
  }

  .contact-form {
    padding: 30px 24px 34px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 36px);
  }
}
