:root {
    --yellow: #f6b839;
    --dark: #0d0f12;
    --mid: #092f53;
    --slate: #1c3954;
    --copper: #f6b839;
    --white: #f0ede8;
    --blue: #092f53;
    --text: #ccc9c2;
    --muted: #7a7872;
}

html {
    scroll-behavior: smooth;
}

#home,
#about,
#services,
#sustainability,
#investors,
#contact-us {
    scroll-margin-top: 80px;
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* remove transform lines — they hide the header */
    background: #0d0f12; /* add this */
    transition: box-shadow 0.35s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.sticky-header.sticky-on {
    /* remove transform: translateY(0) — not needed anymore */
    box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}


/* Active nav link */
.site-header #navbar > ul > li > a.active {
    color: #f6b839 !important;
}

/* Mobile active */
@media (max-width: 991px) {
    .site-header #navbar > ul > li > a.active {
        color: #f6b839 !important;
    }
}

.text-blue {
    color: var(--blue);
}

.slide-inner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.slide-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* overlay color */
    z-index: 2;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.slide-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

/* sliders */
/* ── RIGHT: IMAGE ── */
.slide-image-wrap {
    position: relative;
    /*border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f6b839;
    border-radius: 100%;*/
    /*box-shadow: 0 0 0 3px rgba(255,255,255,0.10), 0 24px 64px rgba(0,0,0,0.55);*/
}

.slide-image-wrap img {
    /*width: 100%;
    height: 100%;
    border-radius: 100%;
    display: block;
    padding: 15px 0px 0px 15px;
    background: #f6b839;*/
    /*transform: scale(1.06);
    transition: transform 7s ease-out;*/
}

/*.swiper-slide-active .slide-image-wrap img {
    transform: scale(1);
}*/

.custom-tabs {
    border-bottom: none;
    display: flex;
}

/* each tab */
.custom-tabs>li {
    float: none;
}

.text-white{
    color: #fff !important;
}

/* tab link */
.custom-tabs>li>a {
    border: none !important;
    background: transparent !important;
    color: #888;
    font-weight: 500;
    position: relative;
    padding: 10px 20px;
}

/* number circle */
.tab-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: rgb(253 95 23 / 10%);
    color: #f6b839;
    text-align: center;
    margin-right: 8px;
    font-weight: 600;
}

/* active tab */
.custom-tabs>li.active>a {
    color: #f6b839;
}

/* active number */
.custom-tabs>li.active .tab-number {
    background: #f6b839;
    color: #fff;
}

/* underline */
.custom-tabs>li.active>a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #f6b839;
}

/* hover effect */
.custom-tabs>li>a:hover {
    color: #f6b839;
}

.home-sub-services {
    padding: 0px 15px;
    border: 1px solid #ccc;
}

.home-sub-services {
    padding: 0px 15px;
    border: 1px solid #ccc;
}

.border-right {
    border-right: 1px solid #ccc;
}

.dev-card1 {
    background: linear-gradient(145deg,
            rgba(18, 100, 110, 0.88) 0%,
            rgba(13, 65, 100, 0.84) 35%,
            rgba(16, 40, 88, 0.92) 65%,
            rgba(19, 26, 72, 0.97) 100%),
        url('assets/images/home/drilling-services.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.dev-card2 {
    background: linear-gradient(145deg,
            rgba(18, 100, 110, 0.88) 0%,
            rgba(13, 65, 100, 0.84) 35%,
            rgba(16, 40, 88, 0.92) 65%,
            rgba(19, 26, 72, 0.97) 100%),
        url('assets/images/home/mining-bg-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.dev-card3 {
    background: linear-gradient(145deg,
            rgba(18, 100, 110, 0.88) 0%,
            rgba(13, 65, 100, 0.84) 35%,
            rgba(16, 40, 88, 0.92) 65%,
            rgba(19, 26, 72, 0.97) 100%),
        url('assets/images/blog/img-3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.site-header #navbar > ul li a:hover, .site-header #navbar > ul li a:focus {
    outline: none;
    outline-offset: 0px;
}


.navbar-brand {
  height: auto;
  padding: 10px;
}

#about {
  background: #e6eeff;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  width: 100%;
}

#about::before {
  content: "ZAMBIA";
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20vw;
  color: rgba(184, 115, 51, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

.about-inner {
  position: relative;
  z-index: 1;
}

/* ── Left text column ── */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--copper);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--copper);
  font-style: normal;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--copper);
  margin: 1rem 0 1.8rem;
}

