@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
}

.hd-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

.logo img {
  height: 72px;
}

/* NAVBAR */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 0;
  display: inline-block;
  transition: 0.3s;
}

.nav ul li a:hover {
  color: #1e90ff;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  /* min-width: 220px; */
  flex-direction: column;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background-color: #fff;
  z-index: 999;
  gap: 5px !important;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  color: #333 !important;
  padding: 12px 15px;
  display: block;
  font-size: 14px;
  transition: 0.3s;
  width: 200px;
  /* text-align: center; */
  padding: 10px 15px !important;
}

.dropdown-menu li a:hover {
  color: #1e90ff;
  background-color: #555;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CONTACT BUTTON */
.contact-btn a {
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 13px;
  border: 2px solid #fff;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-btn a:hover {
  background: #0aa3c7;
  border-color: #0aa3c7;
}

/* BANNER */
.banner {
  position: relative;
  height: 100vh;
  background: url("../img/slide1.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

.heading-subtitle {
  font-size: 16px;
  color: #bdbdbd;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 400;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 38px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: "Roboto Slab", serif;
}

.banner-content p {
  margin-bottom: 25px;
  font-size: 18px;
  opacity: 0.9;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 25px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 14px;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* BANNER */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* TEXT ANIMATION */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.delay {
  animation-delay: 0.5s;
}

.delay2 {
  animation-delay: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTION */
.goquest-section {
  background: #fdf2df;
  padding-top: 32px;
}

/* CONTAINER */
.goquest-section .gq-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-bottom: 54px;

}

/* IMAGE */
.goquest-image img {
  max-width: 700px;
}

/* TEXT */
.goquest-content p {
  font-size: 21px;
  line-height: 1.8;
  color: #111;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .goquest-section {
    padding: 60px 15px;
  }

  .goquest-content p {
    font-size: 18px;
  }
}



/* SECTION */
/* ============================= */
/* BUSINESS SECTION */
/* ============================= */

.business-section {
  position: relative;
  padding: 100px 20px;
  min-height: 500px;
  overflow: hidden;

  background: url("../img/slide1.jpg") center/cover no-repeat;
  transition: opacity 0.5s ease;
}


.business-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.75) 40%,
      rgba(0, 0, 0, 0.3) 100%);
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.business-container {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 60px;
  align-items: center;
}

/* ============================= */
/* LEFT CONTENT */
/* ============================= */

.business-left {
  flex: 2;
  color: #fff;
  position: relative;
  min-height: 300px;
  background: rgb(0 0 0 / 0%);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.business-subtitle img {
  filter: brightness(1.5);
}

/* SUBTITLE */
.business-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 36px;
}

.business-subtitle {
  position: relative;
  z-index: 5;
  /* 🔥 bring to front */
  margin-bottom: 10px;
  left: 33px;
}

/* ============================= */
/* TAB CONTENT ANIMATION */
/* ============================= */

.tab-content {
  position: absolute;
  top: 50px;
  left: 31px;
  width: 100%;

  opacity: 0;
  transform: translateY(40px) scale(0.98);

  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  pointer-events: none;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ============================= */
/* HEADING */
/* ============================= */

.tab-content h2 {
  font-size: 52px;
  font-weight: 800;
  margin: 20px 0;

  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* ============================= */
/* PARAGRAPH */
/* ============================= */

.tab-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 28px;
  max-width: 520px;
}

/* ============================= */
/* FEATURES */
/* ============================= */

.features {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

.feature {
  color: #ffb347;
  font-size: 14px;
  font-weight: 500;
}

/* ============================= */
/* RIGHT SIDE */
/* ============================= */

.business-right {
  flex: 1;
}

/* ============================= */
/* TABS */
/* ============================= */

.tabs {
  list-style: none;
  padding: 0;
}

/* TAB CARD */
.tabs li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 22px;
  margin-bottom: 15px;

  border-radius: 12px;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(10px);

  color: #fff;
  transition: 0.4s ease;
}

/* ICON */
.tabs li .icon i {
  font-size: 18px;
  transition: 0.3s;
}

/* ARROW */
.tabs li .arrow i {
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
}

/* ACTIVE TAB */
.tabs li.active {
  border: 1px solid #ffb347;
  background: rgba(255, 179, 71, 0.08);
  box-shadow: 0 0 20px rgba(255, 179, 71, 0.4);
}

/* ACTIVE ICON */
.tabs li.active .icon i {
  color: #ffb347;
  text-shadow: 0 0 10px rgba(255, 179, 71, 0.6);
}

/* ACTIVE ARROW */
.tabs li.active .arrow i {
  transform: translateX(6px);
  color: #ffb347;
}

/* HOVER */
.tabs li:hover {
  transform: translateX(8px);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .business-container {
    flex-direction: column;
  }

  .tabs li {
    font-size: 14px;
  }


  .tab-content h2 {
    font-size: 30px;
  }

  .tab-content p {
    font-size: 14px;
  }
}

/* SECTION */
.think-tank {
  padding: 60px 20px;
  background: #fdf2df;
}

/* CARD */
.tt-container {
  max-width: 1200px;
  margin: auto;
  background: #f5f5f5;
  border: 3px solid #1c3d6e;
  border-radius: 40px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* LEFT */
.tt-left {
  flex: 1;
}

.tt-left h2 {
  font-size: 43px;
  color: #1c3d6e;
  font-weight: 800;
  margin-bottom: 10px;
}

.tt-left p {
  font-size: 13px;
  color: #1c3d6e;
  line-height: 1.6;
  max-width: 350px;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT TEAM */
.tt-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* MEMBER */
.tt-member {
  text-align: center;
}

.tt-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  object-fit: cover;
}

.tt-member h4 {
  margin-top: 10px;
  font-size: 14px;
  color: #1c3d6e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tt-container {
    flex-direction: column;
    text-align: center;
  }

  .tt-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* SECTION */
.ppp-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

/* CONTAINER */
.ppp-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.ppp-card {
  width: 30%;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.ppp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.ppp-img img {
  width: 100%;
  height: 195px;
  /* object-fit: contain; */
  margin-bottom: 15px;
}

/* TITLE */
.ppp-card h3 {
  font-size: 22px;
  color: #1c3d6e;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* TEXT */
.ppp-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ppp-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .ppp-card {
    width: 100%;
  }
}

/* TITLE */
.ppp-title {
  text-align: center;
  margin-bottom: 50px;
}

.ppp-title h2 {
  font-size: 42px;
  color: #1c3d6e;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* UNDERLINE DESIGN */
.ppp-title h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: #f4c542;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* SECTION */
.subscribe-section {
  position: relative;
  padding: 118px 0;
  background: url("../img/footer-bg-scaled.png") center center / cover no-repeat;
  overflow: hidden;
}

/* DARK OVERLAY (optional but recommended) */
.subscribe-section::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* CONTAINER */
.sub-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: rgb(0, 0, 0, 0.5);
  padding: 25px;
}

/* LEFT */
.sub-left p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

/* FORM */
.sub-form {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.sub-form input {
  border: none;
  padding: 10px 15px;
  outline: none;
  width: 250px;
}

.sub-form button {
  background: #c9a24a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.sub-form button:hover {
  background: #a88636;
}

/* RIGHT SOCIAL */
.sub-right {
  display: flex;
  gap: 10px;
}

.sub-right a {
  width: 35px;
  height: 35px;
  background: #c9a24a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.sub-right a:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sub-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .sub-form input {
    width: 180px;
  }
}

/* FOOTER */
.footer {
  position: relative;
  background:
    radial-gradient(30.38% 41.37% at 50.63% 51.67%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.75) 60%),
    url("../img/footer-bg.png") center/cover no-repeat;
  color: #fff;
}

/* DARK OVERLAY */

/* CONTAINER */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 250px;
}

/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* TITLE */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f4c542;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f4c542;
  padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}


/* SECTION */
.awards-section {
  padding: 100px 20px;
  background: #fff;
}

/* CONTAINER */
.awards-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.awards-title h2 {
  font-size: 37px;
  color: #1c3d6e;
  margin-bottom: 10px;
}

.awards-title p {
  color: #666;
  padding-left: 18px;
  margin-bottom: 50px;
}

/* CARD */
.award-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  margin: 19px 9px;
}

.award-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.award-card img {
  width: 80px;
  margin-bottom: 15px;
}

/* TEXT */
.award-card h4 {
  font-size: 18px;
  color: #1c3d6e;
  margin-bottom: 5px;
}

.award-card span {
  font-size: 14px;
  color: #999;
}

/* OWL NAV */
.awards-slider .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #1c3d6e !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.awards-slider .owl-nav .owl-prev {
  left: -20px;
}

.awards-slider .owl-nav .owl-next {
  right: -20px;
}

/* DOTS */
.awards-slider .owl-dots .owl-dot span {
  background: #ccc;
}

.awards-slider .owl-dots .owl-dot.active span {
  background: #1c3d6e;
}

/* ❌ cursor: none remove kore diyechi */
body {
  /* cursor: none; */
}

/* small dot */
.cursor-dot {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}

/* outer circle */
.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}

.chbot-wrapper {
  position: fixed;
  bottom: 120px;
  right: 25px;
  z-index: 3;
}

.chbot-toggle {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background: #088c8b;
  color: #fff;
  border: none;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chbot-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.chbot-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
}

.chbot-box h6 {
  margin-bottom: 10px;
  font-weight: 600;
}

.chbot-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
}

.chbot-option.vid {
  background: #003af8;
}

.bg-info {
  background: #ff0000 !important;
}

.chbot-option:hover {
  opacity: 0.9;
}

/* Caller Image */
.chbot-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  animation: blPulse 1.5s infinite;
  box-shadow: 0 0 0 rgba(40, 167, 69, 0.7);
}

/* Pulse Animation */
@keyframes blPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    opacity: 1;
  }
}

.d-block {
  display: block !important;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

/* PRELOADER MAIN */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  /* dark theme */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* BOX */
.loader-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO */
.loader-logo {
  width: 180px;
  animation: pulse 2s ease-in-out infinite;
}

/* ROTATING RING */
.ring {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 3px solid transparent;
  border-top: 3px solid #00c6ff;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  filter: drop-shadow(0 0 10px #00c6ff);
}

/* ANIMATION */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.loader-logo:before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: #fff;
  top: 0;
  border-radius: 50%;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-wrapper::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  /* logo er pichone */
}

.loader-logo {
  width: 180px;
  position: relative;
  z-index: 2;
}

/*about section*/
/* .about-container {
  padding-right: 25px;
  padding-left: 25px;
} */

