:root {
  --brand: #e1242a;
  --brand-dark: #b81c21;
  --ink: #1b1f24;
  --muted: #6b7280;
  --soft: #f6f7f9;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(16, 24, 40, .10);
  --shadow-sm: 0 6px 18px rgba(16, 24, 40, .08);
}

* {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 500;
    letter-spacing: -.02em;
}

img {
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none
}

.text-brand {
  color: var(--brand) !important
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: .6rem;
}

/* Buttons */
.btn {
    border-radius: 7px;
    font-weight: 600;
    padding: .7rem 1.6rem;
    transition: .25s;
}

.btn-brand {
  background: var(--brand);
  border: 2px solid var(--brand);
  color: #fff
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225, 36, 42, .35)
}

.btn-outline-dark {
  border: 2px solid var(--ink)
}

.btn-outline-dark:hover {
  transform: translateY(-2px)
}

.btn-lg {
  padding: .85rem 2rem
}

/* Top utility bar */
.top-bar {
  z-index: 1032;
  height: 40px;
  background: var(--brand);
  color: #fff;
  font-size: .82rem;
  display: flex;
  align-items: center;
  transition: transform .3s ease;
}

.top-bar .container {
  display: flex;
  align-items: center;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.top-bar a:hover {
  color: #fff;
  opacity: .75;
}

.top-bar .tb-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar .tb-contact i {
  margin-right: .35rem;
}

.top-bar .tb-social {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: auto;
}

.top-bar .tb-social .tb-follow {
  opacity: .85;
}

.top-bar .tb-social a {
  font-size: .95rem;
  line-height: 1;
}

.top-bar.hide {
  transform: translateY(-100%);
}

/* Navbar */
.site-nav {
    transition: .3s;
    padding: 0.0rem 0;
    background: #ffffff00;
    box-shadow: 0 1px 0 rgb(16 24 40 / 0%);
}

.site-nav.scrolled {
  padding: .45rem 0;
  box-shadow: 0 6px 24px rgba(16, 24, 40, .12)
}

a.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 80px;
  top: 35px;
  position: relative;
  z-index: 9999;
}

.brand-logo {
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: var(--shadow-sm)
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink)
}

.brand-word small {
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 800;
  font-size: 1.2rem
}

.brand-text small {
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55)
}

.site-nav .nav-link {
    font-weight: 500;
    color: var(--ink);
    margin: 0 .2rem;
    padding: .5rem 1.05rem;
    border-radius: 999px;
    transition: .25s;
}

.site-nav .nav-link:hover {
  color: var(--brand);
  background: rgba(225, 36, 42, .08)
}

.site-nav .nav-link.active {
  color: var(--brand);
  background: transparent
}

.site-nav .nav-link.active:hover {
  color: var(--brand-dark);
  background: transparent
}

/* Perfectly center the nav links on desktop, regardless of left/right widths */
@media (min-width: 992px) {
  .site-nav .container {
    position: relative;
  }

  .site-nav .navbar-nav {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    gap: 20px;
  }

  .site-nav .nav-contact {
    margin-left: auto;
  }
}

.nav-contact .contact-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-contact .contact-item i {
  color: var(--brand)
}

.nav-contact .contact-item:hover {
  color: var(--brand)
}

.btn-quote {
    background: #fff;
    border: 1.5px solid #E8302E;
    color: var(--ink);
    padding: .55rem 1.3rem;
    font-weight: 600;
    border-radius: 8px;
}
.btn-quote:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 36, 42, .3);
}

section.section.what {
  padding-top: 25px;
  padding-bottom: 20px;
}

/* Complete range of services — image cards */
#more-services {
  padding-top: 40px;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.range-card {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #eef1f4;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: .35s;
}
.range-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.range-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 22, .82) 0%, rgba(17, 19, 22, .35) 55%, rgba(17, 19, 22, 0) 100%);
}
.range-card h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  padding: 1.1rem 1.2rem;
}
@media (max-width: 991px) {
  .range-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .range-grid { grid-template-columns: 1fr; }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border: 1.5px solid #25D366;
  color: #fff;
  padding: .55rem 1.3rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}

