:root {
  --clr-white: #ffffff;
  --clr-navy: #000000;
  --clr-navy-blue: #012545;
  --clr-navy-2: #57728e;
  --clr-green: #4caf50;
  --clr-green-dark: #3d8b40;
  --clr-green-bright: #38b13b;
  --clr-blue: #1f5fa8;
  --clr-gray-bg: #f4f6f8;
  --clr-text: #16233b;
  --clr-muted: #000000;
  --font-display: "Poppins", sans-serif;
  --font-body: "Roboto", sans-serif;
  --radius-card: 10px;
  --shadow-card: 0 10px 30px rgba(12, 35, 64, 0.08);
  --bs-heading-color: #000000;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: clamp(14px, 0.9vw, 18px);
}
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  line-height: 1.6;
}

/* body, html {
  overflow-x: hidden;
} */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
}
.section-space {
  padding: 75px 0;
}

.section-space-top {
  padding: 75px 0 0 0;
}

.section-space-bottom {
  padding: 0 0 75px 0;
}

@media (max-width: 1600px) {
  .section-space {
    padding: 55px 0;
  }

  .section-space-top {
    padding: 55px 0 0 0;
  }

  .section-space-bottom {
    padding: 0 0 55px 0;
  }
}

@media (max-width: 768px) {
  .section-space {
    padding: 40px 0;
  }

  .section-space-top {
    padding: 40px 0 0 0;
  }

  .section-space-bottom {
    padding: 0 0 40px 0;
  }
}