/* HERO */
.about-hero {
  height: 80vh;
  background: url('../img/slide1.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.about-hero .content {
  position: relative;
  color: #fff;
  z-index: 9;
}

.about-hero h1 {
  font-size: 76px;
  line-height: 90px;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
  text-shadow: 51px 8px 50px rgba(0, 0, 0, .48);
  text-transform: uppercase;
}

.about-hero p {
  font-size: 48px;
  text-shadow: 51px 8px 50px rgba(0, 0, 0, .48);
  color: #fff;
}

.ab-int-pg {
  line-height: 50px;
  /* max-width: 1000px; */
  margin: auto;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 35px;
}

.ab-int-pg2 {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #373f41;
}

.mx-width {
  max-width: 1454px !important;
}

/* INTRO */
.about-intro {
  padding: 60px 0;
  text-align: center;
}

.about-intro h2 {
  font-size: 55px;
  margin-bottom: 25px;
}

/* MISSION VISION */
.mv-section {
  background: #fff;
  padding: 60px 0;
}

.mv-grid {
  display: flex;
  gap: 30px;
}

.mv-card {
  flex: 1;
  background: #f1f1f1;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

/* VALUES */
.values {
  padding: 60px 0;
  text-align: center;
}

.value-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.card {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* TEAM */
.team {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.team-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.member {
  flex: 1;
}

.member img {
  width: 80px;
  border-radius: 50%;
}


/* CONTAINER */
.about-container {
  width: 100%;
  overflow: hidden;
}

/* ================= ABOUT ================= */
.about-section {
  padding: 80px 8%;
  background: #fff;
}

.about-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-section .col {
  flex: 1;
}

.about-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.about-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #10b8c8;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e85d00;
}

/* ================= SERVICES ================= */
.services-section {
  padding: 90px 8%;
  background: #0c0c0c;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #151515;
  padding: 35px 25px;
  border-radius: 14px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #10b8c8;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #bbb;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #10b8c8;
}

.service-card:hover p,
.service-card:hover i {
  color: #fff;
}

/* ================= STATS ================= */
.stats-section {
  padding: 70px 8%;
  background: #fff;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.stat-box {
  flex: 1;
}

.stat-box h2 {
  font-size: 42px;
  color: #10b8c8;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  color: #555;
}

/* ================= WHY ================= */
.why-section {
  padding: 90px 8%;
  background: #f9f9f9;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.why-card {
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 14px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= PROJECT ================= */
.project-section {
  padding: 90px 8%;
  background: #0c0c0c;
  color: #fff;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.project-card {
  background: #151515;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-card h4 {
  padding: 15px;
  font-size: 18px;
}

.project-card:hover {
  transform: scale(1.05);
}

/* ================= CTA ================= */
.cta-section {
  padding: 80px 8%;
  background: linear-gradient(45deg, #10b8c8, #ff8c00);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section .row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {

  .services-grid,
  .why-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    flex-direction: column;
    gap: 25px;
  }

  .about-section {
    padding: 60px 5%;
  }

  .services-section,
  .why-section,
  .project-section,
  .cta-section {
    padding: 60px 5%;
  }

  .about-hero h1 {
    font-size: 34px;
    line-height: 35px;
  }

  .about-hero p {
    font-size: 25px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-hero {
    height: 38vh;
  }
}

/* HERO SECTION */
.about-hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../img/slide2.jpg') center/cover no-repeat;
  filter: brightness(0.6);
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

/* TITLE */
.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* ORANGE TEXT */
.hero-content h1 span {
  color: #10b8c8;
}

/* SUB TEXT */
.sub-text {
  margin-top: 10px;
  font-size: 20px;
  color: #ddd;
}

/* FEATURES */
.hero-features {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* FEATURE BOX */
.feature {
  text-align: center;
  color: #fff;
}

/* ICON */
.feature i {
  font-size: 26px;
  color: #10b8c8;
  margin-bottom: 8px;
}

/* TEXT */
.feature p {
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-features {
    gap: 20px;
  }

  .feature p {
    font-size: 12px;
  }
}

/* HERO BASE */
.about-hero {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* OVERLAY */
.about-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

/* CONTENT CENTER */
.about-hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

/* TITLE */
.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* HIGHLIGHT TEXT */
.about-hero h1 span {
  color: #10b8c8;
}

/* SUB TEXT */
.about-hero p {
  margin-top: 10px;
  font-size: 20px;
  color: #ddd;
}

/* FEATURES */
.hero-features {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* FEATURE */
.feature {
  text-align: center;
}

.feature i {
  font-size: 26px;
  color: #10b8c8;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #ccc;
}

/* FLOATING CIRCLES (ENHANCED) */
.circles li {
  background: rgba(255, 107, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .hero-features {
    gap: 20px;
  }

  .feature p {
    font-size: 12px;
  }
}

/* HERO */
.about-hero {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* OVERLAY */
.about-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* CONTENT */
.about-hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* TITLE */
.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* ORANGE HIGHLIGHT */
.about-hero h1 span {
  color: #10b8c8;
}

/* SUB TEXT */
.about-hero p {
  margin-top: 10px;
  font-size: 20px;
  color: #ddd;
}

/* FEATURES */
.hero-features {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* FEATURE */
.feature {
  text-align: center;
}

.feature i {
  font-size: 26px;
  color: #10b8c8;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #ccc;
}

/* CIRCLES IMPROVE */
.circles li {
  background: rgba(255, 107, 0, 0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .hero-features {
    gap: 20px;
  }

  .feature p {
    font-size: 10px;
    font-weight: 600;
  }
}



/* ===== BANNER FIX ===== */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

/* OVERLAY FIX */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* CONTENT FIX */
.banner-content {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translateY(-50%);
  color: #fff;
  /* max-width: 600px; */
  z-index: 2;
}

/* TEXT FIX */
.banner-content h1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* COLOR FIX */
.banner-content .orange {
  color: #10b8c8;
}

.banner-content .white {
  color: #fff;
}

/* AUTHOR */
.author {
  margin-top: 15px;
  font-size: 16px;
  color: #ccc;
}

/* BUTTON FIX */
.banner-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn.primary {
  background: #10b8c8;
  color: #fff;
}

.btn.primary:hover {
  background: #e85d00;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #000;
}

/* ===== FEATURE BAR FIX ===== */
.feature-bar {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  padding: 18px 25px;
  border-radius: 12px;
  z-index: 3;
}

/* FEATURE ITEM */
.feature-item {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.feature-item i {
  font-size: 22px;
  color: #10b8c8;
}

.feature-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 12px;
  color: #bbb;
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 768px) {

  .banner-content {
    left: 5%;
    max-width: 90%;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .feature-bar {
    flex-direction: column;
    gap: 15px;
    width: 90%;
    display: none;
  }

  .awards-title h2 {
    font-size: 25px;
  }
}


/* =========================
   CORE SERVICES
========================= */

.core-services {
  position: relative;
  padding: 110px 8%;
  background: url('../img/slide6.jpeg') center/cover no-repeat;
  overflow: hidden;
}

/* DARK OVERLAY */
.cs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.9));
  z-index: 1;
}

/* CONTAINER */
.cs-container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */

.cs-title {
  text-align: center;
  margin-bottom: 70px;
}

.title-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #ff6b00;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b00;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.35);
}

.heading-title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}

.heading-subtitle {
  color: #cfcfcf;
  font-size: 20px;
  max-width: 850px;
  margin: auto;
  line-height: 1;
}

.title-line {
  width: 90px;
  height: 4px;
  background: #ff6b00;
  margin: 30px auto 0;
  border-radius: 20px;
}

/* =========================
   WRAPPER
========================= */

.cs-wrapper {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: stretch;
}

/* =========================
   CARD
========================= */

.cs-card {
  position: relative;
  width: 100%;
  max-width: 499px;
  min-height: 514px;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}

/* IMAGE */

.cs-image {
  position: absolute;
  inset: 0;
}

.cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* CARD OVERLAY */

.card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* HOVER */

.cs-card:hover {
  transform: translateY(-12px);
}

.cs-card:hover img {
  transform: scale(1.08);
}

/* =========================
   SERVICE ICON
========================= */

.service-icon {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  backdrop-filter: blur(10px);
}

.service-icon.orange {
  border: 2px solid #ff6b00;
  color: #ff6b00;
  box-shadow: 0 0 35px rgba(255, 107, 0, 0.3);
}

.service-icon.blue {
  border: 2px solid #1f9bff;
  color: #1f9bff;
  box-shadow: 0 0 35px rgba(31, 155, 255, 0.3);
}

/* =========================
   CONTENT
========================= */

.cs-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 40px;
  color: #fff;
}

.cs-content h3 {
  font-size: 35px;
  margin-bottom: 18px;
  font-weight: 700;
}

.small-line {
  width: 60px;
  height: 4px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.orange-bg {
  background: #ff6b00;
}

.blue-bg {
  background: #1f9bff;
}

.cs-content p {
  font-size: 18px;
  color: #e3e3e3;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* LIST */

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.service-list li {
  margin-bottom: 21px;
  font-size: 15px;
  color: #fff;
}

.service-list li i {
  margin-right: 12px;
  color: #ff6b00;
}

.blue-list li i {
  color: #1f9bff;
}

/* BUTTON */

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 35px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.4s ease;
}

.orange-btn {
  background: #ff6b00;
  color: #fff;
}

.blue-btn {
  background: #1f9bff;
  color: #fff;
}

.cs-btn:hover {
  transform: translateY(-4px);
}

/* =========================
   FEATURES
========================= */

.bottom-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-item i {
  font-size: 32px;
  color: #ff6b00;
}

.feature-item h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 5px;
}

.feature-item p {
  color: #bcbcbc;
  font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .heading-title {
    font-size: 48px;
  }

  .cs-content h3 {
    font-size: 36px;
  }

  .cs-content p {
    font-size: 18px;
  }

}

@media(max-width:992px) {

  .cs-wrapper {
    flex-direction: column;
  }

  .bottom-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-card {
    min-height: 550px;
  }

}

@media(max-width:768px) {

  .core-services {
    padding: 80px 5%;
  }

  .heading-title {
    font-size: 36px;
  }

  .heading-subtitle {
    font-size: 16px;
  }

  .cs-content {
    padding: 25px;
  }

  .cs-content h3 {
    font-size: 28px;
  }

  .cs-content p {
    font-size: 15px;
  }

  .service-list li {
    font-size: 15px;
  }

  .cs-btn {
    padding: 14px 25px;
    font-size: 16px;
  }

  .bottom-features {
    grid-template-columns: 1fr;
  }

}



/* =========================
   BUSINESS SERVICES
========================= */

.business-services {
  position: relative;
  padding: 100px 7%;
  background: #f5f7fa;
  overflow: hidden;
}

/* OPTIONAL SHAPES */

.business-services::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -180px;
  filter: blur(20px);
}

.business-services::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(31, 155, 255, 0.06);
  border-radius: 50%;
  bottom: -150px;
  left: -120px;
  filter: blur(20px);
}

/* REMOVE OVERLAY */

.bs-overlay {
  display: none;
}

/* CONTAINER */

.bs-container {
  position: relative;
  z-index: 2;
}

/* =========================
   HEADER
========================= */

.bs-header {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 60px;
}

.bs-mini-title {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  background: #fff3eb;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 107, 0, 0.15);
}

/* TITLE */

.bs-header h2 {
  font-size: 56px;
  line-height: 1.15;
  color: #111;
  font-weight: 800;
  margin-bottom: 24px;
}

.bs-header h2 span {
  color: #ff6b00;
}

/* TEXT */

.bs-header p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   GRID
========================= */

.bs-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

/* =========================
   LARGE CARD
========================= */

.bs-large-card {
  position: relative;
  min-height: 540px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

/* IMAGE */

.bs-large-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* LIGHT OVERLAY */

.bs-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.25),
      transparent);
}

/* HOVER */

.bs-large-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */

.bs-card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 35px;
}

/* NUMBER */

.bs-number {
  font-size: 65px;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 900;
  margin-bottom: 5px;
}

/* TITLE */

.bs-card-content h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 16px;
}

/* TEXT */

.bs-card-content p {
  color: #f0f0f0;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
}

/* POINTS */

.bs-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.bs-points span {
  padding: 10px 16px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.bs-points span i {
  color: #ff6b00;
  margin-right: 7px;
}

/* BUTTON */

.bs-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 50px;
  background: #ff6b00;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.bs-card-content a:hover {
  background: #ff7d20;
  transform: translateY(-4px);
}

/* =========================
   RIGHT SIDE
========================= */

.bs-right-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SMALL CARD */

.bs-small-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ececec;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bs-small-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */

.bs-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.bs-icon.blue {
  background: #edf6ff;
  color: #1f9bff;
}

.bs-icon.orange {
  background: #fff3eb;
  color: #ff6b00;
}

/* INFO */

.bs-info span {
  color: #ff6b00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.bs-info h3 {
  color: #111;
  font-size: 28px;
  margin: 10px 0;
}

.bs-info p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* =========================
   STATS
========================= */

.bs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-box {
  padding: 30px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #ececec;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-box h2 {
  color: #ff6b00;
  font-size: 36px;
  margin-bottom: 10px;
}

.stat-box p {
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .bs-header h2 {
    font-size: 46px;
  }

}

@media(max-width:992px) {

  .bs-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .business-services {
    padding: 70px 5%;
  }

  .bs-header h2 {
    font-size: 34px;
  }

  .bs-header p {
    font-size: 15px;
  }

  .bs-card-content {
    padding: 25px;
  }

  .bs-card-content h3 {
    font-size: 28px;
  }

  .bs-card-content p {
    font-size: 14px;
  }

  .bs-small-card {
    flex-direction: column;
  }

  .bs-stats {
    grid-template-columns: 1fr;
  }

}

/* =========================
   LOGISTICS IMAGE CARD
========================= */

.bs-logistics-card {
  position: relative;
  min-height: 350px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* IMAGE */

.bs-logistics-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER */

.bs-logistics-card:hover img {
  transform: scale(1.06);
}

/* OVERLAY */

.bs-logistics-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.38),
      transparent);
}

/* CONTENT */

.bs-logistics-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px;
}

/* ICON */

.bs-logistics-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(31, 155, 255, 0.15);
  color: #1f9bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

/* SMALL TITLE */