.about-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #777777;
  margin-bottom: 1.2rem;
}

.about-text p strong {
  color: var(--muted);
  font-weight: 500;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.7rem;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  margin-top: 2rem;
  display: inline-block;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--copper);
  color: var(--dark);
  text-decoration: none;
}

/* ── Pillars ── */
.pillars-wrap {
  background: var(--slate); /* provides the 1px gap colour */
}

/* Make the row a flex container */
.pillars-row {
  display: flex;
  flex-wrap: wrap;   /* allows wrapping to 2×2 grid */
}

/* Make each column a flex item that stretches */
.pillar-col {
  display: flex;     /* lets the .pillar inside stretch to full height */
}

/* Make the card fill the full column height */
.pillar {
  display: flex;
  flex-direction: column;
  width: 100%;       /* fills the .pillar-col */
}

.pillar-col {
  padding: 0 !important;
}

.pillar {
  background: var(--mid);
  padding: 35px 50px;
  border-right: 1px solid var(--slate);
  border-bottom: 1px solid var(--slate);
  transition: background 0.3s;
  height: 100%;
}

.pillar:hover {
  background: var(--slate);
}

/* Remove right border on 2nd column */
.pillar-col:nth-child(2n) .pillar {
  border-right: none;
}

/* Remove bottom border on last row */
.pillar-col:nth-last-child(-n + 2) .pillar {
  border-bottom: none;
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  -webkit-clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
}

.pillar h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
  margin-top: 0;
}

.pillar p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

.sustainability-bg-img{
    background: url('../../assets/images/home/sustainability-bg-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 15px;
    border-radius: 15px;
}
/* Equal height row */
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

/* Make columns behave nicely */
.row-eq-height > [class*='col-'] {
    display: flex;
}

/* Card */
.sustainability-card {
    width: 100%;
    display: flex;
}

.equal-height-row {
    display: flex;
}

.equal-height-row > [class*="col-"] {
    display: flex;
}

.sutainability-block h1{
  font-size: 72px;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
    margin: 0 0 0.4em;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

/* Card Body */
.scard-body {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin: 5px;
    width: 100%;

    display: flex;
    flex-direction: column;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.scard-body h4 {
    padding-bottom: 45px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 10px;
}

/* List */
.scard-body ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

/* Optional: push list to bottom for alignment */
.scard-body ul {
    margin-top: auto;
}

.theme-btn.btn-sm{
  font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 20px;
}


/* ── Card ── */
    .dev-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(
        145deg,
        rgba(20, 120, 120, 0.88) 0%,
        rgba(15, 80, 110, 0.84) 35%,
        rgba(18, 45, 90, 0.92) 65%,
        rgba(20, 30, 75, 0.97) 100%
      );
      min-height: 520px;
      margin-bottom: 30px;
      border-radius: 10px;
    }

    

    /* Terrain texture lines */
    .dev-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.10;
      background-image:
        repeating-linear-gradient(
          -30deg,
          transparent,
          transparent 38px,
          rgba(100, 200, 220, 0.18) 38px,
          rgba(100, 200, 220, 0.18) 39px
        ),
        repeating-linear-gradient(
          62deg,
          transparent,
          transparent 65px,
          rgba(80, 160, 200, 0.12) 65px,
          rgba(80, 160, 200, 0.12) 66px
        );
    }

    .card-inner {
      position: relative;
      z-index: 2;
      padding: 38px 38px 32px 38px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Rules */
    .top-rule {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.30);
      margin: 0 0 26px 0;
    }
    .bottom-rule {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.30);
      margin: 16px 0 0 0;
    }

    /* Header */
    .card-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 26px;
    }

    .wwd-section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 30px;
      font-weight: 700;
      /*letter-spacing: 5px;*/
      color: #ffffff;
      text-transform: uppercase;
      line-height: 1;
      text-shadow:
        1px 1px 0 rgba(0,0,0,0.3),
        -1px -1px 0 rgba(255,255,255,0.05);
    }

    .card-logo-icon {
      font-size: 44px;
      color: white;
      opacity: 0.85;
      line-height: 1;
    }

    /* Feature rows */
    .feature-item {
      display: flex;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }
    .feature-item:first-of-type {
      border-top: 1px solid rgba(255,255,255,0.18);
    }
    .feature-item.no-border-bottom {
      border-bottom: none;
    }

    /* Icon circle */
    .icon-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1.5px solid rgba(255,255,255,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 18px;
    }
    .icon-circle i {
      font-size: 20px;
      color: rgba(255,255,255,0.85);
    }

    .feature-text {
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,0.90);
      letter-spacing: 0.2px;
      line-height: 1.4;
    }

    /* Read more */
    .read-more-row {
      display: flex;
      justify-content: center;
      padding: 18px 0 8px 0;
      margin-top: auto;
    }
    .read-more-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      color: #ffffff;
      text-decoration: none;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: opacity 0.2s;
    }
    .read-more-link:hover {
      opacity: 0.70;
      text-decoration: none;
      color: #ffffff;
    }
    .read-more-link i {
      font-size: 12px;
    }

    /* Equal height columns */
    .row-eq-height {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-wrap: wrap;
    }
    .row-eq-height > [class*='col-'] {
      display: flex;
      flex-direction: column;
    }
    .row-eq-height .dev-card {
      flex: 1;
    }