.container-xl {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.text-accent {
  color: var(--clr-green-bright);
}
.text-blue {
  color: var(--clr-blue);
}
.bg-navy {
  background-color: var(--clr-navy);
}
.bg-gray-soft {
  background-color: var(--clr-gray-bg);
}

.btn-brand {
  background: var(--clr-green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-brand:hover {
  background: #052444;
  color: #fff;
  transform: translateY(-1px);
}

.btn-brand-outline-navy {
  background: var(--clr-navy-2);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-brand-outline-navy:hover {
  background: #052444;
  color: #fff;
  transform: translateY(-1px);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.section-sub {
  color: var(--clr-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  /* max-width:760px; */
}
@media (max-width: 1600px) {
  .section-heading {
    font-size: 1.7rem;
  }
  .section-sub {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .section-heading {
    font-size: 1.5rem;
  }
}

/* ===== Top Bar ===== */
.topbar {
  font-size: 1rem;
  color: var(--clr-navy);
  padding: 0.4rem 0;
  border-bottom: 1px solid #f6f7f9;
  background: #f6f7f9;
}
.topbar a {
  color: var(--clr-navy);
  text-decoration: none;
  display: flex;
  outline: none;
  align-items: center;
}
.topbar i {
  color: var(--clr-green);
  margin-right: 0.4rem;
}

@media (max-width: 1600px) {
  .topbar a img {
    width: 1rem;
  }
}
/* ===== Navbar ===== */
.navbar-voltara {
  padding: 0.2rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.navbar-voltara .brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clr-navy);
  letter-spacing: 0.02em;
}
.navbar-voltara .brand-tagline {
  font-size: 0.6rem;
  color: var(--clr-muted);
  letter-spacing: 0.06em;
  display: block;
}
.nav-links {
  gap: 2rem;
}
.nav-links a {
  color: var(--clr-navy);
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
}
.nav-links a:hover{
  color: var(--clr-green);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: var(--clr-green);
}
.navbar-toggler:focus {
  box-shadow: none;
  background-color: #f6f7f9;
}

@media (max-width: 1600px) {
  .topbar {
    font-size: 1rem;
  }
  .navbar-voltara .brand-logo img {
    max-width: 250px;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .btn-brand,
  .btn-brand-outline-navy {
    font-size: 1rem;
    padding: 0.55rem 1rem;
    line-height: 20px;
  }
}
@media (max-width: 1200px) {
  .navbar-voltara .brand-logo img {
    max-width: 180px;
  }
}
@media (max-width: 991px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .navbar-voltara {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .topbar {
    font-size: .80rem;
  }
  .call_us_hide{
    display: none;
  }
}

/* ---- Services submenu ---- */
.nav-item--dropdown {
  position: relative;
}
.nav-link--caret {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link--caret i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.nav-item--dropdown:hover .nav-link--caret i {
  transform: rotate(180deg);
}
.submenu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1000;
}
.nav-item--dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.86rem;
  color: var(--clr-navy);
  white-space: nowrap;
}
.submenu li a i {
  width: 18px;
  color: var(--clr-green);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}
.submenu li a:hover {
  background: var(--clr-gray-bg);
  color: var(--clr-green-dark);
}
/* mobile: submenu behaves like static accordion inside collapsed navbar */
@media (max-width: 991px) {
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: var(--clr-gray-bg);
    border-radius: 6px;
    margin-top: 0.3rem;
  }
  .nav-item--dropdown.is-open .submenu {
    display: block;
  }
  .nav-link--caret i {
    transition: transform 0.2s ease;
  }
  .nav-item--dropdown.is-open .nav-link--caret i {
    transform: rotate(180deg);
  }
}
@media (max-width: 1600px) {
  .nav-link--caret i {
    font-size: 0.75rem;
  }
}
/* ===== Hero ===== */
.hero {
  position: relative;
  background: url(../images/home-banner.jpg) no-repeat top center;
  background-size: cover;
  color: #fff;
  padding-top: 4rem;
  overflow: hidden;
  min-height: 840px;
  padding-bottom: 190px;
  display: flex;
  align-items: center;
}
.hero__badge {
  position: absolute;
  top: 5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  backdrop-filter: blur(2px);
}
.hero__badge small {
  display: block;
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.72rem;
}
.hero__badge strong {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.hero__badge--greenfield {
  left: 14%;
  background: rgba(76, 175, 80, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__badge--brownfield {
  right: 12%;
  background: rgba(10, 20, 35, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__badge-line {
  position: absolute;
  top: 8.2rem;
  width: 1px;
  height: 9rem;
  background: rgba(255, 255, 255, 0.35);
}
.hero__badge-line--left {
  left: 20.5%;
}
.hero__badge-line--right {
  right: 17.5%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.12rem;
  line-height: 1.25;
  /* max-width:800px; */
  margin: 2.5rem 8rem 5.8rem;
  text-align: center;
  color: var(--clr-white);
}
.hero__title .text-accent {
  color: #3fd342;
}
@media (max-width: 1600px) {
  .hero__title {
    /* font-size:2.12rem; */
    margin: 2rem 18rem 4rem;
  }
  .hero {
    min-height: 600px;
    padding-bottom: 140px;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 2.12rem;
    margin: 2rem 10rem 2rem;
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: 600px;
    text-align: center;
  }

  .hero__badge,
  .hero__badge-line {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 260px;
  }
  .hero__title {
    font-size: 1.7rem;
    margin: 2rem 3rem 2rem;
  }
}
@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 3rem 1rem 0;
    flex-direction: column;
  }

  .hero__title {
    font-size: 1.4rem;
  }
}

.hero__cta-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.feature-strip .row {
  background: rgba(6, 22, 47, 0.8);
  border-radius: 18px 18px 0 0;
}
.feature-strip__item {
  padding: 1.8rem 1rem 1.2rem 1rem;
  text-align: center;
  color: #fff;
}
.feature-strip__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  color: var(--clr-green-bright);
  font-size: 1.4rem;
}
.feature-strip__icon img {
  transition: transform 0.6s ease-in-out;
  display: inline-block; /* Required for transforms to work on some elements */
}
.feature-strip__item:hover .feature-strip__icon img {
  transform: rotateY(360deg);
}
.feature-strip__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.37rem;
  margin-top: 1.2rem;
  line-height: 1.8rem;
}
.feature-strip__desc {
  font-size: 1.12rem;
  color: #d8dee4;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.4rem;
}

@media (max-width: 1600px) {
  .feature-strip__title {
    font-size: 1.2rem;
    margin-top: 0.2rem;
  }
  .feature-strip__desc {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .feature-strip__icon img {
    max-width: 100%;
  }
  .feature-strip__item {
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
}
@media (max-width: 992px) {
  .feature-strip .row {
    border-radius: 12px;
  }

  .feature-strip__item {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .feature-strip {
    position: relative;
  }

  .feature-strip .row {
    flex-direction: column;
  }
}

/* ===== Stats ===== */
.stat-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: solid 1px #ebebeb;
  padding: 1.8rem 1rem;
  text-align: center;
  height: 100%;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
}
.stat-card__label {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  line-height: 1.1rem;
}
.stat-card__desc {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-top: 0.15rem;
  line-height: 1.1rem;
}

@media (max-width: 1600px) {
  .stat-card__value {
    font-size: 2rem;
  }
  .stat-card__label {
    font-size: 1.2rem;
  }
  .stat-card__desc {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .stat-card,
  .service-card,
  .opportunity-card {
    margin-bottom: 1rem;
  }
}
/* ===== Opportunity cards ===== */
.opportunity-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  color: #000000;
  /* box-shadow:var(--shadow-card); */
}
.opportunity-card::before {
  content: "";
  position: absolute;
  inset: 0;
}
.opportunity-card--greenfield::before {
  background: url(../images/opportunity-card--greenfield-bg.jpg) no-repeat top
    left;
  background-size: cover;
}
.opportunity-card--brownfield::before {
  background: url(../images/opportunity-card--brownfield-bg.jpg) no-repeat top
    left;
  background-size: cover;
}
.opportunity-card__body {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  width: 100%;
  min-height: 360px;
}
.opportunity-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 3.5rem;
}
.opportunity-card__icon {
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.opportunity-card--greenfield .opportunity-card__icon {
  color: var(--clr-green-dark);
}
.opportunity-card--brownfield .opportunity-card__icon {
  color: var(--clr-navy-2);
}
.opportunity-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.opportunity-card__title span {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
}
.opportunity-card--greenfield .opportunity-card__title {
  color: var(--clr-green-dark);
}
.opportunity-card--brownfield .opportunity-card__title {
  color: var(--clr-navy-2);
}
.opportunity-card__text {
  font-size: 1.5rem;
  max-width: 330px;
  margin-bottom: 1.8rem;
  line-height: 1.8rem;
  height: 125px;
}
@media (max-width: 1600px) {
  .opportunity-card__body {
    min-height: 300px;
  }
  .opportunity-card__header {
    margin-bottom: 2.5rem;
  }
  .opportunity-card__title {
    font-size: 1.5rem;
  }
  .opportunity-card__text {
    font-size: 1.3rem;
    line-height: 1.6rem;
    height: 75px;
    max-width: 250px;
  }
}
@media (max-width: 992px) {
  .opportunity-card__text{
    height: inherit;
  }
}
@media (max-width: 768px) {
  .opportunity-card {
    min-height: 220px;
  }

  .opportunity-card__title {
    font-size: 1.3rem;
  }

  .opportunity-card__text {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

/* ===== Service cards ===== */
.service-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  /* box-shadow:var(--shadow-card); */
  /* height: 100%; */
}
.service-card__image {
  max-height: 199px;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  transition: all 0.4s ease;
  outline: none;
}
.service-card:hover .service-card__image img {
  filter: grayscale(100%) brightness(90%);
}
.service-card__body {
  background: var(--clr-navy-blue);
  color: #fff;
  padding: 1.1rem 1.2rem 1.3rem;
  min-height: 95px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: #fff;
}
.service-card__desc {
  font-size: 1rem;
  color: #d8dee4;
  margin-bottom: 0;
}

/* .img-placeholder-1{ background:linear-gradient(120deg,#2e4a2e,#0f2a1f); }
  .img-placeholder-2{ background:linear-gradient(120deg,#d99a3a,#7a5a20); }
  .img-placeholder-3{ background:linear-gradient(120deg,#bfd6e8,#5f89a8); }
  .img-placeholder-4{ background:linear-gradient(120deg,#dfe3e6,#9aa3ab); }
  .img-placeholder-5{ background:linear-gradient(120deg,#e8ddc9,#b7a785); }
  .img-placeholder-6{ background:linear-gradient(120deg,#3a4a5a,#161f28); } */

@media (max-width: 1600px) {
  .service-card__title {
    font-size: 1.2rem;
  }
  .service-card__desc {
    font-size: 1rem;
  }
}

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  color: #fff;
  background: url(../images/cta-banner-img.jpg) no-repeat top center;
  overflow: hidden;
}
.cta-banner__inner {
  display: flex;
  align-items: stretch;
  min-height: 420px;
}
.cta-banner__content {
  flex: 0 0 56%;
  max-width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 3rem 0;
}
.cta-banner__visual {
  flex: 1;
  position: relative;
  background: url(../images/cta-banner-img.jpg) no-repeat top right;
  display: none;
}
.cta-banner__visual::after {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(111, 207, 87, 0.25),
      transparent 55%
    ),
    radial-gradient(circle at 60% 75%, rgba(31, 95, 168, 0.25), transparent 50%);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0;
}
.cta-banner__text {
  max-width: 520px;
  font-size: 1.15rem;
  color: #ffffff;
  margin: 1rem 0 3.4rem;
  line-height: 1.57rem;
}
@media (max-width: 1600px) {
  .cta-banner__inner {
    min-height: 280px;
  }
}
@media (max-width: 1200px) {
  .cta-banner__title {
    font-size: 1.7rem;
  }
  .cta-banner__text {
    font-size: 1.2rem;
  }
}
@media (max-width: 992px) {
  .cta-banner__title {
    font-size: 1.7rem;
  }

  .cta-banner__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cta-banner {
    position: relative;
    background-size: cover;
  }
  .cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
      0,
      0,
      0,
      0.5
    ); /* Adjust 0.5 for more/less darkness */
    z-index: 1;
  }
  .cta-banner > * {
    position: relative;
    z-index: 2;
    color: white; /* Ensures text stays legible */
  }
  .cta-banner__inner {
    flex-direction: column;
    min-height: 280px;
  }
  .cta-banner__content {
    flex: 1 1 auto;
    max-width: 100%;
    padding: 2.5rem 0 1.5rem;
  }
  .cta-banner__visual {
    min-height: 200px;
  }
}

/* ===== Process flow ===== */
.construction-ready-step-mobile {
  display: none;
}
.construction-ready-step-desktop {
  text-align: center;
}
.construction-ready-step-desktop > img {
  max-width: 70%;
  margin: 0 auto;
}
.process-step {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 92px;
}
.process-step--final {
  background: var(--clr-green);
  color: #fff;
}
.process-step__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.process-step__icon--blue {
  background: #e8f0fb;
  color: var(--clr-blue);
}
.process-step__icon--green {
  background: #eaf7ea;
  color: var(--clr-green-dark);
}
.process-step--final .process-step__icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}
.process-step__desc {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-bottom: 0;
}
.process-step--final .process-step__title,
.process-step--final .process-step__desc {
  color: #fff;
}
.process-step__title--green {
  color: var(--clr-green-dark);
}
.process-step__title--blue {
  color: var(--clr-blue);
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b7c1cb;
  font-size: 1.2rem;
}
.process-connector-down {
  width: 2px;
  background: #d7dee4;
  margin: 0 auto;
}

@media (max-width: 1200px) {
.construction-ready-step-desktop > img{
  max-width: 80%;
}
}

@media (max-width: 992px) {
.construction-ready-step-desktop > img{
  max-width: 100%;
}
}
@media (max-width: 768px) {
  .construction-ready-step-mobile {
    display: block;
  }
  .construction-ready-step-desktop {
    display: none;
  }
}
@media (max-width: 992px) {
  .process-step {
    flex-direction: row;
    gap: 1rem;
  }

  .process-step__title {
    font-size: 1.2rem;
  }

  .process-step__desc {
    font-size: 1rem;
  }
}

/* ===== Footer ===== */
.site-footer {
  color: #d8dee4;
  padding-top: 3.5rem;
  background-color: #102039;
}
.site-footer h6 {
  font-family: var(--font-display);
  color: #d8dee4;
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 2rem;
}
.site-footer a {
  color: #d8dee4;
  text-decoration: none;
  font-size: 1rem;
}
.site-footer a:hover {
  color: var(--clr-green-bright);
}
.footer-logo-box {
  /* background:#fff; */
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  margin-bottom: 2rem;
}
.footer-logo-box span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--clr-navy);
  font-size: 1.05rem;
}
.footer-desc {
  font-size: 1.12rem; /*max-width:320px;*/
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1rem;
  color: #949494;
}
.footer-list li > strong {
  font-family: var(--font-display);
  color: #d8dee4;
  font-weight: 100;
}
.footer-social a {
  width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
}
.footer-bottom {
  background-color: #151515;
  margin-top: 2.5rem;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: #949494;
}
.footer-bottom a {
  font-size: 0.75rem;
  color: #949494;
  margin-left: 1.2rem;
  text-decoration: underline;
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .footer-logo-box img {
    width: 190px;
  }
  /* .footer-desc,.site-footer h6{
    font-size: 1rem;
  }
 .site-footer a,.footer-list{
    font-size: .87rem;
 }
 .footer-bottom,.footer-bottom a{
    font-size: .68rem;
 } */
}
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.90rem;
  }
}
@media (max-width: 576px) {
  .footer-bottom span {
    display: block;
    width: 100%;
  }
}

/***************Service page**************/
.hero-inner-page {
  background-size: cover;
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
}
.hero-inner-page.service {
  background: url(../images/service-banner.jpg) no-repeat top right;
}
.hero-inner-page.about {
  background: url(../images/about-banner.jpg) no-repeat top right;
}
.hero-inner-page.contact {
  background: url(../images/contact-banner.jpg) no-repeat top right;
}
.hero-inner-page .hero__title {
  margin: 0;
  text-align: left;
  font-size: 2.75rem;
  line-height: 2.95rem;
}

.breadcrumb {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  color: #949494;
}
.breadcrumb a {
  color: var(--clr-white);
  text-decoration: none;
}
.breadcrumb span {
  color: #3fd342;
}

@media (max-width: 767px) {
  .hero-inner-page {
    min-height: 180px;
    padding-bottom: 10px;
  }
  .hero-inner-page .hero__title {
    font-size: 2rem;
  }
  .breadcrumb {
    bottom: 0px;
  }
}

.info-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #ffffff; /* FIX: white card */
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
/* Hover (premium feel) */
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
/* IMAGE */
.info-card__image {
  flex: 0 0 35%;
}

.info-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTENT */
.info-card__content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.info-card__icon {
  min-width: 60px;
  min-height: 60px;
  background: #3aaa35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card__icon img {
  width: 28px;
}

/* TEXT */
.info-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--clr-navy-blue);
}

