:root {
  --orange: #fe6603;
  --orange-soft: #fc6e3e;
  --navy: #040e26;
  --navy-soft: #1e273c;
  --white: #ffffff;
  --light: #f3f5f6;
  --gray: #a0a0a0;
  --gray-dark: #707070;
  --header-gray: #f1f1f1;
  --shadow: 0 12px 30px rgba(4, 14, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--light);
  font-family:
    Poppins, "Segoe UI", "Segoe UI Variable", Tahoma, Geneva, Verdana,
    sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-space {
  padding: 110px 0;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 16px 0;
  font-size: 14px;
}

.topbar-inner {
  min-height: 28px;
}

.topbar a {
  color: var(--white);
  opacity: 0.95;
}

.topbar-social a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.main-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.header-main {
  padding: 26px 20px 100px 26px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 115px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: clamp(34px, 3vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text span {
  color: var(--orange);
}

.header-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 46px;
}

.icon-plain {
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  padding-top: 2px;
}

.header-title {
  font-size: 14px;
  font-weight: 500;
  color: #151515;
}

.header-title span {
  color: var(--orange);
  font-weight: 600;
}

.header-sub {
  color: var(--gray-dark);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 4px;
}

.nav-shell {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin-bottom: 0;
  z-index: 3;
  width: 80%;
}

.dcc-nav {
  background: var(--navy);
  padding: 0 !important;
}

.dcc-nav .navbar-nav {
  min-height: 74px;
}

.dcc-nav .nav-link {
  color: var(--white);
  padding: 24px 38px;
  font-size: 19px;
  font-weight: 400;
  transition: 0.25s ease;
}

.dcc-nav .nav-link.active,
.dcc-nav .nav-link:hover {
  background: var(--orange);
  color: var(--white);
}

.dcc-nav .nav-contact {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding-inline: 24px;
  margin-right: 22px;
}

.navbar-toggler {
  border: 0;
  padding: 10px 14px;
  margin: 10px;
  background: var(--orange);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 90px;
  color: var(--white);
}

/* .hero-bg,
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
} */

.hero{
  background-image: url("Imágenes/WEBP/Home@4x-8.webp");
  background-position: center center;
  background-size: cover;
  background-position: center center;
}

.inner-hero{
  background-image: url("Imágenes/WEBP/Productos@4x-8.webp");
  background-position: center center;
  background-size: cover;
  background-position: center center;
}

/* .hero-overlay,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 14, 38, 0.15) 0%,
    rgba(4, 14, 38, 0.45) 50%,
    rgba(4, 14, 38, 0.7) 100%
  );
} */

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

.hero-text {
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 20px;
  line-height: 1.55;
  max-width: 920px;
  margin: 0;
}

.features-strip {
  margin-top: 0px;
  position: relative;
  background-color: white;
  z-index: 5;
}

.feature-card {
  position: relative;
  min-height: 355px;
  color: var(--white);
  padding: 42px 44px 40px;
  display: flex;
  gap: 24px;
  overflow: hidden;
  flex-direction: column;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-18deg);
}

.feature-navy {
  background: linear-gradient(90deg, #021031 0%, #1d2842 100%);
}

.feature-orange {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
}

.slant-right::after {
  right: 40px;
}

.slant-both::after {
  right: 42%;
  background: rgba(255, 255, 255, 0.12);
}

.slant-left::after {
  right: 40px;
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  flex: 0 0 104px;
}

.feature-icon.orange {
  background: var(--orange);
  color: var(--white);
}

.feature-icon.navy {
  background: var(--navy);
  color: var(--white);
}

.feature-card h3 {
  font-size: 27px;
  line-height: 1.12;
  font-weight: 700;
  margin: 8px 0 28px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  max-width: 380px;
}

.about-section {
  background: white;
}

.about-image-wrap {
  position: relative;
}

.about-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

.about-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.section-copy h2 {
  font-size: clamp(28px, 3vw, 28px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-copy h4 {
  font-size: clamp(22px, 3vw, 22px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.section-copy h2 span {
  color: var(--orange);
}

.section-copy p {
  color: var(--gray-dark);
  font-size: 16px;
  line-height: 1.42;
  margin-bottom: 24px;
  max-width: 490px;
}

.cta-banner {
  background-color: white;
}

.cta-box {
  position: relative;
  min-height: 430px;
  background: url("Imágenes/PNG/Products@4x-8.png") center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 38, 0.62);
}

.cta-inner {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 1100px;
  padding: 30px;
}

.cta-inner h3 {
  font-size: clamp(34px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-inner p {
  font-size: 16px;
  margin-bottom: 38px;
}

.btn-primary-custom {
  background: var(--orange);
  border: 0;
  color: var(--white);
  padding: 18px 34px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(254, 102, 3, 0.28);
}

.btn-primary-custom:hover {
  background: #f15b00;
  color: var(--white);
  transform: translateY(-2px);
}

.section-heading h2 {
  font-size: clamp(34px, 3vw, 60px);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 20px;
  color: var(--orange);
  margin: 0 0 46px;
}

.service-card:hover,
.product-card:hover,
.project-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
}

.metrics-section {
  background: var(--light);
}

.metrics-copy {
  background: var(--navy);
  color: var(--white);
  padding: 100px 72px 90px 72px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.metrics-copy h2 {
      font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 0.98;
  margin-bottom: 34px;
  letter-spacing: -0.04em;
  max-width: 720px;
}

.metrics-copy h3 {
  font-size: 22px;
  line-height: 1.22;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 730px;
}

.metrics-copy p {
  font-size: 16px;
  line-height: 1.46;
  max-width: 760px;
  margin: 0;
}

.metrics-image-wrap {
  position: relative;
  min-height: 620px;
}

.metrics-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metrics-badges {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-6%, -50%);
  width: min(440px, 86%);
}

.metric-box {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px 42px;
  box-shadow: var(--shadow);
}

.metric-top {
  background: var(--orange-soft);
  color: var(--white);
}

.metric-bottom {
  background: var(--white);
  color: var(--navy);
}

.metric-box i {
  font-size: 54px;
}

.metric-box strong {
  display: block;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 700;
}

.metric-box span {
  display: block;
  font-size: 22px;
}

.project-card {
  position: relative;
  overflow: visible;
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-info {
  position: relative;
  width: calc(100% - 40px);
  margin: -82px auto 0;
  background: var(--white);
  padding: 32px 30px 26px;
  box-shadow: var(--shadow);
  min-height: 200px;
  border-radius: 5px;
}

.project-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 11px 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.project-info h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 600;
}

.project-info p {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.project-info i {
  color: var(--orange);
  margin-right: 8px;
}

.contact-card {
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 36px 24px;
  text-align: center;
  min-height: 320px;
}

.contact-icon {
  color: var(--navy);
  font-size: 52px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray-dark);
  font-size: 17px;
  line-height: 1.35;
  min-height: 86px;
}

.contact-card strong {
  font-size: 18px;
  line-height: 1.45;
  display: block;
}

.contact-form .form-control {
  border: 0;
  background: #eef0f1;
  border-radius: 0;
  min-height: 72px;
  padding: 20px 24px;
  font-size: 18px;
  color: var(--gray-dark);
}

.contact-form textarea.form-control {
  min-height: 190px;
  resize: vertical;
}

.btn-submit {
  min-width: 220px;
}

.side-info-block {
  padding-top: 8px;
}

.side-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.small-orange-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 42px;
}

.side-info-block h4 {
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: 700;
}

.side-info-block p {
  color: var(--gray-dark);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.social-dark {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-dark a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  padding: 82px 0 74px;
}

.site-footer h5 {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 500;
}

.site-footer p,
.site-footer li,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

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

.site-footer li {
  margin-bottom: 14px;
}

.site-footer li a,
.footer-contact-item span,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer li a:hover {
  color: var(--white);
}

.site-footer li a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.footer-social a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.footer-contact-item i {
  color: var(--white);
  margin-top: 6px;
}

.footer-bottom {
  position: relative;
  padding: 0;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 174px;
  background: var(--orange);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.footer-bottom-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 174px;
  gap: 30px;
}

.footer-copy {
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  max-width: 720px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-branding img {
  width: 250px;
  filter: grayscale(1) brightness(2.4);
  opacity: 0.9;
}

.footer-branding .divider {
  width: 1px;
  height: 90px;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
}

.holcim-text {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

.inner-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 170px 0 64px;
}

.inner-hero-bg {
  background-image: url("assets/products-banner.jpg");
  background-position: center center;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-custom {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.breadcrumb-custom i {
  margin: 0 8px;
}

.inner-hero h1 {
  font-size: clamp(56px, 6vw, 90px);
  line-height: 1;
  font-weight: 800;
  margin: 0;
}

.products-section {
  padding-top: 96px;
}

.product-card {
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px 24px 30px;
  text-align: center;
  transition: 0.3s ease;
}

.product-head {
  color: var(--white);
  font-size: 30px;
  line-height: 1.14;
  font-weight: 600;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.alt-orange .product-head {
  background: var(--orange);
}

.alt-navy .product-head {
  background: var(--navy);
}

.product-body {
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.42;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1399.98px) {
  .dcc-nav .nav-link {
    padding: 22px 26px;
    font-size: 18px;
  }

  /* .hero {
    min-height: 760px;
  } */

  .feature-card {
    padding: 36px 28px;
  }

  .metrics-copy {
    padding-inline: 50px;
  }

  .metric-box strong {
    font-size: 52px;
  }
}

.nav-contact {
  padding: 10px !important;
}

.navbar-nav {
  justify-content: space-between !important;
}

.icon-title-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

.icon-feature {
  width: 100px;
  height: 100px;
}

.services-section.split-bg {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 35%,
    #f3f5f6 35%,
    #f3f5f6 100%
  );
}

.services-section .section-heading {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.services-section .section-heading h2 {
  margin-bottom: 4px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: #040e26;
}

.services-section .section-heading p {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fe6603;
}

.services-slider-wrap {
  position: relative;
  padding: 0 58px;
}

.servicesSwiper .swiper-wrapper {
  align-items: stretch;
}

.servicesSwiper .swiper-slide {
  height: auto;
}

.service-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.service-icon-badge {
  border-radius: 50%;

  color: #fe6603;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  position: absolute;
  left: 50%;
  top: 255px;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.service-body h3 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1e273c;
  margin-bottom: 8px;
  min-height: 58px;
}

.service-body p {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #707070;
  margin-bottom: 22px;
  flex-grow: 1;
}

.services-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 34px;
  height: 45px;
  border: 2px solid #bdbdbd;
  background: transparent;
  color: #8d8d8d;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.25s ease;
}

.services-nav:hover {
  border-color: #fe6603;
  color: #fe6603;
  background: #ffffff;
}

.services-prev {
  left: 0;
}

.services-next {
  right: 0;
}

.services-pagination {
  position: relative;
  margin-top: 26px;
  bottom: auto !important;
  text-align: center;
}

.services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c7c7c7;
  opacity: 1;
}

.services-pagination .swiper-pagination-bullet-active {
  background: #fe6603;
}

@media (max-width: 1199.98px) {
  .header-main {
    padding-bottom: 18px;
  }

  .nav-shell {
    margin-bottom: 0;
  }

  .hero {
    padding-top: 120px;
    /* min-height: 660px; */
  }

  .features-strip {
    margin-top: 0;
  }

  .feature-card {
    min-height: 280px;
  }

  .about-image {
    height: 620px;
  }

  .service-body p {
    min-height: auto;
  }

  .metrics-copy,
  .metrics-image-wrap {
    min-height: 540px;
  }

  .metrics-badges {
    position: static;
    transform: none;
    width: 100%;
  }

  .footer-bottom::before {
    width: 100%;
    clip-path: polygon(0 0, 72% 0, 80% 100%, 0 100%);
  }

  .service-icon-badge {
    top: 170px;
  }
}

@media (max-width: 991.98px) {
  .main-header {
    position: relative;
  }

  .brand-wrap {
    justify-content: center;
    text-align: center;
  }

  .header-contact-item {
    justify-content: center;
  }

  .dcc-nav .navbar-collapse {
    background: var(--navy);
    margin-top: 10px;
  }

  .dcc-nav .nav-link,
  .dcc-nav .nav-link.active {
    padding: 16px 18px;
  }

  .dcc-nav .nav-contact {
    margin: 10px 12px 16px;
    display: inline-block;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 18px;
  }

  .feature-card {
    min-height: auto;
  }

  .section-space {
    padding: 88px 0;
  }

  .about-image {
    height: 500px;
  }

  .metrics-copy {
    min-height: auto;
  }

  .metrics-image-wrap {
    min-height: auto;
  }

  .metrics-image-wrap img {
    height: 460px;
  }

  .contact-card p {
    min-height: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0 24px;
    min-height: 220px;
  }

  .footer-bottom::before {
    height: 150px;
  }

  .holcim-text {
    font-size: 42px;
  }

  .services-slider-wrap {
    padding: 0 44px;
  }

  .service-body h3 {
    min-height: auto;
  }
}

.service-body {
  padding: 56px 8px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.btn-service {
  border-radius: 2px;
  padding: 12px 18px;
  background: #040e26;
  color: #ffffff;
  border: none;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.btn-service:hover {
  background: #fe6603;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-service-floating:hover {
  transform: translate(-50%, 50%) translateY(-2px);
}

.servicesSwiper {
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-bottom: 26px;
}

@media (max-width: 767.98px) {
  .header-main {
    padding-top: 18px;
  }

  .brand-logo {
    width: 90px;
  }

  .brand-text {
    font-size: 36px;
  }

  .header-title {
    font-size: 16px;
  }

  .header-sub {
    font-size: 13px;
  }

  .hero {
    min-height: 580px;
    padding: 96px 0 58px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .feature-card {
    flex-direction: column;
  }

  .feature-icon {
    width: 82px;
    height: 82px;
    font-size: 30px;
  }

  .feature-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 40px;
  }

  .cta-box {
    min-height: 310px;
  }

  .service-body h3 {
    font-size: 25px;
  }

  .metrics-copy {
    padding: 58px 24px;
  }

  .metrics-copy h2 {
    font-size: 32px;
  }

  .metrics-copy h3 {
    font-size: 16px;
  }

  .metric-box {
    padding: 24px;
  }

  .metric-box strong {
    font-size: 42px;
  }

  .project-card img {
    height: 250px;
  }

  .project-info {
    width: calc(100% - 24px);
    padding: 24px 18px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-form .form-control {
    min-height: 62px;
    font-size: 16px;
  }

  .btn-primary-custom {
    padding: 15px 26px;
    font-size: 17px;
  }

  .footer-top {
    padding-top: 64px;
  }

  .footer-bottom::before {
    clip-path: none;
    height: 120px;
  }

  .footer-copy {
    font-size: 16px;
  }

  .footer-branding img {
    width: 86px;
  }

  .holcim-text {
    font-size: 32px;
  }

  .inner-hero {
    min-height: 390px;
    padding-top: 110px;
  }

  .inner-hero h1 {
    font-size: 54px;
  }

  .breadcrumb-custom {
    font-size: 16px;
  }

  .product-head {
    font-size: 25px;
    min-height: 94px;
  }

  .services-section.split-bg {
    padding: 70px 0 90px;
    background: linear-gradient(
      to bottom,
      #f3f5f6 0%,
      #f3f5f6 50%,
      #ffffff 50%,
      #ffffff 100%
    );
  }

  .services-slider-wrap {
    padding: 0 12px;
  }

  .services-nav {
    display: none;
  }

  .service-icon-badge {
    width: 70px;
    height: 70px;
    top: 190px;
    font-size: 28px;
  }

  .service-card {
    padding: 14px 14px 38px;
  }

  .service-body {
    padding: 52px 6px 28px;
  }

  .btn-service-floating {
    width: calc(100% - 44px);
    max-width: none;
  }
}

.btn-service-floating {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.service-card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 4px;
  overflow: visible;
  border: 1px solid rgba(4, 14, 38, 0.05);
  box-shadow:
    0 0 0 1px rgba(4, 14, 38, 0.02),
    0 2px 12px rgba(4, 14, 38, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  padding: 18px 18px 42px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(4, 14, 38, 0.12);
}

@media (max-width: 767.98px) {
  .footer-top,.footer-copy {
        padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .footer-copy {
    text-align: center;
    padding-bottom: 20px;
  }

  .footer-bottom::before
 {
    display: none;
  }

  .footer-branding {
    justify-content: center;
  }

  .footer-branding img {
    width: 70%;
  }

  .cta-box {
            background-size: cover;
  }

  .header-contact-item {
    display: none;
  }

  .nav-shell {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 0;
    z-index: 3;
    width: 100%;
}

.main-header {
  position: fixed;
}
}

section {
  overflow-x: hidden;
}

.row {
  width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
}