p.text-muted {
  padding-top: 5px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 10rem !important;
    color: var(--ink);
    margin: 0px 22px 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eef1f4 url(../img/inner-banner.png) right center / cover no-repeat;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 82vh;
  margin: 0px 22px 0;
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f4;
}

.hero-track {
  position: relative;
  width: 100%;
  min-height: 82vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 4rem 0 7rem;
  color: var(--ink);
  background: #eef1f4 right center / cover no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: .25s;
}

.hero-arrow:hover {
  background: var(--brand);
  color: #fff;
}

.hero-arrow.hero-prev { left: 18px; }
.hero-arrow.hero-next { right: 18px; }

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, .25);
  transition: .25s;
}

.hero-dots button.active {
  background: var(--brand);
  width: 24px;
  border-radius: 6px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 25%), linear-gradient(95deg, rgb(255 255 255 / 36%) 0%, rgb(255 255 255 / 0%) 35%, rgb(255 255 255 / 36%) 55%, rgb(255 255 255 / 0%) 75%, rgb(255 255 255 / 0%) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between !important;
  gap: 2rem;
  flex-wrap: wrap;
  top: 90px;
}

.hero-text {
  max-width: 580px
}

.hero-title {
    font-size: clamp(2.3rem, 5.4vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 1.1rem;
    color: #22252a;
    line-height: 1.14;
    letter-spacing: -0.01em;
}

.hero-lead {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 540px;
  line-height: 1.6;
  margin: 0
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  z-index: 3;
}

.btn-white {
  background: #fff;
  border: 1.5px solid #e1e4e8;
  color: var(--ink)
}

.btn-dark-cta {
  background: #2c3036;
  border: 2px solid #2c3036;
  color: #fff
}

.btn-dark-cta:hover {
  background: #1b1e22;
  border-color: #1b1e22;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25)
}

.btn-white:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.hero-btn {
    border-radius: 8px;
    font-weight: 500;
    padding: .75rem 1.6rem;
    font-size: 0.95rem;
}
.hero-btn-outline {
  border: 1px solid var(--brand);
  color: var(--ink);
}
.hero-btn i {
  font-size: 0.8em;
  vertical-align: middle;
}

/* Feature strip (marquee) */
.feature-strip {
  background: var(--brand);
  color: #fff;
  padding: .85rem 0;
  overflow: hidden
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden
}

.feature-list.marquee-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.feature-strip:hover .marquee-track {
  animation-play-state: paused
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  font-size: .9rem;
  font-weight: 400;
  padding: 0 1.6rem;
  position: relative;
  white-space: nowrap;
}

.feature-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(255 255 255);
}

.feature-list li i {
  font-size: 1rem;
  opacity: .9
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media (prefers-reduced-motion:reduce) {
  .feature-list.marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto
  }
}

/* Sections */
.section {
  padding: 5rem 0
}

.section-head {
  max-width: 680px;
  margin: 0 auto 3rem
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem)
}

/* Services carousel */
.btn {
  border-radius: 7px;
  font-weight: 500;
  padding: .7rem 1.6rem;
  transition: .25s;
}

.btn-outline-brand {
  border: 1px solid var(--brand);
  color: var(--ink);
  background: #fff
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225, 36, 42, .3)
}

.services-carousel {
  position: relative;
  padding: 0 8px
}

.car-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.car-track::-webkit-scrollbar {
  display: none
}

.svc-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .3s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.svc-img {
  aspect-ratio: 4/3;
  overflow: hidden
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.svc-card:hover .svc-img img {
  transform: scale(1.06)
}

.svc-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
}

.svc-body h3 {
  font-size: 1.02rem;
  margin: 0;
  font-weight: 500
}