.bs-logistics-content span {
  color: #66b8ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* TITLE */

.bs-logistics-content h3 {
  color: #fff;
  font-size: 34px;
  margin: 12px 0 15px;
}

/* TEXT */

.bs-logistics-content p {
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* POINTS */

.bs-logistics-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.bs-logistics-points span {
  padding: 10px 15px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bs-logistics-points span i {
  color: #1f9bff;
  margin-right: 6px;
}

/* BUTTON */

.bs-logistics-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  background: #1f9bff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.bs-logistics-btn:hover {
  background: #35a7ff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(31, 155, 255, 0.35);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .bs-logistics-content {
    padding: 24px;
  }

  .bs-logistics-content h3 {
    font-size: 28px;
  }

  .bs-logistics-content p {
    font-size: 14px;
  }

}

/* =========================
   LIFE SECTION
========================= */

/* =========================
   LIFE SECTION
========================= */

.life-section {
  padding: 70px 6%;
  background: #f5efe2;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */

.life-container {
  max-width: 1400px;
  margin: auto;
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* =========================
   VIDEO
========================= */

.life-video {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.life-video iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* =========================
   CONTENT
========================= */

.life-content {
  width: 100%;
}

/* MINI TITLE */

.life-mini-title {
  position: relative;
  display: inline-block;
  color: #ff6b00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding: 0 60px;
}

.life-mini-title::before,
.life-mini-title::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  background: #ff6b00;
  top: 50%;
}

.life-mini-title::before {
  left: 0;
}

.life-mini-title::after {
  right: 0;
}

/* TITLE */

.life-content h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #071133;
  margin-bottom: 18px;
  font-weight: 800;
  word-break: break-word;
}

.life-content h2 span {
  color: #ff6b00;
}

/* TEXT */

.life-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* =========================
   LIST
========================= */

.life-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */

.life-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* ICON */

.life-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff4eb;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* TEXT */

.life-item span {
  color: #222;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .life-content h2 {
    font-size: 42px;
  }

}

@media(max-width:992px) {

  .life-container {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .life-video iframe {
    height: 340px;
  }

}

@media(max-width:768px) {

  .life-section {
    padding: 60px 5%;
  }

  .life-container {
    padding: 22px;
    border-radius: 22px;
    gap: 28px;
  }

  .life-video iframe {
    height: 240px;
  }

  .life-content h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .life-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .life-item span {
    font-size: 15px;
  }

  .life-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .life-mini-title {
    padding: 0 45px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .life-mini-title::before,
  .life-mini-title::after {
    width: 32px;
  }

}

@media(max-width:480px) {

  .life-content h2 {
    font-size: 28px;
  }

  .life-video iframe {
    height: 200px;
  }

}


/* =========================
   MISSION VISION
========================= */

.mv-section {
  padding: 90px 6%;
  background: #f5efe2;
}

/* WRAPPER */

.mv-wrapper {
  max-width: 1600px;
  margin: auto;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

/* =========================
   LEFT
========================= */

.mv-left {
  position: relative;
  padding: 16px 60px;
  background: #fff;
}

/* DOTS */

.mv-dots {
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 8px;
  margin-bottom: 35px;
}

.mv-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb37d;
}

/* BOX */

.mv-box {
  display: flex;
  gap: 28px;
}

/* ICON */

.mv-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 38px;
}

.mv-icon.orange {
  background: #fff2e9;
  color: #ff6b00;
}

.mv-icon.blue {
  background: #edf4ff;
  color: #2d7fff;
}

/* SMALL TITLE */

.mv-small-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-right: 70px;
}



.orange-text {
  color: #ff6b00;
}

.orange-text::after {
  background: #ff6b00;
}

.blue-text {
  color: #2d7fff;
}

.blue-text::after {
  background: #2d7fff;
}

/* TITLE */

.mv-content h2 {
  font-size: 56px;
  color: #0b1d4d;
  margin-bottom: 18px;
  line-height: 1;
  font-weight: 800;
}

/* TEXT */

.mv-content p {
  color: #444;
  font-size: 14px;
  line-height: 1.9;
  max-width: 95%;
}

.ft-38 {
  font-size: 38px !important;
}

/* LINE */

.mv-line {
  width: 70px;
  height: 4px;
  border-radius: 20px;
  margin-top: 25px;
}

.orange-bg {
  background: #ff6b00;
}

.blue-bg {
  background: #2d7fff;
}

/* DIVIDER */

.mv-divider {
  width: 100%;
  height: 1px;
  background: #ececec;
  margin: 40px 0;
}

/* =========================
   STATS
========================= */

.mv-stats {
  margin-top: 45px;
  background: #f8f9fd;
  border-radius: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.mv-stat-box {
  padding: 30px 25px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}

.mv-stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25px;
  width: 1px;
  height: 65%;
  background: #ddd;
}

/* ICON */

.stat-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.blue-icon {
  background: #e8f1ff;
  color: #2d7fff;
}

.orange-icon {
  background: #fff2e9;
  color: #ff8a00;
}

.green-icon {
  background: #ebffea;
  color: #5bbf55;
}

/* TEXT */

.mv-stat-box h3 {
  font-size: 22px;
  color: #0b1d4d;
  margin-bottom: 5px;
  font-weight: 800;
}

.mv-stat-box p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   RIGHT
========================= */

.mv-right {
  position: relative;
  overflow: hidden;
}

/* IMAGE */

.mv-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.mv-image-content {
  position: absolute;
  top: 110px;
  left: 90px;
}

.mv-image-content h2 {
  color: #163b78;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

/* LINE */

.mv-image-line {
  width: 70px;
  height: 4px;
  border-radius: 20px;
  background: #ff6b00;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .mv-content h2 {
    font-size: 42px;
  }

  .mv-image-content h2 {
    font-size: 44px;
  }

}

@media(max-width:992px) {

  .mv-wrapper {
    grid-template-columns: 1fr;
  }

  .mv-right {
    min-height: 500px;
  }

}

@media(max-width:768px) {

  .mv-section {
    padding: 70px 5%;
  }

  .mv-left {
    padding: 30px 25px;
  }

  .mv-box {
    flex-direction: column;
    gap: 20px;
  }

  .mv-content h2 {
    font-size: 36px;
  }

  .mv-content p {
    font-size: 15px;
    max-width: 100%;
  }

  .mv-stats {
    grid-template-columns: 1fr;
  }

  .mv-stat-box:not(:last-child)::after {
    display: none;
  }

  .mv-image-content {
    top: 40px;
    left: 30px;
  }

  .mv-image-content h2 {
    font-size: 32px;
  }

  .mv-right {
    min-height: 320px;
  }

}

/* =========================================
   MINING SERVICES SECTION
========================================= */

.mining-services-section {
  position: relative;
  padding: 110px 6%;
  background: #ffffff;
  overflow: hidden;
  color: #111;
}

.mining-services-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(244, 180, 0, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  filter: blur(80px);
}

.ms-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
  z-index: 2;
}

.ms-left {
  flex: 1 1 580px;
}

.ms-subtitle {
  display: inline-block;
  color: #f4b400;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ms-left h2 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
  color: #111;
}

.ms-left h2 span {
  color: #f4b400;
}

.ms-left p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.ms-features {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ms-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ms-feature:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.ms-feature i {
  width: 65px;
  height: 65px;
  min-width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.12);
  border-radius: 16px;
  color: #f4b400;
  font-size: 26px;
}

.ms-feature h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.ms-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.ms-right {
  flex: 1 1 480px;
  position: relative;
}

.ms-right img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ms-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.ms-floating-card h3 {
  font-size: 40px;
  color: #f4b400;
  margin-bottom: 8px;
}

.ms-floating-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}



/* =========================================
   WHY CHOOSE US
========================================= */

.why-mining-section {
  padding: 110px 6%;
  background: #ffffff;
  color: #111;
  position: relative;
}

.why-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.why-heading span {
  color: #f4b400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
}

.why-heading h2 {
  font-size: 52px;
  line-height: 1.2;
  margin: 18px 0;
  color: #111;
}

.why-heading h2 span {
  color: #f4b400;
}

.why-heading p {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  padding: 40px 30px;
  transition: 0.4s ease;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #f4b400;
}

.why-card i {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(244, 180, 0, 0.12);
  color: #f4b400;
  font-size: 34px;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.why-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}



/* =========================================
   PROCESS SECTION
========================================= */

.process-section {
  padding: 110px 6%;
  background: #ffffff;
  color: #111;
  position: relative;
}

.process-heading {
  text-align: center;
  margin-bottom: 70px;
}

.process-heading span {
  color: #f4b400;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
}

.process-heading h2 {
  font-size: 52px;
  margin-top: 18px;
  color: #111;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  padding: 40px 30px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: #f4b400;
}

.process-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 55px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
}

.process-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #111;
}

.process-card p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:991px) {

  .ms-container {
    flex-direction: column;
  }

  .ms-left h2,
  .why-heading h2,
  .process-heading h2 {
    font-size: 42px;
  }

  .ms-right {
    width: 100%;
  }
}

@media(max-width:768px) {

  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .ms-left h2,
  .why-heading h2,
  .process-heading h2 {
    font-size: 34px;
  }

  .ms-feature {
    flex-direction: column;
  }

  .ms-floating-card {
    left: 15px;
    bottom: 15px;
    padding: 20px;
  }

  .ms-floating-card h3 {
    font-size: 30px;
  }
}

@media(max-width:600px) {

  .mining-services-section,
  .why-mining-section,
  .process-section {
    padding: 80px 5%;
  }

  .ms-left h2,
  .why-heading h2,
  .process-heading h2 {
    font-size: 30px;
  }

  .why-card,
  .process-card {
    padding: 30px 22px;
  }

  .ms-feature {
    padding: 22px;
  }
}

/* =========================================
   MINING INTRO SECTION
========================================= */

.mining-intro-section {
  position: relative;
  padding: 110px 6%;
  background: #ffffff;
  overflow: hidden;
}

.mining-intro-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(244, 180, 0, 0.06);
  border-radius: 50%;
  top: -200px;
  left: -120px;
  filter: blur(80px);
}

.mining-intro-container {
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.mining-intro-content {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 35px;
  padding: 70px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.mining-intro-content::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(244, 180, 0, 0.08);
  border-radius: 50%;
  right: -120px;
  bottom: -120px;
}

.intro-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f4b400;
  margin-bottom: 18px;
  text-transform: uppercase;
  position: relative;
  padding-left: 60px;
}

.intro-subtitle::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  background: #f4b400;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mining-intro-content h2 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  max-width: 850px;
}

.mining-intro-content h2 span {
  color: #f4b400;
}

.intro-text {
  font-size: 17px;
  line-height: 2;
  color: #555;
  margin-bottom: 24px;
  max-width: 1200px;
}

/* STATS */

.intro-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.intro-stat-box {
  flex: 1 1 220px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 35px 30px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.intro-stat-box::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(244, 180, 0, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.intro-stat-box:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.intro-stat-box h3 {
  font-size: 48px;
  color: #f4b400;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.intro-stat-box p {
  font-size: 16px;
  color: #555;
  position: relative;
  z-index: 2;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .mining-intro-content h2 {
    font-size: 52px;
  }
}

@media(max-width:991px) {

  .mining-intro-content {
    padding: 55px 40px;
  }

  .mining-intro-content h2 {
    font-size: 44px;
  }
}

@media(max-width:768px) {

  .mining-intro-section {
    padding: 80px 5%;
  }

  .mining-intro-content {
    padding: 45px 28px;
    border-radius: 24px;
  }

  .mining-intro-content h2 {
    font-size: 34px;
  }

  .intro-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .intro-stat-box {
    padding: 28px 24px;
  }

  .intro-stat-box h3 {
    font-size: 38px;
  }
}

@media(max-width:500px) {

  .intro-subtitle {
    font-size: 13px;
    padding-left: 45px;
  }

  .intro-subtitle::before {
    width: 35px;
  }

  .mining-intro-content h2 {
    font-size: 30px;
  }

  .intro-stats {
    gap: 20px;
  }
}

/* =========================================
   MODERN MINING SERVICES DESIGN
========================================= */

.mining-services-section {
  padding: 100px 6%;
  background: #ffffff;
  overflow: hidden;
}

.ms-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 50px;
  align-items: center;
}

/* =========================================
   LEFT SIDE
========================================= */

.ms-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ms-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ececec;
  transition: 0.4s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.ms-feature::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(244, 180, 0, 0.08),
      transparent);
  left: 0;
  top: 0;
  transition: 0.5s ease;
}

.ms-feature:hover::before {
  width: 100%;
}

.ms-feature:hover {
  transform: translateY(-6px);
  border-color: #f4b400;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.ms-feature i {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 22px;
  background: #fff7df;
  color: #f4b400;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

.ms-feature:hover i {
  background: #f4b400;
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.ms-feature h4 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.ms-feature p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  max-width: 650px;
  position: relative;
  z-index: 2;
}

/* =========================================
   RIGHT SIDE IMAGE
========================================= */

.ms-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-right::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(244, 180, 0, 0.10);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.ms-right img {
  width: 100%;
  max-width: 520px;
  height: 720px;
  object-fit: cover;
  border-radius: 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* FLOATING CARD */

.ms-floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 35px 40px;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.ms-floating-card h3 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  color: #f4b400;
  font-weight: 800;
}

.ms-floating-card p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .ms-container {
    grid-template-columns: 1fr;
  }

  .ms-right {
    margin-top: 40px;
  }

  .ms-right img {
    height: 620px;
  }
}