nav.navigation.navbar.navbar-default.sticky-header.sticky-on .navbar-header .navbar-brand img {
    width: 60px !important;
}

nav.navigation.navbar.navbar-default.sticky-header.sticky-on #navbar > ul > li > a{
            padding: 29px 15px;
}

nav.navigation.navbar.navbar-default.sticky-header.sticky-on .search-contact {
    position: absolute;
    right: 15px;
    top: 13px;
    height: auto;
    line-height: normal;
  }
  nav.navigation.navbar.navbar-default.sticky-header.sticky-on .search-contact .call i{
    position: absolute;
    left: 30px;
    top: 2px;
}

nav.navigation.navbar.navbar-default.sticky-header.sticky-on .call p{
  padding-top: 0px;
}

.contact-us {
    background: var(--mid);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.contact-us::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,115,51,0.08) 0%, transparent 70%);
}

/* spacing instead of grid gap */
.contact-layout > div {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
}

.contact-info p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* Info blocks */
.info-block {
    margin-bottom: 20px;
}

.info-block .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
}

.info-block .value {
    font-size: 14px;
    color: var(--text);
}

/* Form styling */
.contact-form .form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}


.contact-form .form-control:focus {
    border-color: var(--copper);
    box-shadow: none;
}

.form-group label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: transparent;
    border: 1px solid var(--white);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    /* font-size: 0.95rem; */
    padding: 10px 1rem;
    outline: none;
    height: 46px;
    transition: border-color 0.3s;
    resize: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--copper); }
    .form-group select option { background: var(--dark); }
/* ── Responsive ── */
@media (max-width: 991px) {
  .about-text {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  #about {
    padding: 50px 0 0px ;
  }
  .section-title {
    font-size: 2rem;
  }

  /* On small screens keep 2-col pillars */
  .pillar-col:nth-child(2n) .pillar {
    border-right: none;
  }
  .pillar-col:nth-last-child(-n + 2) .pillar {
    border-bottom: none;
  }
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: 0px !important;
  }
}