.svc-arrow {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(225, 36, 42, .1);
  color: var(--brand);
  font-size: .95rem;
  transition: .25s;
}

.svc-card:hover .svc-arrow {
  background: var(--brand);
  color: #fff
}

.car-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: .25s;
}

.car-arrow:hover {
  background: var(--brand);
  color: #fff
}

.car-arrow.car-prev {
  left: -10px
}

.car-arrow.car-next {
  right: -10px
}

.car-arrow:disabled {
  opacity: .35;
  cursor: default;
  background: #fff;
  color: var(--ink)
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem
}

.car-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #d4d7dd;
  transition: .25s;
}

.car-dots button.active {
  background: var(--brand);
  width: 24px;
  border-radius: 6px
}

@media (max-width:1199px) {
  .svc-card {
    flex-basis: calc((100% - 48px) / 3)
  }
}

@media (max-width:991px) {
  .svc-card {
    flex-basis: calc((100% - 24px) / 2)
  }

  .car-arrow {
    top: 34%
  }
}

@media (max-width:575px) {
  .svc-card {
    flex-basis: 85%
  }

  .car-arrow {
    display: none
  }
}

/* Commit / About */
.commit {
  background: #f5f6f8
}

.commit-img {
  position: relative;
  overflow: hidden;
  box-shadow: none;
  border-radius: 8px;
}

.commit-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.commit h2 {
  font-size: 30px;
  margin-bottom: 1rem;
}

/* Stats card */
.stats-card {
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  padding: 2.5rem 1rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) {
  .stats-card {
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50% + 1rem);
  }
}

.stat-item {
  padding: .5rem 1rem;
  position: relative
}

.stat-item+.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e6e8ec;
}

.stat-item .num {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.stat-item .num small {
  font-size: 1.4rem;
  font-weight: 700;
  color: #9aa0a6
}

.stat-item p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .88rem
}

/* Vision / Mission */
.vm-row {
  margin-top: 1.5rem
}

.vm-stack {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.5rem;
  align-items: start;
  height: 100%
}

section.section.pt-0.pb-5 {
  padding-top: 50px !important;
}

section.section.relab {
  padding-top: 0;
}

.vm-card {
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  border: none;
  box-shadow: var(--shadow);
  transition: .3s;
  min-height: 200px;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: .7rem;
  color: var(--ink)
}

.vm-card p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.vm-image {
  display: block;
}

@media (min-width: 992px) {
  .vm-image {
    margin-right: calc(-50vw + 50%);
    border-radius: 60px 0 0 0;
    overflow: hidden;
  }
}

.vm-image img {
  width: revert-layer;
  height: auto;
  display: block;
}

@media (min-width:992px) {
  .vm-cards-col {
    position: relative;
    z-index: 2
  }

  .vm-card.mission {
    position: relative;
    z-index: 3;
    margin-right: -8rem;
    box-shadow: var(--shadow)
  }
}

@media (max-width:991px) {
  .vm-stack {
    grid-template-columns: 1fr
  }

  .vm-card.mission {
    margin-right: 0
  }

  .vm-image {
    min-height: 220px
  }
}

@media (max-width:767px) {
  .commit-img img {
    clip-path: none
  }

  .stat-item:nth-child(3)::before,
  .stat-item:nth-child(2)::before {
    content: none
  }
}

/* Why / feature */
.feature-box {
  background: #f4f5f7;
  border: 1px solid #eceef1;
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: .3s;
  border-left: 3px solid transparent;
}

.feature-box:hover {
  background: #fff;
  border-left-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-box h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem
}

.feature-box p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
  line-height: 1.55
}

/* Testimonials */
section#testimonials {
  background-color: #f1f1f1;
}

.testimonial {
  background: #FFFFFF;
  border: 1px solid #eceef1;
  border-radius: var(--radius);
  padding: 1.8rem;
  margin: 0;
  transition: .3s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.t-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem
}