@media(max-width:768px) {

  .mining-services-section {
    padding: 80px 5%;
  }

  .ms-feature {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .ms-feature h4 {
    font-size: 26px;
  }

  .ms-feature p {
    font-size: 15px;
  }

  .ms-right img {
    height: 500px;
    border-radius: 24px;
  }

  .ms-floating-card {
    left: 15px;
    bottom: 15px;
    padding: 25px;
  }

  .ms-floating-card h3 {
    font-size: 42px;
  }

  .ms-floating-card p {
    font-size: 15px;
  }
}

@media(max-width:500px) {

  .ms-feature i {
    width: 68px;
    height: 68px;
    min-width: 68px;
    font-size: 24px;
  }

  .ms-feature h4 {
    font-size: 22px;
  }

  .ms-right img {
    height: 420px;
  }
}

/* =========================================
   CSR INTRO SECTION
========================================= */

.csr-intro-section {
  padding: 110px 6%;
  background: #fff;
}

.csr-intro-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.csr-subtitle {
  display: inline-block;
  color: #f4b400;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.csr-intro-left h2 {
  font-size: 60px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 30px;
}

.csr-intro-left h2 span {
  color: #f4b400;
}

.csr-intro-left p {
  color: #666;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 20px;
}

.csr-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.csr-point {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px 22px;
  transition: 0.4s;
}

.csr-point:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

.csr-point i {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.csr-point span {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

.csr-intro-right {
  position: relative;
}

.csr-intro-right img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.csr-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.csr-badge h3 {
  font-size: 60px;
  color: #f4b400;
  margin-bottom: 10px;
}

.csr-badge p {
  color: #555;
  font-size: 18px;
}



/* =========================================
   COMMON HEADING
========================================= */

.csr-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.csr-heading span {
  color: #f4b400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
}

.csr-heading h2 {
  font-size: 54px;
  color: #111;
  margin: 18px 0;
  line-height: 1.2;
}

.csr-heading h2 span {
  color: #f4b400;
}

.csr-heading p {
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}



/* =========================================
   CSR INITIATIVE SECTION
========================================= */

.csr-initiative-section {
  padding: 110px 6%;
  background: #fafafa;
}

.csr-initiative-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.csr-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 45px 35px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.csr-card:hover {
  transform: translateY(-10px);
  border-color: #f4b400;
}

.csr-icon {
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: #fff7df;
  color: #f4b400;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.csr-card h3 {
  font-size: 28px;
  color: #111;
  margin-bottom: 18px;
}

.csr-card p {
  color: #666;
  line-height: 1.9;
  font-size: 16px;
}



/* =========================================
   CSR IMPACT SECTION
========================================= */

.csr-impact-section {
  padding: 110px 6%;
  background: #fff;
}

.csr-impact-container {
  max-width: 1450px;
  margin: auto;
}

.csr-impact-content {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.csr-impact-content span {
  color: #f4b400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 14px;
}

.csr-impact-content h2 {
  font-size: 54px;
  line-height: 1.2;
  margin: 20px 0;
  color: #111;
}

.csr-impact-content h2 span {
  color: #f4b400;
}

.csr-impact-content p {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

.csr-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.impact-box {
  background: linear-gradient(135deg, #fff7df, #ffffff);
  border-radius: 28px;
  padding: 50px 30px;
  text-align: center;
  border: 1px solid #ececec;
  transition: 0.4s;
}

.impact-box:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.impact-box h3 {
  font-size: 58px;
  color: #f4b400;
  margin-bottom: 15px;
}

.impact-box p {
  font-size: 18px;
  color: #444;
}



/* =========================================
   CSR GALLERY
========================================= */

.csr-gallery-section {
  padding: 110px 6%;
  background: #fafafa;
}

.csr-gallery-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .csr-intro-container,
  .csr-initiative-grid,
  .csr-impact-grid,
  .csr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:991px) {

  .csr-intro-container {
    grid-template-columns: 1fr;
  }

  .csr-intro-left h2,
  .csr-heading h2,
  .csr-impact-content h2 {
    font-size: 42px;
  }

  .csr-intro-right img {
    height: 550px;
  }
}

@media(max-width:768px) {

  .csr-intro-section,
  .csr-initiative-section,
  .csr-impact-section,
  .csr-gallery-section {
    padding: 80px 5%;
  }

  .csr-initiative-grid,
  .csr-impact-grid,
  .csr-gallery-grid,
  .csr-points {
    grid-template-columns: 1fr;
  }

  .csr-intro-left h2,
  .csr-heading h2,
  .csr-impact-content h2 {
    font-size: 34px;
  }

  .csr-card {
    padding: 35px 28px;
  }

  .impact-box {
    padding: 40px 25px;
  }

  .gallery-item img {
    height: 300px;
  }

  .csr-badge {
    left: 15px;
    bottom: 15px;
    padding: 25px;
  }

  .csr-badge h3 {
    font-size: 42px;
  }
}

/* =========================================
   CSR SECTION HEADING - PREMIUM STYLE
========================================= */

.csr-heading {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}

.csr-heading span {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f4b400;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding: 0 70px;
}

.csr-heading span::before,
.csr-heading span::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #f4b400;
  top: 50%;
  transform: translateY(-50%);
}

.csr-heading span::before {
  left: 0;
}

.csr-heading span::after {
  right: 0;
}

.csr-heading h2 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.csr-heading h2 span {
  color: #f4b400;
  padding: 0;
  margin: 0;
  display: inline;
  font-size: inherit;
  letter-spacing: inherit;
}

.csr-heading h2 span::before,
.csr-heading h2 span::after {
  display: none;
}

.csr-heading p {
  max-width: 900px;
  margin: auto;
  font-size: 20px;
  line-height: 1.9;
  color: #666;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .csr-heading h2 {
    font-size: 52px;
    line-height: 1.2;
  }

  .csr-heading p {
    font-size: 17px;
  }
}

@media(max-width:768px) {

  .csr-heading {
    margin-bottom: 60px;
  }

  .csr-heading span {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 0 50px;
  }

  .csr-heading span::before,
  .csr-heading span::after {
    width: 35px;
  }

  .csr-heading h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .csr-heading p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media(max-width:500px) {

  .csr-heading h2 {
    font-size: 30px;
  }

  .csr-heading span {
    font-size: 12px;
    padding: 0 40px;
  }

  .csr-heading span::before,
  .csr-heading span::after {
    width: 25px;
  }
}

/* =========================================
   CSR IMPACT CONTENT DESIGN
========================================= */

.csr-impact-content {
  max-width: 1150px;
  margin: auto;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}

.csr-impact-content span {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f4b400;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding: 0 70px;
}

.csr-impact-content span::before,
.csr-impact-content span::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #f4b400;
  top: 50%;
  transform: translateY(-50%);
}

.csr-impact-content span::before {
  left: 0;
}

.csr-impact-content span::after {
  right: 0;
}

.csr-impact-content h2 {
  font-size: 74px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.csr-impact-content h2 span {
  display: inline;
  color: #f4b400;
  font-size: inherit;
  padding: 0;
  margin: 0;
  letter-spacing: inherit;
}

.csr-impact-content h2 span::before,
.csr-impact-content h2 span::after {
  display: none;
}

.csr-impact-content p {
  max-width: 980px;
  margin: auto;
  font-size: 21px;
  line-height: 2;
  color: #666;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .csr-impact-content h2 {
    font-size: 54px;
    line-height: 1.2;
  }

  .csr-impact-content p {
    font-size: 17px;
  }
}

@media(max-width:768px) {

  .csr-impact-content {
    margin-bottom: 60px;
  }

  .csr-impact-content span {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 0 50px;
  }

  .csr-impact-content span::before,
  .csr-impact-content span::after {
    width: 35px;
  }

  .csr-impact-content h2 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .csr-impact-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media(max-width:500px) {

  .csr-impact-content h2 {
    font-size: 30px;
  }

  .csr-impact-content span {
    font-size: 12px;
    padding: 0 40px;
  }

  .csr-impact-content span::before,
  .csr-impact-content span::after {
    width: 25px;
  }
}

/* =========================================
   COMMON
========================================= */

.investor-overview-section,
.investor-highlight-section,
.investor-stats-section,
.investor-values-section {
  padding: 100px 6%;
  background: #fff;
}

.investor-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.investor-heading span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.investor-heading h2 {
  font-size: 42px;
  color: #111;
  margin: 18px 0;
  line-height: 1.2;
  font-weight: 700;
}

.investor-heading p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================
   OVERVIEW
========================================= */

.investor-overview-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.inv-tag {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.investor-left h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.investor-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 18px;
}

.investor-feature-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.investor-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: #fafafa;
  border: 1px solid #ececec;
  transition: 0.4s;
}

.investor-feature:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

.investor-feature i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.investor-feature h4 {
  font-size: 20px;
  color: #111;
  margin-bottom: 8px;
}

.investor-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.investor-right {
  position: relative;
}

.investor-right img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.investor-floating-box {
  position: absolute;
  bottom: 25px;
  left: -30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.investor-floating-box h3 {
  font-size: 52px;
  color: #f4b400;
  margin-bottom: 10px;
}

.investor-floating-box p {
  color: #555;
  font-size: 16px;
}

/* =========================================
   HIGHLIGHTS
========================================= */

.investor-highlight-section {
  background: #fafafa;
}

.investor-highlight-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.highlight-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 26px;
  padding: 40px 30px;
  transition: 0.4s;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.highlight-card i {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.highlight-card h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 15px;
}

.highlight-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   STATS
========================================= */

.investor-stats-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stats-box {
  background: linear-gradient(135deg, #fff7df, #fff);
  border-radius: 26px;
  padding: 45px 30px;
  text-align: center;
  border: 1px solid #ececec;
  transition: 0.4s;
}

.stats-box:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.stats-box h3 {
  font-size: 48px;
  color: #f4b400;
  margin-bottom: 10px;
}

.stats-box p {
  font-size: 16px;
  color: #555;
}

/* =========================================
   VALUES
========================================= */

.investor-values-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.values-left span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.values-left h2 {
  font-size: 42px;
  color: #111;
  line-height: 1.2;
  margin: 18px 0;
}

.values-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

.values-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.value-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 35px 28px;
  transition: 0.4s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #f4b400;
}

.value-card h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.value-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .investor-highlight-grid,
  .investor-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .investor-values-container {
    grid-template-columns: 1fr;
  }
}

@media(max-width:991px) {

  .investor-overview-container {
    grid-template-columns: 1fr;
  }

  .investor-right img {
    height: 550px;
  }

  .investor-left h2,
  .investor-heading h2,
  .values-left h2 {
    font-size: 34px;
  }
}

@media(max-width:768px) {

  .investor-overview-section,
  .investor-highlight-section,
  .investor-stats-section,
  .investor-values-section {
    padding: 80px 5%;
  }

  .investor-highlight-grid,
  .investor-stats-container,
  .values-right {
    grid-template-columns: 1fr;
  }

  .investor-right img {
    height: 420px;
  }

  .investor-floating-box {
    left: 15px;
    bottom: 15px;
    padding: 22px;
  }

  .investor-floating-box h3 {
    font-size: 38px;
  }

  .highlight-card,
  .value-card {
    padding: 30px 24px;
  }
}



/* =========================================
   GALLERY INTRO
========================================= */

.gallery-intro-section {
  padding: 100px 6% 60px;
  background: #fff;
}

.gallery-intro-container {
  max-width: 950px;
  margin: auto;
  text-align: center;
}

.gallery-tag {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gallery-intro-container h2 {
  font-size: 46px;
  color: #111;
  line-height: 1.2;
  margin-bottom: 22px;
}

.gallery-intro-container p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
}

/* =========================================
   FILTER BUTTONS
========================================= */

.gallery-filter-section {
  padding: 0 6% 70px;
  background: #fff;
}

.gallery-filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-filter-container button {
  border: 1px solid #ececec;
  background: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.gallery-filter-container button:hover,
.gallery-filter-container button.active {
  background: #f4b400;
  color: #fff;
  border-color: #f4b400;
}

/* =========================================
   GALLERY GRID
========================================= */

.main-gallery-section {
  padding: 0 6% 100px;
  background: #fff;
}

.main-gallery-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 25px;
}

.gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
}

.gallery-box.large {
  grid-row: span 2;
}

.gallery-box.wide {
  grid-column: span 2;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-box:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.gallery-overlay span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
}

/* =========================================
   GALLERY STATS
========================================= */

.gallery-stats-section {
  padding: 100px 6%;
  background: #fafafa;
}

.gallery-stats-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-stat-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 26px;
  padding: 45px 30px;
  text-align: center;
  transition: 0.4s;
}

.gallery-stat-box:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.gallery-stat-box h3 {
  font-size: 42px;
  color: #f4b400;
  margin-bottom: 12px;
}

.gallery-stat-box p {
  color: #555;
  font-size: 16px;
}

/* =========================================
   VIDEO SECTION
========================================= */

.video-gallery-section {
  padding: 100px 6%;
  background: #fff;
}

.video-gallery-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.video-left span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-left h2 {
  font-size: 42px;
  color: #111;
  line-height: 1.2;
  margin: 18px 0;
}

.video-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border-radius: 50px;
  background: #f4b400;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.video-btn:hover {
  transform: translateY(-4px);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.video-thumbnail img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4b400;
  font-size: 28px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .gallery-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-gallery-container {
    grid-template-columns: 1fr;
  }
}