.info-card__text {
  font-size: 1rem;
  color: var(--clr-navy);
  margin-bottom: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .info-card {
    gap: 1.5rem;
  }

  .info-card__image {
    flex: 0 0 40%;
  }

  .info-card__title {
    font-size: 1.3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-card__image {
    width: 100%;
  }

  .info-card__content {
    flex-direction: row;
    align-items: flex-start;
  }
  .info-card__icon {
    min-width: 50px;
    min-height: 50px;
    width: inherit;
    height: inherit;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .info-card {
    padding: 1rem;
  }

  /* .info-card__content {
    flex-direction: column;
    align-items: flex-start;
  } */

  .info-card__title {
    font-size: 1.1rem;
  }

  .info-card__text {
    font-size: 0.9rem;
  }
}

/**************About page css*************/
.roundcurve-img {
  border-radius: 12px;
}
.stat-card__icon {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.stat-card__icon img {
  display: inline-block;
}
.stat-card__title {
  color: var(--clr-navy-blue);
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
}
.stat-card__text {
  font-size: 1rem;
  color: var(--clr-navy-blue);
  margin: 0 1rem;
}
.stat-card.bg-gray {
  background-color: var(--clr-gray-bg);
}

/**********Impact box*******/
/* SECTION */
.impact-box {
  background: #1061b2;
  border-radius: 12px;
  padding: 55px 40px;
  color: var(--clr-white);
}

/* TITLE */
.impact-title {
  margin-bottom: 50px;
  color: var(--clr-white);
  font-family: var(--font-display);
}

/* ITEMS */
.impact-item {
  position: relative;
  padding: 10px 20px;
}

/* VERTICAL DIVIDER (DESKTOP ONLY) */
@media (min-width: 768px) {
  .impact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #387abc;
  }
}

/* NUMBER */
.impact-item h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}

/* TEXT */
.impact-item p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .impact-title {
    margin-bottom: 30px;
  }
  .impact-box {
    padding: 50px 25px;
  }

  .impact-item h3 {
    font-size: 2.3rem;
  }

  .impact-item p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .impact-box {
    padding: 40px 20px;
  }

  .impact-title {
    margin-bottom: 30px;
  }

  .impact-item {
    margin-bottom: 25px;
  }

  .impact-item h3 {
    font-size: 2rem;
  }

  .impact-item p {
    font-size: 1rem;
  }
}

