.logo {
  max-width: 334px !important;
}

.about-vision-section {
  padding: 60px 0;
}

.section-block {
  border-left: 3px solid #D86C01;
  padding-left: 20px;
  margin-bottom: 30px;
}

.section-block h2,
.section-block2 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4a5a63;
  margin-bottom: 20px;
}

.section-block h4 {
  font-size: 22px;
  font-weight: 600;
  color: #4a5a63;
  margin-bottom: 15px;
}

.section-block p {
  font-size: 16px;
  color: #4a5a63;
  line-height: 1.6;
}

a.btn.btn-secondary.buttonapp {
  font-size: 19px;
}

/* === CAROUSEL HEIGHT === */
.carousel-item {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

/* === TEXT POSITION === */
.carousel-caption {
  top: 50%;
  bottom: auto;
  left: 12%;
  right: auto;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  padding: 0;
}

/* === TEXT BOX === */
.text-box {
  background: linear-gradient(
    135deg,
    rgba(18, 55, 92, 0.86),
    rgba(48, 83, 116, 0.8)
  );
  padding: 22px 30px;
  border-radius: 10px;
  max-width: 500px;
}

/* === TEXT STYLE === */
.carousel-caption h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.carousel-caption p {
  font-size: 1rem;
  color: #d5e6e6;
  margin: 0;
}

/* === ARROWS === */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(1, 31, 61, 0.8);
  border-radius: 50%;
  padding: 18px;
}

/* === DOTS === */
.carousel-indicators li {
  background-color: #ccc;
}

.carousel-indicators .active {
  background-color: #011f3d;
}

/* === TABLET === */
@media (max-width: 991px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-item img {
    height: 400px;
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  .carousel-item {
    height: 260px;
  }

  .carousel-item img {
    height: 260px;
  }

  .carousel-caption {
    top: 25px;
    left: 20px;
    right: 20px;
    transform: none;
  }

  .text-box {
    max-width: 90%;
    padding: 15px 20px;
  }

  .carousel-caption h2 {
    font-size: 1.4rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}

/* === SMALL MOBILE === */
@media (max-width: 480px) {
  .carousel-item {
    height: 220px;
  }

  .carousel-item img {
    height: 220px;
  }

  .carousel-caption {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .text-box {
    max-width: 95%;
    padding: 12px 16px;
  }

  .carousel-caption h2 {
    font-size: 1.15rem;
  }

  .carousel-caption p {
    font-size: 0.82rem;
  }
}

@media (min-width: 768px) {
  .section-block {
    margin-bottom: 0;
  }
}

/* === 4AM-STYLE MOVING OVERLAY === */
#heroCarousel {
  position: relative;
  overflow: hidden;
}

#heroCarousel .carousel-item {
  position: relative;
  overflow: hidden;
}

#heroCarousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(1, 31, 61, 0.92) 0%,
    rgba(10, 60, 96, 0.82) 55%,
    rgba(216, 108, 1, 0.72) 100%
  );
  transform: skewX(-18deg) translateX(-100%);
  z-index: 1;
  pointer-events: none;
}

#heroCarousel .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-18deg) translateX(-120%);
  z-index: 1;
  pointer-events: none;
}

#heroCarousel .carousel-item.active::before {
  animation: heroOverlayMove 1.15s ease-out 0.55s forwards;
}

#heroCarousel .carousel-item.active::after {
  animation: heroOverlayMoveSoft 1.35s ease-out 0.65s forwards;
}

#heroCarousel .carousel-caption {
  z-index: 3;
}

#heroCarousel .text-box {
  background: rgba(1, 31, 61, 0.72);
  padding: 22px 30px;
  border-left: 4px solid #D86C01;
  border-radius: 0;
  max-width: 540px;
  opacity: 0;
  transform: translateX(-35px);
}

#heroCarousel .carousel-item.active .text-box {
  animation: heroTextIn 0.85s ease-out 0.95s forwards;
}

#heroCarousel .carousel-caption h2 {
  font-size: 2.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}

#heroCarousel .carousel-caption p {
  font-size: 1.05rem;
  color: #fff;
}

#heroCarousel .carousel-item img {
  filter: brightness(0.82);
  transform: scale(1.04);
}

#heroCarousel .carousel-item.active img {
  animation: heroImageDrift 6s ease-out forwards;
}

@keyframes heroOverlayMove {
  from {
    transform: skewX(-18deg) translateX(-100%);
  }
  to {
    transform: skewX(-18deg) translateX(48%);
  }
}