.t-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial figcaption {
  margin: 0
}

.testimonial figcaption strong {
  display: inline-block;
  font-size: .95rem;
  margin-right: .3rem;
}

.testimonial figcaption span {
  display: inline-block;
  font-size: .85rem;
  color: var(--muted);
}

.t-title {
    font-size: 1.0rem;
    font-weight: 500;
    margin: 0 0 .6rem;
}

.testimonial blockquote {
  font-size: .93rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6
}

/* Review stars */
.t-stars {
  color: #f5a623;
  font-size: .92rem;
  letter-spacing: .1rem;
  margin: 0 0 .55rem
}

/* Rating summary */
.rating-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem .9rem;
  margin-top: 1.1rem;
  padding: .7rem 1.4rem;
  background: #f4f5f7;
  border: 1px solid #eceef1;
  border-radius: 999px;
}

.rating-summary .rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.rating-summary .rating-stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: .12rem;
}

.rating-summary .rating-count {
  color: var(--muted);
  font-size: .88rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: .6rem
}

.cta-banner p {
  opacity: .92;
  margin-bottom: 1.6rem
}

.cta-banner .btn-light, a.btn.btn-light {
  color: #000;
  font-weight: 400;
}

.cta-banner .btn-outline-light {
  border: 2px solid #fff
}

/* Footer */
.site-footer {
  background: #fff;
  color: var(--ink);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid #eceef1
}

.footer-brand {
  padding: 0
}

.footer-brand img {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.site-footer h4 {
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
  color: var(--ink)
}

.site-footer>.container>.row p {
  color: #333333;
  font-size: .92rem
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.site-footer ul li {
  margin-bottom: .6rem
}

.site-footer ul a {
  color: #333333;
  transition: .2s;
  font-size: .92rem
}

.site-footer ul a:hover {
  color: var(--brand)
}

.contact-list li {
  color: #333333;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .92rem
}

.contact-list i {
  color: var(--brand);
  margin-top: .2rem
}

.site-footer hr {
  border-color: #e6e8ec;
  margin: 2.5rem 0 1.2rem;
  opacity: 1
}

.footer-bottom {
  color: #333333
}

.footer-bottom a {
  color: #333333
}

.footer-bottom a:hover {
  color: var(--brand)
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s;
  z-index: 1030;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  background: var(--brand-dark);
  color: #fff
}

@media (max-width:991px) {
  .site-nav {
    top: 0
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
    margin: 74px 12px 0
  }

  .hero-slider {
    min-height: 600px;
    margin: 74px 12px 0;
  }

  .hero-track {
    min-height: 600px;
  }

  .hero-slide {
    padding: 3rem 0;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 2rem;
    width: 100%;
  }

  .stats-card {
    margin-top: 1.5rem
  }

  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    margin-top: .6rem;
    box-shadow: var(--shadow-sm)
  }

  .nav-contact {
    align-items: flex-start !important;
    margin-top: .5rem
  }

  .nav-contact .btn-brand {
    margin-top: .4rem
  }
}

@media (max-width:767px) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
    margin: 0px 12px 0
  }

  .hero-slider {
    min-height: 560px;
    margin: 0px 12px 0;
  }

  .hero-track {
    min-height: 560px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .hero-arrow.hero-prev { left: 8px; }
  .hero-arrow.hero-next { right: 8px; }

  .hero-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #22252a;
    line-height: 1.14;
    letter-spacing: -0.01em;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    z-index: 3;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0rem;
    width: 100%;
  }

  .container.hero-content {
    padding-bottom: 60px;
  }

  .hero-btn {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  p.text-muted {
    padding-top: 5px;
    font-size: 15px;
  }

  .commit h2 {
    font-size: 20px;
    margin-bottom: 0rem;
    line-height: 29px;
  }

  .vm-image {
    display: none;
  }

  .feature-box h3 {
    font-size: 19px;
    margin-bottom: .6rem;
  }

  .cta-banner h2 {
    font-size: 20px;
    margin-bottom: .6rem;
  }

  .cta-banner p {
    opacity: .92;
    margin-bottom: 1.6rem;
    font-size: 14px;
  }

  .cta-banner .btn-light,
  a.btn.btn-light {
    color: #000;
    font-weight: 400;
    font-size: 13px;
  }

  .section {
    padding: 3.2rem 0
  }

  .section-head {
    margin-bottom: 2rem
  }

  .cta-banner {
    padding: 3.2rem 0
  }

  .page-hero {
    margin: 0 12px 0;
    padding: 4rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
  }

  p.text-dark.fw-bold.mb-0 {
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .col-12.mt-5.text-center.aos-init.aos-animate {
    margin-top: 0 !important;
  }

  .contact-form {
    padding: 1.4rem
  }

  .contact-card {
    padding: 1.4rem
  }

  .contact-map iframe {
    height: 300px
  }

  .quote-modal .modal-header {
    padding: 1.1rem 1.2rem .3rem
  }

  .quote-modal .modal-body {
    padding: 0 1.2rem 1.4rem
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }
}

a.navbar-brand {
    width: 80px;
    top: 20px;
    position: relative;
}

@media (max-width: 767px) {
  a.navbar-brand {
    width: 60px;
    top: 20px;
    position: relative;
  }
}

/* ===== Inner page banner ===== */
.page-hero {
  position: relative;
  margin: 0px 22px 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
  background: #eef1f4 url("../img/inner-banner.png") right center/cover no-repeat;
  color: var(--ink);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgb(244 246 248 / 43%) 0%, rgba(244, 246, 248, .9) 35%, rgb(244 246 248 / 0%) 70%, rgba(244, 246, 248, .2) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .9rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--brand);
}