/********Contact us page************/
.cta-banner.contactus {
  background: url(../images/contact-cta-image.jpg) no-repeat top center;
}
.cta-banner.contactus .cta-banner__content {
  text-align: center;
  margin: 0 auto;
}
.cta-banner.contactus .cta-banner__text {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 720px;
}
.stat-card-shadow .stat-card{
    border: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card-shadow .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.v-map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border-light);
  height: 550px;
  background-color: var(--color-border-light);
}

.v-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1) opacity(0.9);
  transition: var(--transition-smooth);
}

.v-map-iframe:hover {
  filter: grayscale(0.2) contrast(1) opacity(1);
}

@media (max-width: 991px) {
  .v-sub-hero {
    padding: 60px 0;
  }

  .v-sub-hero__title {
    font-size: 38px;
  }

  .v-map-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .v-contact-card {
    padding: 40px 20px;
  }

  .v-map-card {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-bottom: 20px;
    box-shadow: none;
    border-radius: 0 0 12px 12px;
  }

  .v-map-container {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .v-map-iframe {
    height: 350px;
    border-radius: 12px 12px 0 0;
  }
}

/*************Data Center page ************/

.ideal-for-box {
  background: #d8dee4;
  border-radius: 12px;
  padding: 55px 40px;
}


.ideal-title {
  margin-bottom: 50px;
}


.ideal-item {
  padding: 0 30px;
}

.ideal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 40px;
}