@media(max-width:991px) {

  .main-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-intro-container h2,
  .video-left h2 {
    font-size: 36px;
  }
}

@media(max-width:768px) {

  .gallery-intro-section,
  .main-gallery-section,
  .gallery-stats-section,
  .video-gallery-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .main-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-box.large,
  .gallery-box.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-stats-container {
    grid-template-columns: 1fr;
  }

  .gallery-intro-container h2,
  .video-left h2 {
    font-size: 30px;
  }

  .video-thumbnail img {
    height: 400px;
  }

  .gallery-overlay h3 {
    font-size: 20px;
  }
}

/* SMOOTH FILTER ANIMATION */

.gallery-box {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* =========================================
   COMMON
========================================= */

.contact-intro-section,
.contact-info-section,
.contact-form-section,
.contact-map-section,
.contact-faq-section {
  padding: 100px 6%;
  background: #fff;
}

/* =========================================
   INTRO
========================================= */

.contact-intro-container {
  max-width: 950px;
  margin: auto;
  text-align: center;
}

.contact-tag {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-intro-content h2 {
  font-size: 46px;
  color: #111;
  line-height: 1.2;
  margin-bottom: 22px;
}

.contact-intro-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

/* =========================================
   CONTACT INFO
========================================= */

.contact-info-section {
  padding-top: 0;
}

.contact-info-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: auto;
  margin-bottom: 25px;
}

.contact-card h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 15px;
}

.contact-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   FORM SECTION
========================================= */

.contact-form-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-left span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-left h2 {
  font-size: 42px;
  color: #111;
  line-height: 1.2;
  margin: 18px 0;
}

.contact-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #444;
  font-size: 16px;
}

.contact-point i {
  color: #f4b400;
}

.contact-right {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 32px;
  padding: 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 15px 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f4b400;
}

.contact-btn-submit {
  border: none;
  background: #f4b400;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.contact-btn-submit:hover {
  transform: translateY(-4px);
}

/* =========================================
   MAP
========================================= */

.contact-map-section {
  background: #fafafa;
}

.map-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.map-heading span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.map-heading h2 {
  font-size: 42px;
  color: #111;
  margin: 18px 0;
}

.map-heading p {
  color: #666;
  line-height: 1.9;
}

.map-box {
  overflow: hidden;
  border-radius: 32px;
}

.map-box iframe {
  width: 100%;
  height: 550px;
  border: 0;
}

/* =========================================
   FAQ
========================================= */

.faq-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.faq-left span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-left h2 {
  font-size: 42px;
  color: #111;
  margin: 18px 0;
  line-height: 1.2;
}

.faq-left p {
  color: #666;
  line-height: 1.9;
}