.white-top-strip {
      background: #ffffff;
      height: 80px;
    }

    /* ===================================================
       NAVY SECTION
    =================================================== */
    .resolute-section {
      /*background-color: #131e4a;*/
          background: linear-gradient(270deg, rgba(44, 29, 76, 0.98) 0%, rgba(0, 131, 135, 0.98) 100%);
      padding-bottom: 48px;
      overflow: visible;
    }

    .resolute-section > .container-fluid {
      padding-left: 0;
      padding-right: 0;
    }

    /* Remove default Bootstrap row gutters */
    .resolute-section .row {
      margin-left: 0;
      margin-right: 0;
    }

    /* ===================================================
       CARD  (each col-*)
    =================================================== */
    .card-item {
      /*padding-left: 0;
      padding-right: 0;*/
    }

    /* Image bleeds 80px upward into the white strip */
    .card-item .card-img {
      width: 100%;
      object-fit: cover;
      display: block;
      margin-top: -80px;
      position: relative;
      z-index: 2;
    }

    /* Text area */
    .card-item .card-content {
      padding: 26px 0px;      /*border-left: 1px solid rgba(255, 255, 255, 0.1);*/
    }

    /* No left border on first card */
    .card-item:first-child .card-content {
      border-left: none;
    }

    .card-item .card-content h3 {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 14px 0;
      letter-spacing: 0.01em;
    }

    .card-item .card-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #fff;
      margin: 0 0 22px 0;
      min-height: 78px;
    }

    /* READ MORE link */
    .card-item .read-more {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #e8a020;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .card-item .read-more:hover,
    .card-item .read-more:focus {
      color: #fff;
      text-decoration: none;
    }

    .card-item .read-more .arrow {
      margin-left: 4px;
    }

    /* ===================================================
       TABLET  (768px – 991px) : 2 columns via col-md-6
    =================================================== */
    @media (min-width: 768px) and (max-width: 991px) {

      .card-item .card-img {
        height: 200px;
      }

      /* 1st card of each row: no left border */
      .card-item:nth-child(odd) .card-content {
        border-left: none;
      }

      /* 2nd row cards: remove negative top margin (no white strip overlap) */
      .card-item:nth-child(3),
      .card-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .card-item:nth-child(3) .card-img,
      .card-item:nth-child(4) .card-img {
        margin-top: 0;
      }
    }

    /* ===================================================
       MOBILE  (< 768px) : 1 column via col-xs-12
    =================================================== */
    @media (max-width: 767px) {

      /* No white strip; images sit flush at top */
      .white-top-strip {
        display: none;
      }

      .resolute-section {
        padding-bottom: 24px;
      }

      .card-item .card-img {
        height: 190px;
        margin-top: 0;
      }

      .card-item .card-content {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 18px 18px 18px;
      }

      .card-item:first-child .card-content {
        border-top: none;
      }

      .card-item .card-content p {
        min-height: auto;
      }
    }

.projects-download-btn{
      border: 1px solid #ccc;
    width: 100%;
    border-radius: 7px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 15px 20px;
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
    /* ── Card ── */
    .product-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      width: 100%;
      box-shadow: 0 8px 40px rgba(0,0,0,0.13);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 56px rgba(0,0,0,0.18);
    }

    /* ── Image area ── */
    .card-image-wrap {
      position: relative;
      background: linear-gradient(160deg, #C8D0D6 0%, #8FA0AA 100%);
      overflow: hidden;
      height: 240px;
    }
    .card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }
    .product-card:hover .card-image-wrap img {
      transform: scale(1.04);
    }

    /* ── Badge ── */
    .badge-specialist {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--yellow);
      color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 4px;
      z-index: 2;
    }

    /* ── Body ── */
    .card-body-content {
      padding: 24px 24px 6px;
    }

    .product-title {
      font-family: 'Barlow Condensed', sans-serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1.15;
        margin: 0 0 0px;
        letter-spacing: .3px;
        min-height: 65px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* ── Specs ── */
    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }
    .specs-table tr {
      border-bottom: 1px solid #e8e8e8;
    }
    .specs-table tr:last-child {
      border-bottom: none;
    }
    .specs-table td {
      padding: 11px 0;
      font-size: 14px;
      vertical-align: middle;
    }
    .spec-label {
      color: var(--muted);
      font-weight: 500;
    }
    .spec-value {
      color: var(--dark);
      font-weight: 700;
      text-align: right;
      font-size: 15px;
    }

    /* ── Download button ── */
    .card-footer-content {
      padding: 18px 24px 22px;
    }
    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: none;
      border: none;
      padding: 0;
      color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: color .2s ease;
    }
    .btn-download:hover,
    .btn-download:focus {
      color: var(--yellow);
      text-decoration: none;
    }
    .btn-download .pdf-icon-wrap {
      width: 34px;
      height: 34px;
      background: #FFF3D6;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease;
    }
    .btn-download:hover .pdf-icon-wrap {
      background: var(--yellow);
    }
    .btn-download .fa {
      font-size: 16px;
      color: var(--yellow);
      transition: color .2s ease;
    }
    .btn-download:hover .fa {
      color: #fff;
    }

    .card-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
  }
  .card-col {
    padding: 0 12px;
    width: 50%;
    display: flex;
  }
  @media (max-width: 767px) {
    .card-col { width: 100%; margin-bottom: 24px; }
  }

  .erp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
  }

  .card-image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
  }
  .card-image-wrap img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }


  .card-body-custom {
    padding: 24px 24px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .card-title-custom {
    font-size: 22px;
    font-weight: 700;
    color: #0f1b2d;
    margin: 0 0 12px;
  }
  .card-desc {
    font-size: 15px;
    color: #555e6d;
    line-height: 1.65;
    margin: 0;
  }

  .card-footer-custom {
    display: flex;
    justify-content: flex-end;
    padding: 16px 24px 20px;
  }
  .arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0f2d6b;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .arrow-btn:hover { background: #1a4499; }
  .arrow-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


.section-padding {
    padding: 30px 0;
}

/* Card Base */
.card-box {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 300px;
    /*margin-bottom: 20px;*/
    border-radius: 10px;
}

.card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: grayscale(100%);*/
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

/* Content */
.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.tag {
    font-size: 12px;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 4px 8px;
    margin-bottom: 8px;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    margin: 5px 0;
}

.card-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Orange Box */
.orange-box {
        background: #f5aa43;
    color: #fff;
    padding: 20px 30px;
    height: 300px;
    position: relative;
    border-radius: 10px;
}

.orange-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.orange-box p {
        color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding-bottom: 15px;
    margin-bottom: 0px;
}

.stats {
    margin-top: 30px;
}

.stat {
    display: inline-block;
    width: 48%;
}

.stat h3 {
    font-size: 32px;
    margin: 0;
    color: #fff;
}

.stat span {
    font-size: 12px;
    letter-spacing: 1px;
}

.card-wrapper {
    position: relative;
    width: 330px;
    height: 380px;
    /*margin: auto;*/
}

/* RED (bottom layer) */
.bg-two {
    position: absolute;
    width: 330px;
    height: 380px;
    background: #f6b839;
    border-radius: 20px;
    top: -40px;
    left: 40px;
    z-index: 1;
    opacity: 0.2;
}

/* BLUE (middle layer) */
.bg-one {
    position: absolute;
    width: 330px;
    height: 380px;
    opacity: 0.2;
    background: #f6b839;
    border-radius: 20px;
    top: -20px;
    left: 20px;
    bottom: 106px;
    z-index: 2;
    opacity: 0.4;
}

/* IMAGE (top layer) */
.card-image {
    width: 330px;
    position: relative;
    z-index: 3;
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid #fff;
}

.card-image img {
    width: 330px;
    height: 380px;
    display: block;
    border-radius: 25px;
}

.hero-style-1 {
    /* height: 660px; */
    height: 575px;
}

.navigation-holder {
    position: fixed;
    z-index: 100000; /* higher than overlay */
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .card-wrapper {
        width: 260px;
        margin: 0px !important;
    }
}

#heroSwiper {
    overflow-x: clip;
}

@media (max-width: 991px) {
    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    .menu-open .body-overlay:before {
    opacity: 1;
    visibility: visible;
}
    .hero-style-1 {
        height: 55rem !important;
    }

    #header {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 100;
    }

    #heroSwiper {
        margin-top: 6rem;
    }

    .header-style-1 .navigation {
        background-color: transparent !important;
    }

    /* .header-style-1 .sticky-header, .header-style-2 .sticky-header, .header-style-3 .sticky-header {
            background-color: transparent;
            background: none;
            backdrop-filter: blur(16px);
        } */
    .site-header .sticky-on .navbar-header button {
        top: 11px;
    }

    .site-header .navbar-header button {
        top: 25px;
    }

.site-header {
    position: fixed;
    z-index: 99999;
}
    .header-style-1 .navbar-brand {
        top: 0;
    }

    .navbar-brand {
        padding: 0 10px;
    }

    .card-wrapper {
        margin: 0px auto;
    }

}

.info-block>.label {
    padding: 0px !important;
}

.why-choose-section .why-choose-grids {
    display: flex;
    flex-wrap: wrap;
}

.why-choose-section .why-choose-grids .grid {
    display: flex;
    flex-direction: column;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-body-content {
    flex-grow: 1;
}

.gallery-tabs {
    margin-bottom: 25px;
}

.gallery-tabs .btn {
    margin: 5px;
    padding: 10px 25px;
}

.gallery-tabs .active {
    background-color: #286090;
    border-color: #204d74;
    color: #fff;
}

.gallery-item {
    margin-bottom: 30px;
} 

.btn.active:focus{
    outline: none;
}
/* Responsive */
@media (max-width: 767px) {
    .card-box,
    .orange-box {
        height: auto;
    }

    .card-box img {
        height: 220px;
    }

    .orange-box {
        padding: 25px;
    }

    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-tabs .btn {
        margin: 3px !important;
        padding: 8px 20px !important;
    }
}