.ideal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ideal-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-navy-blue);
  margin-bottom: 10px;
}


.ideal-item p {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--clr-navy);
  max-width: 370px;
  margin: 0 auto;
}


@media (max-width: 992px) {
  .ideal-for-box {
    padding: 50px 25px;
  }

  .ideal-item {
    padding: 0 15px;
  }

  .ideal-item h4 {
    font-size: 1.15rem;
  }

  .ideal-icon{
    margin: 0 auto 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ideal-for-box {
    padding: 40px 20px;
  }

  .ideal-title {
    margin-bottom: 30px;
  }

  .ideal-item {
    margin-bottom: 35px;
  }
}

.cta-banner.data-center {
  background: url(../images/data-center-cta-image.jpg) no-repeat top center;
}
/* .cta-banner.contactus .cta-banner__content {
  text-align: center;
  margin: 0 auto;
}
.cta-banner.contactus .cta-banner__text {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 720px;
} */

/****Tabs Slider**/
/* SECTION */
/* .data-center-tabs {
  background: #f3f5f7;
  padding: 60px 40px;
  border-radius: 16px;
} */

/* TABS */
.tabs-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #d9dde2;
  border-radius: 50px;
}
.tabs-wrapper .nav-item{
  width: 50%;
}

.tabs-wrapper .nav-link {
  padding: 10px 40px;
  font-weight: 600;
  color: #6c7a89;
  width: 100%;
  height: 60px;
  font-size: 1.25rem;
}
.tabs-wrapper .nav-item:nth-child(1) .nav-link{
  border-radius: 50px 0 0 50px;
}
.tabs-wrapper .nav-item:nth-child(2) .nav-link{
  border-radius:0 50px 50px 0;
}

.tabs-wrapper .nav-link.active {
  background: #3aaa35;
  color: #fff;
}

/* CARD */
.dc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.dc-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dc-card-body {
  padding: 30px;
}

.dc-card-body h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-navy-blue);
  margin-bottom: 8px;
}

.dc-card-body p {
  font-size: 0.95rem;
  color: var(--clr-navy-blue);
  line-height: 1.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1600px) {
  .tabs-wrapper .nav-link{
    height: 48px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .data-center-tabs {
    padding: 50px 25px;
  }

  .dc-card img {
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .data-center-tabs {
    padding: 40px 20px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .dc-card-body h5 {
    font-size: 1.2rem;
  }

  .dc-card-body p {
    font-size: 1rem;
  }
}