.faq-item {
  border: 1px solid #ececec;
  border-radius: 22px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.faq-item.active {
  border-color: #f4b400;
}

.faq-question {
  width: 100%;
  border: none;
  background: #fff;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.faq-question i {
  color: #f4b400;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  background: #fafafa;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .contact-info-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-container,
  .faq-container {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {

  .contact-intro-section,
  .contact-info-section,
  .contact-form-section,
  .contact-map-section,
  .contact-faq-section {
    padding: 80px 5%;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro-content h2,
  .contact-left h2,
  .map-heading h2,
  .faq-left h2 {
    font-size: 32px;
  }

  .contact-right {
    padding: 30px 24px;
  }

  .map-box iframe {
    height: 400px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}


/* =========================================
   PREMIUM CONTACT FORM SECTION
========================================= */

.contact-form-section {
  position: relative;
  padding: 120px 6%;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #fafafa 100%);
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(244, 180, 0, 0.08);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(80px);
}

.contact-form-container {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.contact-left {
  position: relative;
}

.contact-left span {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-left: 55px;
}

.contact-left span::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #f4b400;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact-left h2 {
  font-size: 58px;
  line-height: 1.1;
  color: #111;
  margin-bottom: 28px;
  font-weight: 700;
}

.contact-left p {
  font-size: 18px;
  line-height: 2;
  color: #666;
  max-width: 520px;
  margin-bottom: 40px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ececec;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  transition: 0.4s;
}

.contact-point:hover {
  transform: translateX(8px);
  border-color: #f4b400;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-point i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-point span {
  padding: 0;
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-point span::before {
  display: none;
}

/* =========================================
   FORM BOX
========================================= */

.contact-right {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 36px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-right::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(244, 180, 0, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: 0.4s;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* BUTTON */

.contact-btn-submit {
  border: none;
  background: linear-gradient(135deg,
      #f4b400,
      #ffcc29);
  color: #fff;
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(244, 180, 0, 0.25);
}

.contact-btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left p {
    margin: auto;
    margin-bottom: 35px;
  }

  .contact-left span {
    padding-left: 0;
  }

  .contact-left span::before {
    display: none;
  }
}

@media(max-width:768px) {

  .contact-form-section {
    padding: 90px 5%;
  }

  .contact-left h2 {
    font-size: 38px;
  }

  .contact-left p {
    font-size: 16px;
    line-height: 1.9;
  }

  .contact-right {
    padding: 35px 24px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-btn-submit {
    width: 100%;
  }

  .contact-point {
    padding: 16px;
  }
}

@media(max-width:500px) {

  .contact-left h2 {
    font-size: 30px;
  }

  .contact-point span {
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 16px;
  }
}

/* =========================================
   COMPANY OVERVIEW
========================================= */

.company-overview-section {
  padding: 110px 6%;
  background: #fff;
}

.company-overview-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
}

.overview-tag {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.overview-left h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.overview-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.overview-feature-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 18px 22px;
  transition: 0.4s;
}

.overview-feature:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

.overview-feature i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.overview-feature span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.overview-right {
  position: relative;
}

.overview-right img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.overview-floating-box {
  position: absolute;
  left: -30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.overview-floating-box h3 {
  font-size: 52px;
  color: #f4b400;
  margin-bottom: 8px;
}

.overview-floating-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   WHO WE ARE SECTION
========================================= */

.why-choose-section {
  position: relative;
  padding: 120px 6%;
  background: linear-gradient(to bottom, #f8f8f8, #ffffff);
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(244, 180, 0, 0.06);
  border-radius: 50%;
}

.why-choose-heading {
  text-align: center;
  max-width: 980px;
  margin: auto;
  margin-bottom: 75px;
  position: relative;
  z-index: 2;
}

.why-choose-heading span {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}

.why-choose-heading span::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #f4b400;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.why-choose-heading h2 {
  font-size: 52px;
  line-height: 1.2;
  color: #111;
  font-weight: 700;
  letter-spacing: -1px;
}

.why-choose-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: #fff;
  border-radius: 30px;
  padding: 45px 35px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #ececec;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f4b400, transparent);
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #f4b400;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.why-card:hover::before {
  opacity: 0.05;
}

.why-card h3 {
  position: relative;
  z-index: 2;
  font-size: 30px;
  line-height: 1.35;
  color: #111;
  font-weight: 700;
  margin: 0;
}

.why-bottom-text {
  max-width: 1200px;
  margin: 70px auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-bottom-text p {
  font-size: 20px;
  line-height: 1.9;
  color: #555;
  font-weight: 400;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-heading h2 {
    font-size: 42px;
  }

}

@media (max-width: 768px) {

  .why-choose-section {
    padding: 90px 5%;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-choose-heading {
    margin-bottom: 50px;
  }

  .why-choose-heading h2 {
    font-size: 32px;
    line-height: 1.35;
  }

  .why-card {
    min-height: 180px;
    padding: 35px 25px;
    border-radius: 24px;
  }

  .why-card h3 {
    font-size: 24px;
  }

  .why-bottom-text p {
    font-size: 16px;
    line-height: 1.8;
  }

}
/* =========================================
   JOURNEY SECTION
========================================= */

.journey-section {
  padding: 110px 6%;
  background: #fff;
}

.journey-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.journey-left span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.journey-left h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #111;
  margin: 18px 0;
}

.journey-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

.journey-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.journey-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 30px;
  transition: 0.4s;
}

.journey-card:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

.journey-year {
  min-width: 90px;
  height: 90px;
  border-radius: 20px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.journey-card h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 12px;
}

.journey-card p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .company-overview-container,
  .journey-container {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  .company-overview-section,
  .why-choose-section,
  .journey-section {
    padding: 80px 5%;
  }

  .overview-left h2,
  .why-choose-heading h2,
  .journey-left h2 {
    font-size: 34px;
  }

  .overview-feature-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .overview-right img {
    height: 450px;
  }

  .overview-floating-box {
    left: 15px;
    bottom: 15px;
    padding: 22px;
  }

  .journey-card {
    flex-direction: column;
  }
}

/* =========================================
   COMPANY OVERVIEW
========================================= */

.company-overview-section {
  padding: 110px 6%;
  background: #fff;
}

.company-overview-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
}

.overview-tag {
  display: inline-block;
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.overview-left h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.overview-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.overview-feature-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 18px 22px;
  transition: 0.4s;
}

.overview-feature:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

.overview-feature i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.overview-feature span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.overview-right {
  position: relative;
}

.overview-right img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.overview-floating-box {
  position: absolute;
  left: -30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.overview-floating-box h3 {
  font-size: 52px;
  color: #f4b400;
  margin-bottom: 8px;
}

.overview-floating-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose-section {
  padding: 110px 6%;
  background: #fafafa;
}

.why-choose-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.why-choose-heading span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-choose-heading h2 {
    font-size: 28px;
    color: #111;
    margin: 18px 0;
}

.why-choose-heading p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

.why-choose-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 40px 30px;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #f4b400;
}

.why-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.why-card h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 15px;
}

.why-card p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

/* =========================================
   JOURNEY SECTION
========================================= */

.journey-section {
  padding: 110px 6%;
  background: #fff;
}

.journey-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.journey-left span {
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.journey-left h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #111;
  margin: 18px 0;
}

.journey-left p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

.journey-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.journey-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 30px;
  transition: 0.4s;
}

.journey-card:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

.journey-year {
  min-width: 90px;
  height: 90px;
  border-radius: 20px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.journey-card h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 12px;
}

.journey-card p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .company-overview-container,
  .journey-container {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  .company-overview-section,
  .why-choose-section,
  .journey-section {
    padding: 80px 5%;
  }

  .overview-left h2,
  .why-choose-heading h2,
  .journey-left h2 {
    font-size: 34px;
  }

  .overview-feature-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .overview-right img {
    height: 450px;
  }

  .overview-floating-box {
    left: 15px;
    bottom: 15px;
    padding: 22px;
  }

  .journey-card {
    flex-direction: column;
  }
}

/* =========================================
   JOURNEY LEFT CONTENT EXTRA DESIGN
========================================= */

.journey-text {
  margin-bottom: 22px !important;
}

/* HIGHLIGHTS */

.journey-highlight-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.journey-highlight {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 22px;
  transition: 0.4s;
}

.journey-highlight:hover {
  transform: translateX(8px);
  border-color: #f4b400;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.journey-highlight-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 18px;
  background: #fff7df;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.journey-highlight h4 {
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
}

.journey-highlight p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px) {

  .journey-highlight {
    padding: 18px;
  }

  .journey-highlight h4 {
    font-size: 18px;
  }

  .journey-highlight p {
    font-size: 14px;
  }

  .journey-highlight-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 20px;
  }
}

/* =========================================
   NAV ICONS
========================================= */

.nav ul li a i {
  margin-right: 8px;
  font-size: 14px;
}

/* DROPDOWN ICON */

.dropdown-icon {
  margin-left: 8px;
  font-size: 12px !important;
  transition: 0.3s;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* CONTACT BUTTON ICON */

.contact-btn a i {
  margin-right: 10px;
  font-size: 14px;
}

.geo-container {
  width: 90%;
  margin: auto;
}

.geo-about {
  padding: 100px 0;
  background: #fff;
}

.geo-about .geo-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.geo-left {
  flex: 1;
}

.geo-left img {
  width: 100%;
  border-radius: 20px;
  height: 550px;
  object-fit: cover;
}

.geo-right {
  flex: 1;
}

.geo-tag {
  display: inline-block;
  background: #f0f7ff;
  color: #10b8c8;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.geo-right h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

.geo-right p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.geo-points {
  margin-top: 30px;
}

.geo-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.geo-item i {
  width: 60px;
  height: 60px;
  background: #10b8c8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.geo-item h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.geo-services {
  padding: 100px 0;
  background: #f8f9fb;
}

.section-title-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-center span {
  color: #10b8c8;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title-center h2 {
  font-size: 42px;
  margin-top: 10px;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.geo-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.geo-card:hover {
  transform: translateY(-10px);
}

.geo-card i {
  font-size: 45px;
  color: #10b8c8;
  margin-bottom: 25px;
}

.geo-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.geo-card p {
  color: #666;
  line-height: 1.7;
}

.work-process {
  padding: 100px 0;
  background: #fff;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-box {
  background: #0d1117;
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.process-number {
  font-size: 70px;
  font-weight: 800;
  opacity: 0.1;
  position: absolute;
  right: 20px;
  top: 10px;
}

.process-box h3 {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.process-box p {
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

.geo-stats {
  padding: 80px 0;
  background: linear-gradient(to right, #003366, #c9a24a);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-box {
  color: #fff;
}

.stats-box h2 {
  font-size: 55px;
  margin-bottom: 10px;
  color: #000;
}

.stats-box p {
  font-size: 18px;
}

@media(max-width:991px) {

  .geo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .geo-right h2 {
    font-size: 34px;
  }
}

@media(max-width:767px) {

  .geo-grid,
  .process-wrapper,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .geo-right h2,
  .section-title-center h2 {
    font-size: 28px;
  }

  .geo-left img {
    height: auto;
  }
}

.rr-container {
  width: 90%;
  margin: auto;
}

.rr-about {
  padding: 100px 0;
  background: #fff;
}

.rr-about .rr-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.rr-left,
.rr-right {
  flex: 1;
}

.rr-right img {
  width: 100%;
  border-radius: 25px;
  height: 650px;
  object-fit: cover;
}

.rr-tag {
  display: inline-block;
  background: #eef5ff;
  color: #10b8c8;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.rr-left h2 {
  font-size: 46px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.rr-left p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.rr-feature-wrap {
  margin-top: 35px;
}

.rr-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.rr-feature i {
  width: 65px;
  height: 65px;
  background: #10b8c8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.rr-feature h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.rr-services {
  padding: 100px 0;
  background: #f7f9fc;
}

.rr-title-center {
  text-align: center;
  margin-bottom: 60px;
}

.rr-title-center span {
  color: #10b8c8;
  font-weight: 700;
  text-transform: uppercase;
}

.rr-title-center h2 {
  font-size: 42px;
  margin-top: 10px;
}

.rr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rr-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 22px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.rr-card:hover {
  transform: translateY(-10px);
}

.rr-card i {
  font-size: 48px;
  color: #10b8c8;
  margin-bottom: 25px;
}

.rr-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.rr-card p {
  color: #666;
  line-height: 1.8;
}

.rr-impact {
  position: relative;
  padding: 140px 0;
  background: url('../img/slide1.jpg') center/cover no-repeat;
}

.rr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.rr-impact-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: #fff;
}

.rr-impact-content span {
  color: #4da3ff;
  font-weight: 700;
  text-transform: uppercase;
}

.rr-impact-content h2 {
  font-size: 52px;
  line-height: 1.3;
  margin: 20px 0;
}

.rr-impact-content p {
  line-height: 1.9;
  margin-bottom: 35px;
  color: #ddd;
}

.rr-btn {
  display: inline-block;
  background: #10b8c8;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.rr-btn:hover {
  background: #fff;
  color: #10b8c8;
}

.rr-process {
  padding: 100px 0;
  background: #fff;
}

.rr-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.rr-process-box {
  background: #0f172a;
  color: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.rr-number {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 70px;
  font-weight: 800;
  opacity: 0.08;
}

.rr-process-box h3 {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.rr-process-box p {
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.rr-stats {
  padding: 90px 0;
  background: linear-gradient(to right, #003366, #10b8c8);
}

.rr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.rr-stat-box {
  color: #fff;
}

.rr-stat-box h2 {
  font-size: 58px;
  margin-bottom: 10px;
}

.rr-stat-box p {
  font-size: 18px;
}

@media(max-width:991px) {

  .rr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rr-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rr-left h2,
  .rr-impact-content h2 {
    font-size: 34px;
  }
}

@media(max-width:767px) {

  .rr-grid,
  .rr-process-grid,
  .rr-stats-grid {
    grid-template-columns: 1fr;
  }

  .rr-right img {
    height: auto;
  }

  .rr-left h2,
  .rr-impact-content h2,
  .rr-title-center h2 {
    font-size: 28px;
  }

  .rr-about {
    padding: 70px 0;
  }
}

.stat-container {
  width: 90%;
  margin: auto;
}

.stat-about {
  padding: 100px 0;
  background: #fff;
}

.stat-about .stat-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-left,
.stat-right {
  flex: 1;
}

.stat-left img,
.why-right img {
  width: 100%;
  border-radius: 25px;
  height: 650px;
  object-fit: cover;
}

.stat-tag {
  display: inline-block;
  background: #eef4ff;
  color: #0056b3;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stat-right h2,
.why-left h2 {
  font-size: 46px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.stat-right p,
.why-left p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.stat-feature-wrap {
  margin-top: 35px;
}

.stat-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.stat-feature i {
  width: 65px;
  height: 65px;
  background: #0056b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.stat-feature h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.stat-services {
  padding: 100px 0;
  background: #f8f9fc;
}

.stat-title {
  text-align: center;
  margin-bottom: 60px;
}

.stat-title span,
.why-left span {
  color: #0056b3;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-title h2 {
  font-size: 42px;
  margin-top: 10px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 22px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card i {
  font-size: 48px;
  color: #0056b3;
  margin-bottom: 25px;
}

.stat-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.stat-card p {
  color: #666;
  line-height: 1.8;
}

.stat-timeline {
  padding: 100px 0;
  background: #fff;
}

.timeline-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.timeline-box {
  background: #0f172a;
  color: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.timeline-number {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 70px;
  font-weight: 800;
  opacity: 0.08;
}

.timeline-box h3 {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.timeline-box p {
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.why-stat {
  padding: 100px 0;
  background: #f7f9fc;
}

.why-stat .stat-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.why-left,
.why-right {
  flex: 1;
}

.why-left ul {
  margin-top: 30px;
}

.why-left ul li {
  list-style: none;
  margin-bottom: 18px;
  font-size: 18px;
  color: #222;
}

.why-left ul li i {
  color: #0056b3;
  margin-right: 10px;
}

.stat-stats {
  padding: 90px 0;
  background: linear-gradient(to right, #003366, #0056b3);
}

.stat-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  color: #fff;
}

.stat-box h2 {
  font-size: 58px;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
}

@media(max-width:991px) {

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-right h2,
  .why-left h2 {
    font-size: 34px;
  }
}

@media(max-width:767px) {

  .stat-grid,
  .timeline-wrap,
  .stat-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-left img,
  .why-right img {
    height: auto;
  }

  .stat-right h2,
  .why-left h2,
  .stat-title h2 {
    font-size: 28px;
  }

  .stat-about,
  .why-stat {
    padding: 70px 0;
  }
}

/* ============================= */
/* SERVICE DETAILS */
/* ============================= */

.service-details {
  padding: 100px 8%;
  background: #fff;
}

.service-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.service-left {
  flex: 1;
  min-width: 300px;
}

.service-tag,
.section-tag {
  display: inline-block;
  background: #f4f4f4;
  color: #c28b00;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-left h2,
.why-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111;
}

.service-left p,
.why-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 16px;
}

.service-points {
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.point i {
  color: #c28b00;
  font-size: 18px;
}

.point span {
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

.service-right {
  flex: 1;
  min-width: 300px;
}

.service-right img,
.why-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* SERVICE CARDS */
/* ============================= */

.service-card-section {
  padding: 50px 8% 100px;
  background: #f9f9f9;
}

.service-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 50px;
  color: #c28b00;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

/* ============================= */
/* WHY CHOOSE US */
/* ============================= */

.why-choose-section {
  padding: 100px 8%;
  background: #fff;
}

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.why-image,
.why-content {
  flex: 1;
  min-width: 300px;
}

.why-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.why-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #f9f9f9;
}

.why-box i {
  font-size: 35px;
  color: #c28b00;
}

.why-box h4 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #111;
}

/* ============================= */
/* PROCESS SECTION */
/* ============================= */

.process-section {
  padding: 100px 8%;
  background: #f9f9f9;
}

.section-title-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-center h2 {
  font-size: 46px;
  color: #111;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.process-box:hover {
  transform: translateY(-10px);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #eee;
}

.process-box i {
  font-size: 50px;
  color: #c28b00;
  margin-bottom: 20px;
}

.process-box h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #111;
}

.process-box p {
  color: #666;
  line-height: 1.8;
}

/* ============================= */
/* STATS SECTION */
/* ============================= */

.stats-section {
  padding: 80px 8%;
  background: url('../img/slide2.jpg') center/cover no-repeat;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.stats-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-box {
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.stat-box h2 {
  font-size: 52px;
  color: #c28b00;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
  letter-spacing: 1px;
}

/* ============================= */
/* INDUSTRIES SECTION */
/* ============================= */

.industries-section {
  padding: 100px 8%;
  background: #fff;
}

.industries-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.industry-card {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  transition: 0.4s;
}

.industry-card:hover {
  background: #111;
  color: #fff;
  transform: translateY(-8px);
}

.industry-card i {
  font-size: 45px;
  color: #c28b00;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 22px;
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta-section {
  position: relative;
  background: url('../img/slide2.jpg') center/cover no-repeat;
  padding: 120px 8%;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  color: #fff;
}

.cta-content h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.cta-content p {
  line-height: 1.9;
  margin-bottom: 35px;
  color: #ddd;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #c28b00;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
}

.cta-btn:hover {
  background: #fff;
  color: #111;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:991px) {

  .service-left h2,
  .why-content h2,
  .section-title-center h2,
  .cta-content h2 {
    font-size: 38px;
  }

}

@media(max-width:768px) {

  .service-details,
  .why-choose-section,
  .process-section,
  .industries-section,
  .cta-section {
    padding: 70px 5%;
  }

  .service-card-section {
    padding: 40px 5% 70px;
  }

  .stats-section {
    padding: 60px 5%;
  }

  .service-left h2,
  .why-content h2,
  .section-title-center h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .stat-box h2 {
    font-size: 40px;
  }

}

/* =========================================
   INVESTOR RELATIONS
========================================= */

.investor-relations-section {
  padding: 100px 8%;
  background: #fff;
}

.investor-relations-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.relations-left {
  flex: 1;
  min-width: 300px;
}

.relations-left span,
.financial-heading span,
.shareholder-content span {
  display: inline-block;
  padding: 8px 20px;
  background: #f4f4f4;
  border-radius: 30px;
  color: #c28b00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.relations-left h2,
.financial-heading h2,
.shareholder-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.relations-left p,
.financial-heading p,
.shareholder-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.relations-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.relation-card {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.relation-card:hover {
  transform: translateY(-10px);
}

.relation-card i {
  font-size: 45px;
  color: #c28b00;
  margin-bottom: 20px;
}

.relation-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* =========================================
   FINANCIAL REPORTING
========================================= */

.financial-report-section {
  padding: 100px 8%;
  background: #f9f9f9;
}

.financial-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.financial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.financial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.financial-card:hover {
  transform: translateY(-10px);
}

.financial-card i {
  font-size: 50px;
  color: #c28b00;
  margin-bottom: 20px;
}

.financial-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* =========================================
   SHAREHOLDER SECTION
========================================= */

.shareholder-section {
  position: relative;
  padding: 120px 8%;
  background: url('../img/slide2.jpg') center/cover no-repeat;
}

.shareholder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.shareholder-container {
  position: relative;
  z-index: 2;
}

.shareholder-content {
  text-align: center;
  max-width: 850px;
  margin: auto;
  color: #fff;
  margin-bottom: 60px;
}

.shareholder-content h2 {
  color: #fff;
}

.shareholder-content p {
  color: #ddd;
}

.shareholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.shareholder-box {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
}

.shareholder-box h3 {
  font-size: 52px;
  color: #c28b00;
  margin-bottom: 10px;
}

.shareholder-box p {
  font-size: 18px;
  color: #ddd;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .relations-left h2,
  .financial-heading h2,
  .shareholder-content h2 {
    font-size: 38px;
  }

}

@media(max-width:768px) {

  .investor-relations-section,
  .financial-report-section,
  .shareholder-section {
    padding: 70px 5%;
  }

  .relations-left h2,
  .financial-heading h2,
  .shareholder-content h2 {
    font-size: 30px;
  }

  .shareholder-box h3 {
    font-size: 40px;
  }

}

/* =========================================
   CAREER MODERN SECTION
========================================= */

.career-modern-section {
  padding: 100px 8%;
  background: #fff;
}

.career-modern-container {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.career-modern-image,
.career-modern-content {
  flex: 1;
  min-width: 300px;
}

.career-modern-image {
  position: relative;
}

.career-modern-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.floating-exp-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.floating-exp-box h3 {
  font-size: 40px;
  color: #c28b00;
  margin-bottom: 5px;
}

.career-modern-content span,
.career-role-heading span,
.career-search-content span {
  display: inline-block;
  padding: 8px 20px;
  background: #f4f4f4;
  border-radius: 30px;
  color: #c28b00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.career-modern-content h2,
.career-role-heading h2,
.career-search-content h2 {
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.career-modern-content p,
.career-search-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.career-modern-points {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.modern-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.modern-point i {
  width: 60px;
  height: 60px;
  background: #c28b00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.modern-point h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* =========================================
   CAREER ROLE SECTION
========================================= */

.career-role-section {
  padding: 100px 8%;
  background: #f9f9f9;
}

.career-role-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.career-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.career-role-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.career-role-card:hover {
  transform: translateY(-10px);
}

.career-role-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.career-role-top i {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #c28b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.career-role-top span {
  background: #f4f4f4;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.career-role-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.career-role-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.career-role-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.career-role-bottom a {
  padding: 12px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  transition: 0.4s;
}

.career-role-bottom a:hover {
  background: #c28b00;
}

/* =========================================
   SEARCH SECTION
========================================= */

.career-search-section {
  position: relative;
  padding: 120px 8%;
  background: url('../img/slide2.jpg') center/cover no-repeat;
}

.career-search-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.career-search-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

.career-search-content {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.career-search-content h2 {
  color: #fff;
}

.career-search-content p {
  color: #ddd;
}

.career-search-form {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.career-search-form input,
.career-search-form select,
.career-search-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 14px;
  outline: none;
  font-size: 16px;
}

.career-search-form textarea {
  height: 160px;
  resize: none;
  margin-bottom: 25px;
}

.career-search-form button {
  padding: 16px 35px;
  border: none;
  border-radius: 50px;
  background: #c28b00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.career-search-form button:hover {
  background: #111;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .career-modern-content h2,
  .career-role-heading h2,
  .career-search-content h2 {
    font-size: 38px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .career-modern-section,
  .career-role-section,
  .career-search-section {
    padding: 70px 5%;
  }

  .career-modern-content h2,
  .career-role-heading h2,
  .career-search-content h2 {
    font-size: 30px;
  }

  .career-search-form {
    padding: 30px 20px;
  }

}

/* =========================================
   EFFICIENT MINING SECTION
========================================= */

.efficient-mining-section {
  padding: 100px 8%;
  background: #fff;
}

.efficient-container {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.efficient-left,
.efficient-right {
  flex: 1;
  min-width: 300px;
}

.efficient-tag,
.process-heading span {
  display: inline-block;
  padding: 8px 20px;
  background: #f4f4f4;
  border-radius: 30px;
  color: #c28b00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.efficient-left h2,
.process-heading h2 {
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.efficient-left p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.efficient-right {
  position: relative;
}

.efficient-right img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.efficient-floating-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 22px 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.efficient-floating-box h3 {
  font-size: 42px;
  color: #c28b00;
  margin-bottom: 5px;
}

.efficient-feature-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.efficient-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.efficient-feature i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #c28b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.efficient-feature h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* =========================================
   MINING PROCESS SECTION
========================================= */

.mining-process-section {
  padding: 100px 8%;
  background: #f9f9f9;
}

.process-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.mining-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.mining-process-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mining-process-card:hover {
  transform: translateY(-10px);
}

.process-icon {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  background: #c28b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: auto;
  margin-bottom: 25px;
}

.mining-process-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.mining-process-card p {
  color: #666;
  line-height: 1.8;
}

/* =========================================
   PERFORMANCE SECTION
========================================= */

.mining-performance-section {
  position: relative;
  padding: 120px 8%;
  background: url('../img/slide2.jpg') center/cover no-repeat;
}

.performance-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.performance-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.performance-box {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
}

.performance-box h3 {
  font-size: 52px;
  color: #c28b00;
  margin-bottom: 10px;
}

.performance-box p {
  color: #ddd;
  font-size: 18px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .efficient-left h2,
  .process-heading h2 {
    font-size: 38px;
  }

}

@media(max-width:768px) {

  .efficient-mining-section,
  .mining-process-section,
  .mining-performance-section {
    padding: 70px 5%;
  }

  .efficient-left h2,
  .process-heading h2 {
    font-size: 30px;
  }

  .performance-box h3 {
    font-size: 40px;
  }

}

.animate-ban{
  background: url(../img/crane.gif);
  width: 100%;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

/*About page css*/
/* =========================================
   GOQUEST ABOUT SECTION
========================================= */

.goquest-about-section{
  padding:120px 6%;
  background:#f8f8f8;
}

.goquest-about-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  align-items:center;
}

.goquest-tagline{
  color:#f4b400;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.goquest-about-left h2 {
    font-size: 34px;
    line-height: 1.15;
    margin: 20px 0 30px;
    color: #111;
}
.goquest-about-left p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:22px;
}

.goquest-image-box{
  position:relative;
  overflow:hidden;
  border-radius:35px;
}

.goquest-image-box img{
  width:100%;
  height:700px;
  object-fit:cover;
  display:block;
}

.goquest-floating-card{
  position:absolute;
  left:30px;
  bottom:30px;
  background:#fff;
  padding:30px;
  border-radius:25px;
  min-width:220px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.goquest-floating-card h3{
  font-size:60px;
  color:#f4b400;
  margin-bottom:10px;
}

.goquest-floating-card p{
  color:#333;
  line-height:1.6;
  font-size:16px;
}

/* =========================================
   SERVICES SECTION
========================================= */

.goquest-services-section{
  padding:120px 6%;
  background:#fff;
}

.goquest-services-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.goquest-services-heading span{
  color:#f4b400;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.goquest-services-heading h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-top: 18px;
    color: #111;
}

.goquest-services-grid{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.goquest-service-card {
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 30px;
    padding: 20px 24px;
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .4s;
}

.goquest-service-card:hover{
  transform:translateY(-10px);
  background:#f4b400;
  border-color:#f4b400;
}

.goquest-service-card:hover h3{
  color:#fff;
}

.goquest-service-card h3 {
    font-size: 22px;
    line-height: 1.35;
    color: #111;
    transition: .4s;
}
.goquest-services-bottom{
  max-width:1100px;
  margin:60px auto 0;
  text-align:center;
}

.goquest-services-bottom p{
  font-size:19px;
  line-height:1.9;
  color:#555;
}

/* =========================================
   LEGACY SECTION
========================================= */

.goquest-legacy-section{
  padding:120px 6%;
  background:#111;
}

.goquest-legacy-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.goquest-legacy-left span{
  color:#f4b400;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:700;
}

.goquest-legacy-left h2 {
    color: #fff;
    font-size: 37px;
    line-height: 1.2;
    margin: 20px 0 30px;
}

.goquest-legacy-left p{
  color:#bbb;
  font-size:18px;
  line-height:1.9;
  margin-bottom:25px;
}

.goquest-legacy-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.legacy-point{
  background:#1b1b1b;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:35px 25px;
  color:#fff;
  font-size:20px;
  font-weight:600;
  text-align:center;
}

/* =========================================
   FUTURE SECTION
========================================= */

.future-mining-section{
  padding:120px 6%;
  background:#f7f7f7;
}

.future-mining-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.future-mining-heading span{
  color:#f4b400;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.future-mining-heading h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 20px 0;
}
.future-mining-heading p{
  font-size:18px;
  line-height:1.9;
  color:#666;
}

.future-mining-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.future-card{
  background:#fff;
  border-radius:30px;
  padding:50px 40px;
  border:1px solid #ececec;
  transition:.4s;
}

.future-card:hover{
  transform:translateY(-10px);
}

.future-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #111;
}

.future-card p{
  color:#666;
  line-height:1.9;
  font-size:17px;
}

/* =========================================
   COMMITMENT SECTION
========================================= */

.goquest-commitment-section{
  padding:120px 6%;
  background:#fff;
}

.goquest-commitment-container{
  max-width:1300px;
  margin:auto;
}

.goquest-commitment-content{
  background:#111;
  border-radius:40px;
  padding:90px 70px;
  text-align:center;
}

.goquest-commitment-content span{
  color:#f4b400;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.goquest-commitment-content h2 {
    color: #fff;
    font-size: 38px;
    margin: 20px 0 25px;
}

.goquest-commitment-content p{
  color:#bbb;
  font-size:18px;
  line-height:1.9;
}

.commitment-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.commitment-item{
  background:#1f1f1f;
  padding:30px 20px;
  border-radius:22px;
  color:#fff;
  font-size:20px;
  font-weight:600;
}

.commitment-bottom-text{
  margin-top:40px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .goquest-about-container,
  .goquest-legacy-container{
    grid-template-columns:1fr;
  }

  .goquest-services-grid,
  .future-mining-grid,
  .commitment-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .goquest-about-section,
  .goquest-services-section,
  .goquest-legacy-section,
  .future-mining-section,
  .goquest-commitment-section{
    padding:90px 5%;
  }

  .goquest-about-left h2,
  .goquest-services-heading h2,
  .goquest-legacy-left h2,
  .future-mining-heading h2,
  .goquest-commitment-content h2{
    font-size:36px;
  }

  .goquest-services-grid,
  .future-mining-grid,
  .commitment-grid,
  .goquest-legacy-points{
    grid-template-columns:1fr;
  }

  .goquest-image-box img{
    height:450px;
  }

  .goquest-service-card,
  .future-card{
    padding:40px 25px;
    min-height:auto;
  }

  .goquest-service-card h3,
  .future-card h3{
    font-size:26px;
  }

  .goquest-commitment-content{
    padding:60px 25px;
  }

}


/*Geo logical page css */
/* =========================================
   GEOLOGICAL EXPLORATION DESIGN
========================================= */

.geoexp-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.geoexp-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.geoexp-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.geoexp-left-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.geoexp-left-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

.geoexp-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.geoexp-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.geoexp-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:280px;
}

.geoexp-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.geoexp-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

/* =========================================
   SECTION HEADING
========================================= */

.geoexp-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.geoexp-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.geoexp-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   TECHNICAL SECTION
========================================= */

.geoexp-technical-section{
  padding:120px 6%;
  background:#ffffff;
}

.geoexp-technical-container{
  max-width:1450px;
  margin:auto;
}

.geoexp-tech-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.geoexp-tech-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.geoexp-tech-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.geoexp-tech-card:hover p{
  color:#fff;
}

.geoexp-tech-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   FRAMEWORK SECTION
========================================= */

.geoexp-framework-section{
  padding:120px 6%;
  background:#0f1d20;
}

.geoexp-framework-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.geoexp-framework-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.geoexp-framework-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.geoexp-framework-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.geoexp-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.geoexp-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.geoexp-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   RESPONSIBLE SECTION
========================================= */

.geoexp-responsible-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.geoexp-responsible-container{
  max-width:1300px;
  margin:auto;
}

.geoexp-responsible-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.geoexp-responsible-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.geoexp-responsible-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .geoexp-container,
  .geoexp-framework-container{
    grid-template-columns:1fr;
  }

  .geoexp-tech-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .geoexp-main-section,
  .geoexp-technical-section,
  .geoexp-framework-section,
  .geoexp-responsible-section{
    padding:90px 5%;
  }

  .geoexp-left-content h2,
  .geoexp-section-heading h2,
  .geoexp-framework-left h2{
    font-size:36px;
  }

  .geoexp-image-wrapper img{
    height:450px;
  }

  .geoexp-tech-card,
  .geoexp-responsible-box,
  .geoexp-highlight-card{
    padding:40px 25px;
  }

  .geoexp-highlight-card h3{
    font-size:30px;
  }

}


/* =========================================
   R&R DESIGN SECTION
========================================= */

.rrx-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.rrx-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.rrx-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.rrx-left-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.rrx-left-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

.rrx-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.rrx-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.rrx-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:280px;
}

.rrx-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.rrx-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

/* =========================================
   COMMON HEADING
========================================= */

.rrx-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.rrx-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.rrx-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   PLANNING SECTION
========================================= */

.rrx-planning-section{
  padding:120px 6%;
  background:#ffffff;
}

.rrx-planning-container{
  max-width:1450px;
  margin:auto;
}

.rrx-planning-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.rrx-plan-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.rrx-plan-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.rrx-plan-card:hover p{
  color:#fff;
}

.rrx-plan-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   SOCIAL RESPONSIBILITY
========================================= */

.rrx-social-section{
  padding:120px 6%;
  background:#0f1d20;
}

.rrx-social-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.rrx-social-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.rrx-social-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.rrx-social-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.rrx-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.rrx-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.rrx-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   GROWTH SECTION
========================================= */

.rrx-growth-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.rrx-growth-container{
  max-width:1300px;
  margin:auto;
}

.rrx-growth-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.rrx-growth-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.rrx-growth-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .rrx-container,
  .rrx-social-container{
    grid-template-columns:1fr;
  }

  .rrx-planning-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .rrx-main-section,
  .rrx-planning-section,
  .rrx-social-section,
  .rrx-growth-section{
    padding:90px 5%;
  }

  .rrx-left-content h2,
  .rrx-section-heading h2,
  .rrx-social-left h2{
    font-size:36px;
  }

  .rrx-image-wrapper img{
    height:450px;
  }

  .rrx-plan-card,
  .rrx-growth-box,
  .rrx-highlight-card{
    padding:40px 25px;
  }

  .rrx-highlight-card h3{
    font-size:30px;
  }

}

/* =========================================
   STATUTORY CLEARANCES DESIGN
========================================= */

.stx-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.stx-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:80px;
  align-items:center;
}

.stx-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.stx-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.stx-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:290px;
}

.stx-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.stx-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

.stx-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.stx-right-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.stx-right-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

/* =========================================
   COMMON HEADING
========================================= */

.stx-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.stx-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.stx-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   REGULATORY SECTION
========================================= */

.stx-regulatory-section{
  padding:120px 6%;
  background:#ffffff;
}

.stx-regulatory-container{
  max-width:1450px;
  margin:auto;
}

.stx-regulatory-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.stx-regulatory-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.stx-regulatory-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.stx-regulatory-card:hover p{
  color:#fff;
}

.stx-regulatory-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   PROCESSING SECTION
========================================= */

.stx-processing-section{
  padding:120px 6%;
  background:#0f1d20;
}

.stx-processing-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.stx-processing-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.stx-processing-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.stx-processing-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.stx-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.stx-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.stx-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   ENVIRONMENT SECTION
========================================= */

.stx-environment-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.stx-environment-container{
  max-width:1300px;
  margin:auto;
}

.stx-environment-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.stx-environment-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.stx-environment-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .stx-container,
  .stx-processing-container{
    grid-template-columns:1fr;
  }

  .stx-regulatory-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .stx-main-section,
  .stx-regulatory-section,
  .stx-processing-section,
  .stx-environment-section{
    padding:90px 5%;
  }

  .stx-right-content h2,
  .stx-section-heading h2,
  .stx-processing-left h2{
    font-size:36px;
  }

  .stx-image-wrapper img{
    height:450px;
  }

  .stx-regulatory-card,
  .stx-environment-box,
  .stx-highlight-card{
    padding:40px 25px;
  }

  .stx-highlight-card h3{
    font-size:30px;
  }

}

/* =========================================
   MINING SERVICES DESIGN
========================================= */

.mnx-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.mnx-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.mnx-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.mnx-left-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.mnx-left-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

.mnx-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.mnx-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.mnx-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:290px;
}

.mnx-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.mnx-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

/* =========================================
   COMMON HEADING
========================================= */

.mnx-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.mnx-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.mnx-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   SERVICES SECTION
========================================= */

.mnx-services-section{
  padding:120px 6%;
  background:#ffffff;
}

.mnx-services-container{
  max-width:1450px;
  margin:auto;
}

.mnx-services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.mnx-service-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.mnx-service-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.mnx-service-card:hover p{
  color:#fff;
}

.mnx-service-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   OPERATION SECTION
========================================= */

.mnx-operation-section{
  padding:120px 6%;
  background:#0f1d20;
}

.mnx-operation-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.mnx-operation-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.mnx-operation-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.mnx-operation-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.mnx-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.mnx-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.mnx-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   TECHNOLOGY SECTION
========================================= */

.mnx-tech-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.mnx-tech-container{
  max-width:1300px;
  margin:auto;
}

.mnx-tech-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.mnx-tech-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.mnx-tech-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   RELATION SECTION
========================================= */

.mnx-relations-section{
  padding:120px 6%;
  background:#ffffff;
}

.mnx-relations-container{
  max-width:1450px;
  margin:auto;
}

.mnx-relations-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.mnx-relations-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:35px;
  padding:60px 45px;
  transition:.4s;
}

.mnx-relations-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.mnx-relations-card:hover span,
.mnx-relations-card:hover p{
  color:#fff;
}

.mnx-relations-card span{
  display:block;
  color:#111;
  font-size:30px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:25px;
  transition:.4s;
}

.mnx-relations-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  margin-bottom:24px;
  transition:.4s;
}

.mnx-relations-card p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .mnx-container,
  .mnx-operation-container{
    grid-template-columns:1fr;
  }

  .mnx-services-grid,
  .mnx-relations-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .mnx-main-section,
  .mnx-services-section,
  .mnx-operation-section,
  .mnx-tech-section,
  .mnx-relations-section{
    padding:90px 5%;
  }

  .mnx-left-content h2,
  .mnx-section-heading h2,
  .mnx-operation-left h2{
    font-size:36px;
  }

  .mnx-image-wrapper img{
    height:450px;
  }

  .mnx-service-card,
  .mnx-tech-box,
  .mnx-highlight-card,
  .mnx-relations-card{
    padding:40px 25px;
  }

  .mnx-highlight-card h3,
  .mnx-relations-card span{
    font-size:30px;
  }

}

/* =========================================
   COMMERCIAL MINING DESIGN
========================================= */

.cmx-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.cmx-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.cmx-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.cmx-left-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.cmx-left-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

.cmx-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.cmx-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.cmx-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:290px;
}

.cmx-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.cmx-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

/* =========================================
   COMMON HEADING
========================================= */

.cmx-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.cmx-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.cmx-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   OPERATIONS SECTION
========================================= */

.cmx-operations-section{
  padding:120px 6%;
  background:#ffffff;
}

.cmx-operations-container{
  max-width:1450px;
  margin:auto;
}

.cmx-operations-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.cmx-operation-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.cmx-operation-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.cmx-operation-card:hover p{
  color:#fff;
}

.cmx-operation-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   RESOURCE SECTION
========================================= */

.cmx-resource-section{
  padding:120px 6%;
  background:#0f1d20;
}

.cmx-resource-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.cmx-resource-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.cmx-resource-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.cmx-resource-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.cmx-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.cmx-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.cmx-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   GOVERNANCE SECTION
========================================= */

.cmx-governance-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.cmx-governance-container{
  max-width:1300px;
  margin:auto;
}

.cmx-governance-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.cmx-governance-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.cmx-governance-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   SAFETY SECTION
========================================= */

.cmx-safety-section{
  padding:120px 6%;
  background:#ffffff;
}

.cmx-safety-container{
  max-width:1450px;
  margin:auto;
}

.cmx-safety-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.cmx-safety-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:35px;
  padding:60px 45px;
  transition:.4s;
}

.cmx-safety-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.cmx-safety-card:hover span,
.cmx-safety-card:hover p{
  color:#fff;
}

.cmx-safety-card span{
  display:block;
  color:#111;
  font-size:30px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:25px;
  transition:.4s;
}

.cmx-safety-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  margin-bottom:24px;
  transition:.4s;
}

.cmx-safety-card p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .cmx-container,
  .cmx-resource-container{
    grid-template-columns:1fr;
  }

  .cmx-operations-grid,
  .cmx-safety-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .cmx-main-section,
  .cmx-operations-section,
  .cmx-resource-section,
  .cmx-governance-section,
  .cmx-safety-section{
    padding:90px 5%;
  }

  .cmx-left-content h2,
  .cmx-section-heading h2,
  .cmx-resource-left h2{
    font-size:36px;
  }

  .cmx-image-wrapper img{
    height:450px;
  }

  .cmx-operation-card,
  .cmx-governance-box,
  .cmx-highlight-card,
  .cmx-safety-card{
    padding:40px 25px;
  }

  .cmx-highlight-card h3,
  .cmx-safety-card span{
    font-size:30px;
  }

}

/* =========================================
   MDO DESIGN
========================================= */

.mdo-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.mdo-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.mdo-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.mdo-left-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.mdo-left-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

.mdo-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.mdo-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.mdo-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:290px;
}

.mdo-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.mdo-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

/* =========================================
   COMMON HEADING
========================================= */

.mdo-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.mdo-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.mdo-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   OPERATIONS SECTION
========================================= */

.mdo-operations-section{
  padding:120px 6%;
  background:#ffffff;
}

.mdo-operations-container{
  max-width:1450px;
  margin:auto;
}

.mdo-operations-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.mdo-operation-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.mdo-operation-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.mdo-operation-card:hover p{
  color:#fff;
}

.mdo-operation-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   EFFICIENCY SECTION
========================================= */

.mdo-efficiency-section{
  padding:120px 6%;
  background:#0f1d20;
}

.mdo-efficiency-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.mdo-efficiency-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.mdo-efficiency-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.mdo-efficiency-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.mdo-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.mdo-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.mdo-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   FUTURE SECTION
========================================= */

.mdo-future-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.mdo-future-container{
  max-width:1300px;
  margin:auto;
}

.mdo-future-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.mdo-future-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.mdo-future-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .mdo-container,
  .mdo-efficiency-container{
    grid-template-columns:1fr;
  }

  .mdo-operations-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .mdo-main-section,
  .mdo-operations-section,
  .mdo-efficiency-section,
  .mdo-future-section{
    padding:90px 5%;
  }

  .mdo-left-content h2,
  .mdo-section-heading h2,
  .mdo-efficiency-left h2{
    font-size:36px;
  }

  .mdo-image-wrapper img{
    height:450px;
  }

  .mdo-operation-card,
  .mdo-future-box,
  .mdo-highlight-card{
    padding:40px 25px;
  }

  .mdo-highlight-card h3{
    font-size:30px;
  }

}

/* =========================================
   LOGISTICS SERVICES DESIGN
========================================= */

.lgx-main-section{
  padding:120px 6%;
  background:#f6fbfc;
}

.lgx-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.lgx-mini-title{
  display:inline-block;
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.lgx-left-content h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:30px;
}

.lgx-left-content p{
  font-size:18px;
  line-height:1.95;
  color:#555;
  margin-bottom:25px;
}

.lgx-image-wrapper{
  position:relative;
  border-radius:35px;
  overflow:hidden;
}

.lgx-image-wrapper img{
  width:100%;
  height:760px;
  object-fit:cover;
  display:block;
}

.lgx-floating-box{
  position:absolute;
  left:35px;
  bottom:35px;
  background:#10b8c8;
  padding:35px;
  border-radius:28px;
  max-width:290px;
}

.lgx-floating-box h3{
  color:#fff;
  font-size:42px;
  margin-bottom:12px;
}

.lgx-floating-box p{
  color:#fff;
  line-height:1.7;
  font-size:16px;
}

/* =========================================
   COMMON HEADING
========================================= */

.lgx-section-heading{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:70px;
}

.lgx-section-heading span{
  color:#10b8c8;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.lgx-section-heading h2{
  font-size:52px;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

/* =========================================
   WAREHOUSE SECTION
========================================= */

.lgx-warehouse-section{
  padding:120px 6%;
  background:#ffffff;
}

.lgx-warehouse-container{
  max-width:1450px;
  margin:auto;
}

.lgx-warehouse-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.lgx-warehouse-card{
  background:#f8fcfd;
  border:1px solid #dff5f8;
  border-radius:30px;
  padding:50px 40px;
  transition:.4s;
}

.lgx-warehouse-card:hover{
  transform:translateY(-10px);
  background:#10b8c8;
}

.lgx-warehouse-card:hover p{
  color:#fff;
}

.lgx-warehouse-card p{
  color:#555;
  font-size:17px;
  line-height:1.95;
  transition:.4s;
}

/* =========================================
   ROUTING SECTION
========================================= */

.lgx-routing-section{
  padding:120px 6%;
  background:#0f1d20;
}

.lgx-routing-container{
  max-width:1450px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.lgx-routing-left span{
  color:#10b8c8;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.lgx-routing-left h2{
  color:#fff;
  font-size:54px;
  line-height:1.2;
  margin:20px 0 30px;
}

.lgx-routing-left p{
  color:#c9d4d6;
  font-size:18px;
  line-height:1.95;
  margin-bottom:24px;
}

.lgx-highlight-card{
  background:#10b8c8;
  border-radius:35px;
  padding:60px 50px;
}

.lgx-highlight-card h3{
  color:#fff;
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
}

.lgx-highlight-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   HANDLING SECTION
========================================= */

.lgx-handling-section{
  padding:120px 6%;
  background:#f7fbfc;
}

.lgx-handling-container{
  max-width:1300px;
  margin:auto;
}

.lgx-handling-box{
  background:#fff;
  border:1px solid #dff5f8;
  border-radius:40px;
  padding:70px 60px;
  box-shadow:0 15px 40px rgba(16,184,200,0.06);
}

.lgx-handling-box p{
  color:#555;
  font-size:18px;
  line-height:2;
  margin-bottom:30px;
}

.lgx-handling-box p:last-child{
  margin-bottom:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .lgx-container,
  .lgx-routing-container{
    grid-template-columns:1fr;
  }

  .lgx-warehouse-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .lgx-main-section,
  .lgx-warehouse-section,
  .lgx-routing-section,
  .lgx-handling-section{
    padding:90px 5%;
  }

  .lgx-left-content h2,
  .lgx-section-heading h2,
  .lgx-routing-left h2{
    font-size:36px;
  }

  .lgx-image-wrapper img{
    height:450px;
  }

  .lgx-warehouse-card,
  .lgx-handling-box,
  .lgx-highlight-card{
    padding:40px 25px;
  }

  .lgx-highlight-card h3{
    font-size:30px;
  }

}