@keyframes heroOverlayMoveSoft {
  from {
    transform: skewX(-18deg) translateX(-120%);
    opacity: 0;
  }
  to {
    transform: skewX(-18deg) translateX(115%);
    opacity: 1;
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.08) translateX(-12px);
  }
  to {
    transform: scale(1.04) translateX(0);
  }
}

/* === MOBILE OVERLAY ADJUSTMENTS === */
@media (max-width: 768px) {
  #heroCarousel .carousel-item::before {
    left: -75%;
    width: 105%;
  }

  #heroCarousel .carousel-caption {
    top: 50%;
    left: 28px;
    right: 28px;
    transform: translateY(-50%);
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 1.6rem;
  }

  #heroCarousel .carousel-caption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #heroCarousel .carousel-caption h2 {
    font-size: 1.25rem;
  }

  #heroCarousel .carousel-caption p {
    font-size: 0.82rem;
  }
}

/* === CAREERS PARALLAX SECTION === */
.careers-parallax {
  min-height: 300px;
  background-image: url("/sites/4arrowsmining/image/jpeg/people3.jpg");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.careers-parallax-overlay {
  min-height: 300px;
  background: linear-gradient(
    90deg,
    rgba(1, 31, 61, 0.72),
    rgba(1, 31, 61, 0.32),
    rgba(216, 108, 1, 0.18)
  );
  display: flex;
  align-items: center;
}

.careers-parallax-content {
  max-width: 560px;
  background: rgba(1, 31, 61, 0.78);
  border-left: 4px solid #D86C01;
  padding: 30px 34px;
  color: #fff;
}

.careers-parallax-content h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}

.careers-parallax-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .careers-parallax {
    min-height: 260px;
    background-attachment: scroll;
    background-position: center;
  }

  .careers-parallax-overlay {
    min-height: 260px;
  }

  .careers-parallax-content {
    max-width: 90%;
    padding: 24px 24px;
  }

  .careers-parallax-content h2 {
    font-size: 26px;
  }

  .careers-parallax-content p {
    font-size: 15.5px;
  }
}

/* === SERVICES SECTION WITH IMAGES === */
.services-section {
  padding: 70px 0;
}

.services-intro {
  max-width: 900px;
  margin: 0 auto 35px;
}

.services-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5a63;
  margin: 0 auto;
}

.services-grid {
  margin-top: 20px;
}

.service-card-image {
  height: 100%;
  background: #fff;
  border-left: 4px solid #D86C01;
  box-shadow: 0 8px 24px rgba(1, 31, 61, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(1, 31, 61, 0.15);
}

.service-image {
  height: 190px;
  overflow: hidden;
  position: relative;
}


.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 31, 61, 0.05),
    rgba(1, 31, 61, 0.45)
  );
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.service-card-image:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 25px 24px 28px;
}

.service-content h4 {
  font-size: 21px;
  font-weight: 700;
  color: #4a5a63;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4a5a63;
  margin: 0;
}

.service-card-wide .service-image {
  height: 230px;
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }

  .services-intro p {
    font-size: 15.5px;
  }

  .service-image,
  .service-card-wide .service-image {
    height: 200px;
  }

  .service-content {
    padding: 22px 20px 24px;
  }

  .service-content h4 {
    font-size: 19px;
  }

  .service-content p {
    font-size: 15px;
  }
}
/* === FOOTER === */
.site-footer {
  background: #3d4f59;
  padding: 55px 0;
  color: #fff;
}

.footer-help h3 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-help p {
  font-size: 16px;
  line-height: 1.6;
  color: #e8eef1;
  margin-bottom: 14px;
}

.footer-support-btn {
  background: #D86C01;
  border-color: #D86C01;
  color: #fff;
  font-size: 16px;
  padding: 11px 24px;
  border-radius: 0;
  font-weight: 600;
}

.footer-support-btn:hover {
  background: #b85c00;
  border-color: #b85c00;
  color: #fff;
}

.footer-social {
  text-align: right;
}

.footer-social h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  background: #D86C01;
  border-color: #D86C01;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 42px 0;
    text-align: center;
  }

  .footer-help h3 {
    font-size: 23px;
  }

  .footer-social {
    text-align: center;
    margin-top: 28px;
  }

  .social-links {
    justify-content: center;
  }
}
.page-content {
    padding-bottom: 0rem !important;
}
.backwhite {
    background-color: #ffffff; 
}
.logo-small {
    max-width: 186px !important;
    padding: 8px;
}