.breadcrumbs i {
  font-size: .75rem;
  color: var(--muted);
}

@media (max-width: 991px) {
  .page-hero {
    margin: 74px 12px 0;
    padding: 4rem 0 3rem;
  }
}

.mission-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mission-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .6rem;
}

.mission-list li:last-child {
  margin-bottom: 0;
}

.mission-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: .05rem;
  color: var(--brand);
  font-size: .95rem;
}

/* ===== Contact page ===== */
.contact-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: var(--radius);
  padding: 1.8rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: .25s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 36, 42, .1);
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  margin: 0;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--brand);
}

.contact-form {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1.5px solid #e6e8ec;
  padding: .8rem 1rem;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(225, 36, 42, .12);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Quote modal */
.quote-modal {
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-modal .modal-header {
  border-bottom: 0;
  padding: 1.4rem 1.6rem .4rem;
}

.quote-modal .modal-body {
  padding: 0 1.6rem 1.8rem;
}

.quote-modal .form-control {
  border-radius: 10px;
  border: 1.5px solid #e6e8ec;
  padding: .75rem 1rem;
  margin-bottom: .9rem;
}

.quote-modal .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(225, 36, 42, .12);
}

section.section.relab {
    padding-top: 0;
}

/* ===== Form status message ===== */
.form-status {
  font-size: .9rem;
  margin: 0 0 1rem;
  min-height: 1.2em;
}
.form-status:empty {
  margin: 0;
  min-height: 0;
}
.form-status.is-pending {
  color: var(--muted);
}
.form-status.is-success {
  color: #1a7f4b;
}
.form-status.is-error {
  color: var(--brand);
}

@media (max-width: 767px) {
    .page-hero {
        margin: 0px 12px 0;
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

    .commit h2 {
        font-size: 18px;
        margin-bottom: 0rem;
        line-height: 29px;
    }

        .section-head h2 {
        font-size: 20px;
    }

    img.w-100.rounded {
    height: auto !important;
}

.contact-form {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

div#quoteModal {
    position: absolute;
    z-index: 9999;
}
}