@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: #f7fbfc;
  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: #f7fbfc;
}

/* 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;
    flex-direction: column;
  }
}


/* 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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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;
}

.footer-logo {
    width: 222px;
    margin-bottom: 15px;
    background-color: #fff;
}
/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* TITLE */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #10b8c8;
}

/* 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: #10b8c8;
  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: rgb(255 255 255 / 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 #10b8c8;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b8c8;
  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: #10b8c8;
  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), rgb(0 0 0 / 67%), rgba(0, 0, 0, 0.15));
  z-index: 1;
  backdrop-filter: blur(1px);
}

/* 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 #10b8c8;
  color: #10b8c8;
  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: 22px;
  margin-bottom: 18px;
  font-weight: 700;
}

.small-line {
  width: 60px;
  height: 4px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.orange-bg {
  background: #10b8c8;
}

.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: #10b8c8;
}

.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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
  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: #10b8c8;
}

/* 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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

/* INFO */

.bs-info span {
  color: #10b8c8;
  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: #10b8c8;
  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: #f2f4f6;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

/* 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: #f2f4f6;
  color: #10b8c8;
  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: #f2f4f6;
}

/* 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: 42px 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: #10b8c8;
}

.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: #10b8c8;
}

.orange-text::after {
  background: #10b8c8;
}

.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: #10b8c8;
}

.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: #10b8c8;
}

/* =========================
   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;
    align-items: center;
  }

  .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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
}

.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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
}

.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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
  margin-bottom: 18px;
  text-transform: uppercase;
  position: relative;
  padding-left: 60px;
}

.intro-subtitle::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  background: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.intro-stat-box h3 {
  font-size: 48px;
  color: #10b8c8;
  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: #10b8c8;
  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: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.csr-intro-left h2 {
  font-size: 35px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 30px;
}

.csr-intro-left h2 span {
  color: #10b8c8;
}

.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: #10b8c8;
}

.csr-point i {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
}

.csr-icon {
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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, #fff, #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: #10b8c8;
}

.impact-box h3 {
  font-size: 58px;
  color: #10b8c8;
  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: #10b8c8;
  margin-bottom: 20px;
  position: relative;
  padding: 0 70px;
}

.csr-heading span::before,
.csr-heading span::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #10b8c8;
  top: 50%;
  transform: translateY(-50%);
}

.csr-heading span::before {
  left: 0;
}

.csr-heading span::after {
  right: 0;
}

.csr-heading h2 {
  font-size: 33px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.csr-heading h2 span {
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 30px;
  /* letter-spacing: -2px; */
}

.csr-impact-content h2 span {
  display: inline;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.investor-feature i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.highlight-card i {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: #fff;
  color: #10b8c8;
  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, #fff, #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: #10b8c8;
}

.stats-box h3 {
  font-size: 48px;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gallery-intro-container h2 {
  font-size: 39px;
  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: #10b8c8;
  color: #fff;
  border-color: #10b8c8;
}

/* =========================================
   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: #10b8c8;
  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: #10b8c8;
}

.gallery-stat-box h3 {
  font-size: 42px;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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(3, 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: #10b8c8;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
}

.contact-btn-submit {
  border: none;
  background: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.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: #10b8c8;
}

.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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-point i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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,
      #10b8c8,
      #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: #10b8c8;
  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: #10b8c8;
}

.overview-feature i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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, #10b8c8, transparent);
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.journey-year {
  min-width: 90px;
  height: 90px;
  border-radius: 20px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.overview-feature i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.why-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
}

.journey-year {
  min-width: 90px;
  height: 90px;
  border-radius: 20px;
  background: #fff;
  color: #10b8c8;
  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: #10b8c8;
  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: #fff;
  color: #10b8c8;
  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, #10b8c8);
}

.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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  border-color: #10b8c8;
}

.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 {
  position: relative;
  padding: 120px 6%;
  background: url('../img/slide6.jpeg') center center/cover no-repeat;
  overflow: hidden;
  z-index: 1;
}

/* Dark Blur Overlay */
.goquest-legacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* overlay dark */
  backdrop-filter: blur(4px);
  /* blur effect */
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
}

/* Content always above overlay */
.goquest-legacy-section>* {
  position: relative;
  z-index: 2;
}

.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: #10b8c8;
  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: #10b8c8;
  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: #10b8c8;
  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: 29px;
  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: 426px;
  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: 34px;
  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: 37px;
  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: 41px;
  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: 391px;
  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: 36px;
  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 {
  position: relative;
  padding: 120px 7%;
  overflow: hidden;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.96) 18%,
      rgba(0, 0, 0, 0.88) 35%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.1) 100%),
    url('../img/rr/rr-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.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: 34px;
  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: 38px;
  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: 36px;
  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%;
  position: relative;
  padding: 100px 20px;
  min-height: 500px;
  overflow: hidden;
  transition: opacity 0.5s ease;
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.3)),
    url('../img/sat/sat-about.jpeg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.stx-processing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  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%);
}

.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: 28px;
  line-height: 1.2;
  margin: 20px 0 30px;
}

.stx-processing-left p {
  color: #c9d4d6;
  font-size: 16px;
  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: 30px;
  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: 38px;
  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: 449px;
  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: 35px;
  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: 31px;
  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: 29px;
  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: 32px;
  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: 32px;
  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: 417px;
  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: 37px;
  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: 33px;
  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: 35px;
  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: 37px;
  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: 35px;
  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: 31px;
  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: 36px;
  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: 41px;
  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: 556px;
  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: 34px;
  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: 31px;
  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: 40px;
  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;
  }

}


.gqx-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  z-index: 1;
  background-color: #f2f4f6;
}

/* BACKGROUND IMAGE */

.gqx-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/ab-background.png');
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1.08) translate(57px, 119px);
  z-index: -2;
}

/* WHITE OVERLAY */

.gqx-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 20%);
  z-index: -1;
}

/* CONTENT */

.gqx-container {
  position: relative;
  z-index: 5;
}

.gqx-container {
  position: relative;
  z-index: 2;
}

.gqx-container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* TOP IMAGE */

.gqx-heading-img {
  text-align: center;
  margin-bottom: 15px;
}

.gqx-heading-img img {
  width: 100%;
  max-width: 850px;
}

/* CONTENT */

.gqx-content {
  text-align: center;
}

.gqx-content h2 {
  font-size: 25px;
  line-height: 1.4;
  color: #1d2430;
  font-weight: 600;
  max-width: 826px;
  margin: auto;
}

.gqx-content h2 span {
  color: #0ba7b5;
}

.gqx-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.gqx-divider span {
  width: 130px;
  height: 2px;
  background: #0ba7b5;
}

.gqx-divider i {
  color: #0ba7b5;
  font-size: 19px;
}


/* CARDS */

.gqx-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.gqx-card {
  background: #fff;
  border-radius: 28px;
  padding: 55px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-height: 434px;
}

.gqx-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #11c0cf, #009ca9);
}

.gqx-card-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  border: 3px dashed #0bb7c5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.gqx-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(180deg, #263242, #101923);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gqx-card-icon i {
  color: #fff;
  font-size: 25px;
}

.gqx-card h3 {
  font-size: 17px;
  line-height: 1.4;
  color: #1e2630;
  font-weight: 800;
  margin-bottom: 10px;
}

.gqx-small-line {
  width: 70px;
  height: 2px;
  background: #aab0b7;
  margin: auto auto 25px;
}

.gqx-card p {
  font-size: 14px;
  line-height: 2;
  color: #4e5561;
}


/* RESPONSIVE */

@media(max-width:1200px) {

  .gqx-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gqx-stats-wrapper {
    flex-wrap: wrap;
  }

  .gqx-bottom-bar {
    flex-wrap: wrap;
  }

  .gqx-bottom-line,
  .gqx-stat-line {
    display: none;
  }
}

@media(max-width:768px) {

  .gqx-content h2 {
    font-size: 21px;
  }

  .gqx-card-grid {
    grid-template-columns: 1fr;
  }

  .gqx-stats-wrapper {
    padding: 25px;
  }

  .gqx-stat-item {
    width: 100%;
  }

  .gqx-bottom-item {
    width: 100%;
  }

  .gqx-card p {
    font-size: 17px;
    line-height: 1.8;
  }

  .gqx-bottom-item p {
    font-size: 16px;
  }
}


/* CAROUSEL SPACING */

.gqx-card-carousel .owl-stage-outer {
  padding: 15px 0 20px;
}

.gqx-card-carousel .item {
  padding: 10px;
}

/* OWL DOTS */

.gqx-card-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.gqx-card-carousel .owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c7d0d5 !important;
  margin: 0 6px;
  transition: 0.4s;
}

.gqx-card-carousel .owl-dot.active {
  width: 40px;
  border-radius: 30px;
  background: #0bb7c5 !important;
}

/* NAV */

.gqx-card-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.gqx-card-carousel .owl-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  background: #0bb7c5 !important;
  color: #fff !important;
  font-size: 24px !important;
  margin: 0 8px;
  transition: 0.4s;
}

.gqx-card-carousel .owl-nav button:hover {
  background: #15202b !important;
}


/* =========================
   FOUNDER & CHAIRMAN
========================= */

.founder-chairman-section {
  width: 100%;
  padding: 100px 6%;
  background: #f4fcfd;
  position: relative;
  overflow: hidden;
}

/* background shapes */

.founder-chairman-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(16, 184, 200, 0.07);
  top: -180px;
  left: -180px;
}

.founder-chairman-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(16, 184, 200, 0.06);
  bottom: -150px;
  right: -120px;
}

.founder-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */

.founder-left {
  flex: 1;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e6fafd;
  color: #10b8c8;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.founder-tag span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b8c8;
}

.founder-left h2 {
  font-size: 52px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 30px;
  font-weight: 800;
}

.founder-text {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
}

.founder-sign {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.sign-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b8c8, #47d5e3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(16, 184, 200, 0.2);
}

.founder-sign h4 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #111;
}

.founder-sign p {
  color: #777;
  font-size: 15px;
}

/* RIGHT */

.founder-right {
  flex: 1;
}

.message-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.message-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #10b8c8, #4ad7e4);
}

.quote-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  margin-bottom: 30px;
}

.message-card h3 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #111;
}

.message-card p {
  font-size: 17px;
  line-height: 2;
  color: #555;
}

.message-line {
  width: 100%;
  height: 1px;
  background: #e3e3e3;
  margin: 35px 0;
}

.message-stats {
  display: flex;
  gap: 20px;
}

.stat-box {
  flex: 1;
  background: #f7fbfc;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: .4s;
  border: 1px solid #e5f5f7;
}

.stat-box:hover {
  transform: translateY(-6px);
  background: #10b8c8;
}

.stat-box h4 {
  font-size: 34px;
  color: #10b8c8;
  margin-bottom: 8px;
  transition: .4s;
}

.stat-box span {
  color: #666;
  font-size: 14px;
  transition: .4s;
}

.stat-box:hover h4,
.stat-box:hover span {
  color: #fff;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .founder-container {
    flex-direction: column;
  }

  .founder-left h2 {
    font-size: 40px;
  }

}

@media(max-width:576px) {

  .founder-chairman-section {
    padding: 70px 5%;
  }

  .founder-left h2 {
    font-size: 32px;
  }

  .message-card {
    padding: 35px 25px;
  }

  .message-card h3 {
    font-size: 28px;
  }

  .message-stats {
    flex-direction: column;
  }

}

/* =====================================
   MODERN SHAREHOLDER SECTION
===================================== */

.shareholder-section {
  width: 100%;
  padding: 110px 6%;
  background: #f4f8fa;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND SHAPES */

.shareholder-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(16, 184, 200, 0.06);
  top: -180px;
  left: -180px;
}

.shareholder-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(16, 184, 200, 0.05);
  bottom: -150px;
  right: -120px;
}

.shareholder-container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* BLOCK */

.shareholder-block {
  margin-bottom: 60px;
}

/* TITLE */

.shareholder-title {
  margin-bottom: 22px;
}

.shareholder-title h2 {
  font-size: 25px;
  font-weight: 800;
  color: #111;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  letter-spacing: -0.5px;
}

.shareholder-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(90deg, #10b8c8, #59dae6);
}

/* MAIN BOX */

.shareholder-box {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    0 25px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 184, 200, 0.08);
}

/* HEADER */

.shareholder-head {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  align-items: center;
  padding: 22px 35px;
  background: linear-gradient(135deg, #10b8c8, #39d0de);
}

.head-title,
.head-date,
.head-action {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ITEMS */

.shareholder-item {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  align-items: center;
  gap: 25px;
  padding: 0px 35px;
  text-decoration: none;
  position: relative;
  transition: .45s ease;
  border-bottom: 1px solid #edf2f4;
  background: #fff;
}

.shareholder-item:last-child {
  border-bottom: none;
}

.shareholder-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg, #10b8c8, #57d9e5);
  transition: .45s;
}

.shareholder-item:hover::before {
  width: 6px;
}

.shareholder-item:hover {
  background: #fbfeff;
  transform: translateY(-2px);
}

/* DATE */

.pdf-date {
  font-size: 15px;
  font-weight: 700;
  color: #10b8c8;
  letter-spacing: .3px;
}

/* PDF INFO */

.pdf-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pdf-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 22px;
  background: linear-gradient(135deg, #10b8c8, #56dbe6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  transition: .4s;
  box-shadow: 0 12px 30px rgba(16, 184, 200, 0.18);
}

.pdf-info p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  font-weight: 600;
  transition: .3s;
  letter-spacing: -0.2px;
}

/* DOWNLOAD */

.download-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* background: #f3f9fa; */
  /* border: 1px solid rgba(16,184,200,0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b8c8;
  font-size: 18px;
  transition: .4s;
}

/* HOVER */

.shareholder-item:hover .pdf-info p {
  color: #10b8c8;
}



/* RESPONSIVE */

@media(max-width:992px) {

  .shareholder-title h2 {
    font-size: 34px;
  }

  .shareholder-head {
    grid-template-columns: 150px 1fr 80px;
  }

  .shareholder-item {
    grid-template-columns: 150px 1fr 80px;
    padding: 26px 25px;
  }

  .pdf-info p {
    font-size: 16px;
  }

}

@media(max-width:768px) {

  .shareholder-section {
    padding: 80px 5%;
  }

  .shareholder-head {
    display: none;
  }

  .shareholder-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .pdf-info {
    align-items: flex-start;
  }

  .pdf-info p {
    font-size: 15px;
    line-height: 1.8;
  }

  .download-btn {
    width: 48px;
    height: 48px;
  }

}

@media(max-width:576px) {

  .shareholder-title h2 {
    font-size: 28px;
  }

  .pdf-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    font-size: 22px;
  }

  .pdf-date {
    font-size: 14px;
  }

}

/* =========================
   CORPORATE GOVERNANCE
========================= */

.governance-section {
  width: 100%;
  padding: 100px 6%;
  background: #f4f8fa;
}

.governance-container {
  max-width: 1400px;
  margin: auto;
}

/* TITLE */

.governance-title {
  margin-bottom: 40px;
}

.governance-title h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #3d3d3d;
  font-weight: 300;
}

/* TABS */

.governance-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}

.gov-tab {
  border: none;
  background: #f5f5f5;
  color: #777;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

.gov-tab.active {
  background: #10b8c8;
  color: #fff;
}

/* BOX */

.governance-box {
  background: #f8f8f8;
  padding: 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 35px;
  border-radius: 0 20px 20px 20px;
}

/* FILTER */

.governance-filter h3 {
  font-size: 34px;
  color: #444;
  margin-bottom: 25px;
  font-weight: 400;
}

.filter-list {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  cursor: pointer;
}

.filter-list input {
  width: 18px;
  height: 18px;
  accent-color: #d9251d;
}

.filter-list span {
  font-size: 18px;
  color: #666;
}

/* CONTENT */

.governance-content {
  background: #fff;
}

/* HEAD */

.gov-head {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  align-items: center;
  background: #10b8c8;
  padding: 20px 28px;
}

.gov-head div {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

/* ITEMS */

.gov-item {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  align-items: center;
  gap: 20px;
  padding: 2px 10px;
  text-decoration: none;
  border-bottom: 1px solid #e7e7e7;
  transition: .4s;
}

.gov-item:hover {
  background: #faf7f0;
}

.gov-date {
  font-size: 17px;
  color: #555;
}

/* INFO */

.gov-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gov-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #f3ead6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b8c8;
  font-size: 24px;
  flex-shrink: 0;
}

.gov-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* DOWNLOAD */

.gov-download {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b8c8;
  font-size: 18px;
  transition: .4s;
}

.gov-item:hover .gov-download {
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .governance-title h2 {
    font-size: 58px;
  }

  .governance-box {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .governance-section {
    padding: 70px 5%;
  }

  .governance-title h2 {
    font-size: 40px;
  }

  .gov-head {
    display: none;
  }

  .gov-item {
    grid-template-columns: 1fr;
  }

  .gov-info p {
    font-size: 18px;
  }

  .filter-list span {
    font-size: 18px;
  }

}

@media(max-width:576px) {

  .governance-title h2 {
    font-size: 32px;
  }

  .gov-tab {
    width: 100%;
    font-size: 15px;
    padding: 15px;
  }

  .governance-tabs {
    flex-direction: column;
  }

}

/* HERO EXTRA DESIGN */

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  margin-bottom: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-tag span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b8c8;
}

.hero-desc {
  max-width: 750px;
  font-size: 18px;
  line-height: 1.9;
  color: #f1f1f1;
  margin-top: 25px;
}

/* INFO CARDS */

.hero-info-wrap {
  display: flex;
  gap: 20px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.hero-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  transition: .4s;
}

.hero-info-card:hover {
  transform: translateY(-5px);
  background: rgba(16, 184, 200, 0.22);
}

.hero-info-icon {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.hero-info-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.hero-info-card p {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .hero-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-info-wrap {
    flex-direction: column;
  }

  .hero-info-card {
    width: 100%;
    min-width: 100%;
  }

}

/* TAB CONTENT */

.governance-content {
  display: none;
}

.governance-content.active-tab {
  display: block;
}

.financial-info-section {
  padding: 100px 0;
  background: #f5f7fb;
}

.financial-wrapper {
  width: 90%;
  max-width: 1450px;
  margin: auto;
}

.financial-title {
  text-align: center;
  margin-bottom: 50px;
}

.financial-title span {
  color: #10b8c8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.financial-title h2 {
  font-size: 52px;
  margin-top: 10px;
  color: #111827;
  font-weight: 700;
}

.financial-title p {
  max-width: 750px;
  margin: 15px auto 0;
  color: #6b7280;
  line-height: 1.8;
}

.financial-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.financial-tab-btn {
  padding: 14px 28px;
  border: none;
  background: white;
  border-radius: 60px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s;
  color: #374151;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.financial-tab-btn.active {
  background: #10b8c8;
  color: white;
}

.financial-main-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.financial-filter-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  height: fit-content;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.financial-filter-box h3 {
  margin-bottom: 25px;
  color: #111827;
  font-size: 22px;
}

.financial-filter-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.financial-filter-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #374151;
}

.financial-filter-list input {
  accent-color: #10b8c8;
  width: 18px;
  height: 18px;
}

.financial-content-area {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.financial-tab-content {
  display: none;
}

.financial-tab-content.active-financial-tab {
  display: block;
}

.financial-head-row {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  padding: 18px 25px;
  background: #10b8c8;
  color: white;
  border-radius: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}


.financial-document-card {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  align-items: center;
  padding: 0px 25px;
  border-radius: 18px;
  text-decoration: none;
  background: #f9fafb;
  margin-bottom: 18px;
  transition: 0.4s;
  border: 1px solid #edf0f5;
}

.financial-document-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.financial-doc-date {
  font-weight: 600;
  color: #111827;
}

.financial-doc-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.financial-doc-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b8c8;
  font-size: 22px;
}

.financial-doc-info h4 {
  color: #111827;
  margin-bottom: 6px;
  font-size: 18px;
}

.financial-doc-info p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 14px;
}

.financial-doc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b8c8;
  font-size: 20px;
}

@media(max-width: 991px) {

  .financial-main-box {
    grid-template-columns: 1fr;
  }

  .financial-head-row,
  .financial-document-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .financial-title h2 {
    font-size: 38px;
  }

}







.regulatory-info-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.regulatory-info-card {
  width: 340px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.regulatory-info-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.regulatory-info-card h4 {
  color: white;
  margin-bottom: 6px;
  font-size: 20px;
}

.regulatory-info-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 14px;
}

/* =========================
   CIRCLES
========================= */

.regulatory-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.regulatory-circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  animation: animate 25s linear infinite;
  bottom: -150px;
  border-radius: 50%;
}

.regulatory-circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.regulatory-circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.regulatory-circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.regulatory-circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.regulatory-circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.regulatory-circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.regulatory-circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.regulatory-circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.regulatory-circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.regulatory-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;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }

}

/* =========================
   DISCLOSURE SECTION
========================= */

.regulatory-disclosure-section {
  padding: 100px 0;
  background: #f5f7fb;
}

.regulatory-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.regulatory-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.regulatory-section-title span {
  color: #10b8c8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.regulatory-section-title h2 {
  font-size: 52px;
  margin-top: 31px;
  color: #111827;
}

.regulatory-section-title p {
  max-width: 760px;
  margin: 18px auto 0;
  line-height: 1.8;
  color: #6b7280;
}

.regulatory-disclosure-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 15px;
}

.regulatory-block {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.regulatory-block-title h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #111827;
}

.regulatory-table-head {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  background: #10b8c8;
  color: white;
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 600;
}


.regulatory-document-item {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  align-items: center;
  padding: 5px 24px;
  background: #f9fafb;
  border-radius: 18px;
  margin-bottom: 18px;
  text-decoration: none;
  transition: 0.4s;
  border: 1px solid #edf0f5;
}

.regulatory-document-item:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.regulatory-document-date {
  font-weight: 600;
  color: #111827;
}

.regulatory-document-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.regulatory-document-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 16px;
  background: rgba(0, 184, 148, 0.12);
  color: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.regulatory-document-info h4 {
  color: #111827;
  margin-bottom: 5px;
}

.regulatory-document-info p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 14px;
}

.regulatory-document-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #10b8c8;
  font-size: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px) {

  .regulatory-table-head,
  .regulatory-document-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .regulatory-hero-content h1 {
    font-size: 48px;
  }

  .regulatory-section-title h2 {
    font-size: 38px;
  }

}


/* =========================
   MEETINGS & COMMUNICATIONS
========================= */

.meeting-communication-section {
  width: 100%;
  padding: 90px 6%;
  background: #f5f7fa;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */

.meeting-container {
  width: 100%;
  max-width: 1450px;
  margin: auto;
}

/* HEADER */

.meeting-header-area {
  text-align: center;
  margin-bottom: 50px;
}

.meeting-mini-title {
  display: inline-block;
  padding: 10px 22px;
  background: #10b8c815;
  color: #10b8c8;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.meeting-header-area h2 {
  font-size: 48px;
  line-height: 58px;
  color: #111827;
  font-weight: 700;
  margin-bottom: 18px;
}

.meeting-header-area p {
  max-width: 760px;
  margin: auto;
  color: #6b7280;
  font-size: 16px;
  line-height: 28px;
}

/* TAB BUTTONS */

.meeting-tab-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.meeting-tab-button {
  border: none;
  outline: none;
  padding: 16px 34px;
  background: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: .4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.meeting-tab-button:hover {
  transform: translateY(-2px);
}

.meeting-tab-button.active {
  background: #10b8c8;
  color: #fff;
}

/* MAIN WRAPPER */

.meeting-main-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 35px;
  align-items: flex-start;
}

/* FILTER */

.meeting-filter-sidebar {
  background: #fff;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 30px;
}

.meeting-filter-sidebar h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 28px;
}

.meeting-filter-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meeting-filter-list label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.meeting-filter-list input {
  width: 18px;
  height: 18px;
  accent-color: #10b8c8;
}

/* CONTENT AREA */

.meeting-content-area {
  width: 100%;
}

/* TABLE HEAD */

.meeting-table-head {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  gap: 20px;
  padding: 20px 30px;
  background: #10b8c8;
  border-radius: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* TAB CONTENT */

.meeting-tab-content {
  display: none;
}

.meeting-tab-content.active-meeting-tab {
  display: block;
  animation: fadeMeeting .4s ease;
}

@keyframes fadeMeeting {

  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* DOCUMENT CARD */

.meeting-document-card {
  width: 100%;
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 22px;
  text-decoration: none;
  transition: .4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.meeting-document-card:hover {
  transform: translateY(-4px);
  border-color: #10b8c830;
  box-shadow: 0 14px 35px rgba(15, 118, 110, 0.12);
}

/* DATE */

.meeting-document-date {
  font-size: 15px;
  font-weight: 600;
  color: #10b8c8;
}

/* INFO */

.meeting-document-info h4 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 10px;
  line-height: 32px;
}

.meeting-document-info p {
  color: #6b7280;
  font-size: 15px;
  line-height: 28px;
}

/* VIEW */

.meeting-document-view {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-left: auto;
  transition: .4s ease;
}

.meeting-document-card:hover .meeting-document-view {
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .meeting-main-wrapper {
    grid-template-columns: 1fr;
  }

  .meeting-filter-sidebar {
    position: relative;
    top: 0;
  }

}

@media(max-width:768px) {

  .meeting-header-area h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .meeting-table-head {
    display: none;
  }

  .meeting-document-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .meeting-document-view {
    margin-left: 0;
  }

}

@media(max-width:480px) {

  .meeting-communication-section {
    padding: 70px 5%;
  }

  .meeting-tab-button {
    width: 100%;
  }

  .meeting-filter-sidebar {
    padding: 25px 20px;
  }

  .meeting-document-card {
    padding: 24px 20px;
  }

  .meeting-document-info h4 {
    font-size: 18px;
    line-height: 28px;
  }

}


/* =========================
   INVESTOR CONTACT SECTION
========================= */

.investor-contact-section {
  width: 100%;
  padding: 90px 6%;
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */

.investor-contact-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */

.investor-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.investor-contact-mini-title {
  display: inline-block;
  padding: 10px 24px;
  background: #10b8c815;
  color: #10b8c8;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.investor-contact-header h2 {
  font-size: 48px;
  line-height: 58px;
  color: #111827;
  font-weight: 700;
  margin-bottom: 18px;
}

.investor-contact-header p {
  max-width: 760px;
  margin: auto;
  color: #6b7280;
  font-size: 16px;
  line-height: 30px;
}

/* GRID */

.investor-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */

.investor-contact-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  transition: .4s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
}

.investor-contact-card:hover {
  transform: translateY(-8px);
  border-color: #10b8c830;
  box-shadow: 0 20px 45px rgba(15, 118, 110, 0.15);
}

/* ICON */

.investor-contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.25);
}

/* CONTENT */

.investor-contact-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #10b8c8;
  margin-bottom: 12px;
  letter-spacing: .3px;
}

.investor-contact-content h4 {
  font-size: 28px;
  line-height: 38px;
  color: #111827;
  margin-bottom: 18px;
  font-weight: 700;
}

.investor-contact-content p {
  font-size: 15px;
  line-height: 28px;
  color: #6b7280;
  margin-bottom: 28px;
}

/* LIST */

.investor-contact-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.investor-contact-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 28px;
  color: #374151;
  word-break: break-word;
}

.investor-contact-content ul li i {
  width: 18px;
  color: #10b8c8;
  margin-top: 5px;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .investor-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .investor-contact-section {
    padding: 70px 5%;
  }

  .investor-contact-header h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .investor-contact-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:480px) {

  .investor-contact-card {
    padding: 30px 24px;
  }

  .investor-contact-content h4 {
    font-size: 22px;
    line-height: 32px;
  }

}

.meeting-tab-content {
  display: none;
}

.meeting-tab-content.active-meeting-tab {
  display: block;
}

/* GALLERY ANIMATION */

.gallery-box {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity .45s ease,
    transform .45s ease;
}

.gallery-box.hide {
  opacity: 0;
  transform: scale(.85);
  pointer-events: none;
}

.gallery-box.show {
  opacity: 1;
  transform: scale(1);
}


/* =========================================
   CHAIRMAN MESSAGE NEW DESIGN
========================================= */

.chairman-message-wrapper {
  width: 100%;
  padding: 110px 6%;
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
}

.chairman-message-container {
  width: 100%;
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 45px;
  align-items: start;
}

/* LEFT CONTENT */

.chairman-message-left {
  background: #fff;
  padding: 55px;
  border-radius: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.chairman-message-left::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: #10b8c810;
  border-radius: 50%;
}

/* TAG */

.chairman-message-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #10b8c812;
  border-radius: 50px;
  color: #10b8c8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

.chairman-message-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b8c8;
}

/* TITLE */

.chairman-message-title {
  font-size: 54px;
  line-height: 66px;
  color: #111827;
  margin-bottom: 35px;
  font-weight: 700;
}

/* TEXT */

.chairman-message-description {
  font-size: 17px;
  line-height: 34px;
  color: #4b5563;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

/* SIGNATURE */

.chairman-signature-box {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 35px;
  border-top: 1px solid #e5e7eb;
}

.chairman-signature-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #10b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 25px rgba(15, 118, 110, 0.25);
}

.chairman-signature-info h4 {
  font-size: 28px;
  color: #111827;
  margin-bottom: 6px;
}

.chairman-signature-info p {
  font-size: 16px;
  color: #10b8c8;
  margin-bottom: 5px;
  font-weight: 600;
}

.chairman-signature-info span {
  font-size: 15px;
  color: #6b7280;
}

/* RIGHT SIDE */

.chairman-message-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* QUOTE CARD */

.chairman-vision-card {
  background: linear-gradient(135deg, #10b8c8, #10b8c8);
  border-radius: 35px;
  padding: 45px 38px;
  color: #fff;
  position: sticky;
  top: 40px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.25);
}

.chairman-vision-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -80px;
  right: -80px;
}

.chairman-quote-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.chairman-vision-card h3 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.chairman-vision-card p {
  font-size: 17px;
  line-height: 32px;
  opacity: .92;
  position: relative;
  z-index: 2;
}

/* STATS */

.chairman-achievement-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 35px;
}

.chairman-achievement-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 22px;
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 2;
}

.chairman-achievement-box h4 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 700;
}

.chairman-achievement-box span {
  font-size: 15px;
  opacity: .9;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .chairman-message-container {
    grid-template-columns: 1fr;
  }

  .chairman-vision-card {
    position: relative;
    top: 0;
  }

}

@media(max-width:768px) {

  .chairman-message-wrapper {
    padding: 80px 5%;
  }

  .chairman-message-left {
    padding: 35px 25px;
  }

  .chairman-message-title {
    font-size: 38px;
    line-height: 50px;
  }

  .chairman-message-description {
    font-size: 16px;
    line-height: 30px;
  }

  .chairman-signature-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .chairman-achievement-row {
    grid-template-columns: 1fr;
  }

}

@media(max-width:480px) {

  .chairman-message-title {
    font-size: 32px;
    line-height: 42px;
  }

  .chairman-vision-card {
    padding: 35px 25px;
  }

  .chairman-vision-card h3 {
    font-size: 28px;
    line-height: 38px;
  }

}

/* IMPORTANT */

.chairman-message-container {
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 45px;
  align-items: start;
  /* MUST */
}

/* REMOVE IF EXISTS */
.chairman-message-wrapper {
  overflow: unset !important;
}

/* STICKY CARD */

.chairman-message-right {
  position: sticky;
  top: 120px;
  align-self: start;
  height: fit-content;
}

/* =========================================
   CSR GALLERY SECTION
========================================= */

.csr-gallery-section {
  padding: 100px 7%;
  background: #f8fafc;
}

.csr-gallery-heading {
  text-align: center;
  margin-bottom: 60px;
}

.csr-gallery-heading span {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #1f7a4d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.csr-gallery-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.3;
}

.csr-gallery-heading p {
  max-width: 750px;
  margin: auto;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
}

.csr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.csr-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.csr-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.csr-gallery-item:hover img {
  transform: scale(1.08);
}

.csr-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.csr-gallery-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* LARGE ITEMS */

.csr-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.csr-gallery-item.wide {
  grid-column: span 2;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .csr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .csr-gallery-heading h2 {
    font-size: 34px;
  }
}

@media(max-width:767px) {

  .csr-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .csr-gallery-item.large,
  .csr-gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .csr-gallery-heading h2 {
    font-size: 28px;
  }

  .csr-gallery-overlay h3 {
    font-size: 18px;
  }
}

.procflow-section {
  position: relative;
  padding: 120px 7%;
  overflow: hidden;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.96) 18%,
      rgba(0, 0, 0, 0.88) 35%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.1) 100%),
    url('../img/sat/sat-about.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.procflow-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.procflow-content {
  width: 52%;
  position: relative;
  z-index: 2;
}

.procflow-subtitle {
  color: #00d2ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.procflow-line {
  width: 60px;
  height: 2px;
  background: #00d2ff;
  margin-bottom: 30px;
}

.procflow-content h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 700;
}

.procflow-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.procflow-feature-list {
  margin-top: 50px;
}

.procflow-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 38px;
}

.procflow-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.procflow-icon i {
  font-size: 22px;
  color: #fff;
}

.procflow-text {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 28px;
}

.procflow-text h4 {
  color: #00d2ff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.procflow-text p {
  margin-bottom: 0;
  font-size: 16px;
}

.procflow-image {
  width: 45%;
  position: relative;
}

.procflow-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.procflow-card {
  position: absolute;
  /* bottom: 35px; */
  /* left: -60px; */
  width: 536px;
  background: rgba(5, 24, 34, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 24px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.procflow-card-icon {
  min-width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;
}

.procflow-card-icon i {
  font-size: 42px;
  color: #fff;
}

.procflow-card-text h4 {
  color: #00d2ff;
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.procflow-card-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
}

/* RESPONSIVE */

@media(max-width: 1200px) {

  .procflow-content h2 {
    font-size: 48px;
  }

  .procflow-card {
    width: 100%;
    left: 0;
  }

}

@media(max-width: 991px) {

  .procflow-wrapper {
    flex-direction: column;
  }

  .procflow-content,
  .procflow-image {
    width: 100%;
  }

  .procflow-content h2 {
    font-size: 42px;
  }

  .procflow-card {
    position: relative;
    margin-top: 25px;
    bottom: auto;
  }

}

@media(max-width: 600px) {

  .procflow-section {
    padding: 80px 5%;
  }

  .procflow-content h2 {
    font-size: 34px;
  }

  .procflow-item {
    flex-direction: column;
  }

  .procflow-text {
    border-left: 0;
    padding-left: 0;
  }

  .procflow-card {
    flex-direction: column;
    text-align: center;
  }

}


/* =========================================
   RAIL MIX SECTION
========================================= */

.railmix-section {
  position: relative;
  padding: 120px 7%;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.92)),
    url('../img/logistics/road-rail-bg.jpeg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.railmix-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(0, 210, 255, 0.10),
      transparent 35%);
}

.railmix-container {
  position: relative;
  z-index: 2;
}

.railmix-heading {
  text-align: center;
  margin-bottom: 80px;
}

.railmix-heading span {
  color: #00d2ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.railmix-heading h2 {
  color: #fff;
  font-size: 68px;
  line-height: 1.1;
}

.railmix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;

  margin-bottom: 35px;
}

.railmix-double-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;

  margin-bottom: 35px;
}

.railmix-content-box,
.railmix-full-box {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  border-radius: 28px;

  padding: 45px;

  transition: 0.4s ease;
}

.railmix-content-box:hover,
.railmix-full-box:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 210, 255, 0.35);
}

.railmix-content-box p,
.railmix-full-box p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 2;
  margin: 0;
}

.railmix-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.railmix-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: 0.5s ease;
}

.railmix-image-box:hover img {
  transform: scale(1.08);
}

.railmix-full-box {
  margin-top: 10px;
}

@media(max-width: 991px) {

  .railmix-row,
  .railmix-double-content {
    grid-template-columns: 1fr;
  }

  .railmix-heading h2 {
    font-size: 48px;
  }

}

@media(max-width: 600px) {

  .railmix-section {
    padding: 80px 5%;
  }

  .railmix-heading h2 {
    font-size: 34px;
  }

  .railmix-content-box,
  .railmix-full-box {
    padding: 28px;
  }

  .railmix-content-box p,
  .railmix-full-box p {
    font-size: 15px;
    line-height: 1.9;
  }

}

/* =========================================
   TALENT PATH SECTION
========================================= */

.talent-path-section {
  position: relative;
  overflow: hidden;
  padding: 120px 7%;
  background: #ffffff;
}

.talent-path-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(0, 210, 255, 0.06),
      transparent 35%);
}

.talent-path-container {
  position: relative;
  z-index: 2;
}

.talent-path-heading {
  text-align: center;
  max-width: 900px;
  margin: auto auto 80px;
}

.talent-path-heading span {
  color: #00a8d6;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.talent-path-heading h2 {
  color: #111111;
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.talent-path-heading p {
  color: #555555;
  font-size: 18px;
  line-height: 1.9;
}

.talent-path-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;

  margin-bottom: 35px;
}

.talent-double-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.talent-content-card {
  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: 28px;

  padding: 45px;

  transition: 0.4s ease;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.talent-content-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 168, 214, 0.25);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.talent-card-top {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-bottom: 30px;
}

.talent-card-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;

  background: rgba(0, 168, 214, 0.10);

  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-card-icon i {
  color: #00a8d6;
  font-size: 34px;
}

.talent-card-top span {
  color: #00a8d6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.talent-card-top h3 {
  color: #111111;
  font-size: 38px;
  line-height: 1.2;
  margin-top: 10px;
}

.talent-content-card p {
  color: #555555;
  font-size: 17px;
  line-height: 2;
}

.talent-content-card ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}

.talent-content-card ul li {
  color: #222222;
  margin-bottom: 18px;
  font-size: 16px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.talent-content-card ul li i {
  color: #00a8d6;
}

.talent-image-card {
  overflow: hidden;
  border-radius: 28px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.talent-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: 0.5s ease;
}

.talent-image-card:hover img {
  transform: scale(1.08);
}

.talent-job-list {
  margin-top: 35px;
}

.talent-job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.talent-job-item h4 {
  color: #111111;
  font-size: 20px;
}

.talent-job-item p {
  color: #00a8d6;
  font-size: 15px;
}

.talent-process-list {
  margin-top: 35px;
}

.talent-process-step {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 22px;
}

.talent-process-step span {
  width: 55px;
  height: 55px;
  border-radius: 50%;

  background: rgba(0, 168, 214, 0.10);

  color: #111111;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-process-step p {
  color: #222222;
  margin: 0;
}

/* RESPONSIVE */

@media(max-width: 991px) {

  .talent-path-row,
  .talent-double-grid {
    grid-template-columns: 1fr;
  }

  .talent-path-heading h2 {
    font-size: 48px;
  }

}

@media(max-width: 600px) {

  .talent-path-section {
    padding: 80px 5%;
  }

  .talent-path-heading h2 {
    font-size: 34px;
  }

  .talent-content-card {
    padding: 30px;
  }

  .talent-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .talent-card-top h3 {
    font-size: 28px;
  }

  .talent-content-card p {
    font-size: 15px;
    line-height: 1.9;
  }

}

/* =========================================
   CURRENT OPENINGS SECTION
========================================= */

.career-opening-section {
  padding: 120px 7%;
  background: #f4f6f9;
}

.career-opening-container {
  width: 100%;
}

.career-opening-heading {
  text-align: center;
  margin-bottom: 60px;
}

.career-opening-heading span {
  color: #16b9c8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.career-opening-heading h2 {
  color: #101828;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.career-opening-heading p {
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin: auto;
}

.career-opening-table {
  background: #ffffff;
  border-radius: 36px;
  padding: 45px;

  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.06);
}

.career-opening-head {
  display: grid;
  grid-template-columns: 220px 1fr 120px;

  background: #16b9c8;

  padding: 24px 30px;

  border-radius: 22px;

  margin-bottom: 24px;
}

.career-opening-head div {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.career-opening-row {
  display: grid;
  grid-template-columns: 220px 1fr 120px;
  align-items: center;
  background: #f9fafb;
  padding: 0px 30px;
  border-radius: 22px;
  margin-bottom: 18px;
  border: 1px solid #edf1f5;
  transition: 0.4s ease;
}

.career-opening-row:hover {
  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.career-opening-date {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
}

.career-opening-info h3 {
  font-size: 18px;
  color: #101828;
  margin-bottom: 10px;
}

.career-opening-info p {
  color: #667085;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.career-opening-link {
  text-align: center;
}

.career-opening-link a {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: 0.4s ease;
}

.career-opening-link a i {
  color: #16b9c8;
  font-size: 17px;
}

.career-opening-link a:hover {
  background: #16b9c8;
}

.career-opening-link a:hover i {
  color: #ffffff;
}

/* RESPONSIVE */

@media(max-width: 991px) {

  .career-opening-head,
  .career-opening-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .career-opening-link {
    text-align: left;
  }

  .career-opening-heading h2 {
    font-size: 46px;
  }

}

@media(max-width: 600px) {

  .career-opening-section {
    padding: 80px 5%;
  }

  .career-opening-table {
    padding: 25px;
  }

  .career-opening-heading h2 {
    font-size: 34px;
  }

  .career-opening-info h3 {
    font-size: 24px;
  }

  .career-opening-info p {
    font-size: 15px;
  }

  .career-opening-head {
    display: none;
  }

}

/* =========================================
   APPLICATION PROCESS SECTION
========================================= */

.hireflow-section {
  position: relative;
  overflow: hidden;

  padding: 130px 7%;

  background:
    linear-gradient(rgba(4, 10, 18, 0.92),
      rgba(4, 10, 18, 0.94)),
    url('../img/career/process-bg.jpeg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hireflow-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top center,
      rgba(0, 210, 255, 0.14),
      transparent 40%);
}

.hireflow-container {
  position: relative;
  z-index: 2;
}

.hireflow-heading {
  text-align: center;
  max-width: 950px;
  margin: auto auto 90px;
}

.hireflow-heading span {
  display: inline-block;

  color: #00d2ff;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.hireflow-heading h2 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hireflow-heading p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 17px;
  line-height: 1.9;
}

.hireflow-process-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0;
}

.hireflow-step {
  position: relative;

  width: 100%;
  max-width: 320px;

  text-align: center;

  padding: 45px 35px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  border-radius: 30px;

  transition: 0.4s ease;
}

.hireflow-step:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 210, 255, 0.35);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.hireflow-number {
  position: absolute;

  top: -18px;
  left: 50%;

  transform: translateX(-50%);

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: #00d2ff;

  color: #ffffff;

  font-size: 18px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hireflow-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 30px;
}

.hireflow-icon i {
  color: #ffffff;
  font-size: 25px;
}

.hireflow-step h3 {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.hireflow-step p {
  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;
  line-height: 1.9;

  margin: 0;
}

.hireflow-line {
  width: 90px;
  height: 2px;

  background:
    linear-gradient(to right,
      rgba(0, 210, 255, 0.15),
      #00d2ff,
      rgba(0, 210, 255, 0.15));

  margin: 0 10px;
}

/* RESPONSIVE */

@media(max-width: 1200px) {

  .hireflow-process-wrapper {
    flex-wrap: wrap;
    gap: 35px;
  }

  .hireflow-line {
    display: none;
  }

}

@media(max-width: 768px) {

  .hireflow-section {
    padding: 90px 5%;
  }

  .hireflow-heading {
    margin-bottom: 60px;
  }

  .hireflow-heading h2 {
    font-size: 42px;
  }

  .hireflow-heading p {
    font-size: 16px;
  }

  .hireflow-step {
    padding: 40px 25px;
  }

  .hireflow-step h3 {
    font-size: 24px;
  }

}


/* =========================
COMMON
========================= */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading span {
  color: #10b8c8;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: 18px;
  color: #111;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1.2;
}

/* =========================
MINERAL SECTION
========================= */
.mineral-section {
  padding: 120px 7%;
  background: #fff;
}

.mineral-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.mineral-left {
  flex: 1;
}

.mineral-tag {
  display: inline-block;
  /* background: rgb(165 165 165 / 12%); */
  color: #10b8c8;
  padding: 10px 4px;
  border-radius: 40px;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mineral-left h2 {
  font-size: 47px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #111;
}

.mineral-left h2 span {
  color: #10b8c8;
}

.mineral-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.mineral-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mineral-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 45px 30px;
  transition: 0.4s;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mineral-card:hover {
  transform: translateY(-10px);
}

.mineral-card i {
  font-size: 45px;
  color: #10b8c8;
  margin-bottom: 20px;
}

.mineral-card h4 {
  font-size: 22px;
  line-height: 1.5;
  color: #111;
}

/* =========================
BUSINESS MODEL
========================= */
.business-model-section {
  padding: 120px 7%;
  background: #f8f8f8;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.business-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 25px;
  transition: 0.4s;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.business-box:hover {
  transform: translateY(-10px);
}

.business-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: rgb(212 212 212 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.business-icon i {
  font-size: 35px;
  color: #10b8c8;
}

.business-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.business-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.business-bottom-text {
  margin-top: 60px;
  text-align: center;
}

.business-bottom-text p {
  max-width: 950px;
  margin: auto;
  font-size: 18px;
  line-height: 2;
  color: #444;
}

/* =========================
PARTNERSHIP
========================= */
.partnership-section {
  padding: 120px 7%;
  background: #fff;
}

.partnership-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.partnership-left {
  flex: 1;
}

.partnership-tag {
  color: #10b8c8;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.partnership-left h2 {
  font-size: 36px;
  margin: 25px 0;
  line-height: 1.2;
  color: #111;
}

.partnership-left h2 span {
  color: #10b8c8;
}

.partnership-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.partnership-left ul {
  padding-left: 20px;
}

.partnership-left ul li {
  margin-bottom: 18px;
  font-size: 18px;
  color: #333;
}

.partnership-quote {
  margin-top: 40px;
  padding: 30px;
  border-left: 5px solid #10b8c8;
  background: #f8f8f8;
  border-radius: 15px;
}

.partnership-quote p {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.partnership-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.partnership-card {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.partnership-card i {
  font-size: 110px;
  color: #10b8c8;
}

/* =========================
SUSTAINABILITY
========================= */
.sustainability-section {
  padding: 120px 7%;
  background: #f8f8f8;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.sustainability-box {
  background: #fff;
  padding: 45px 30px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sustainability-box:hover {
  transform: translateY(-10px);
}

.sustainability-box i {
  font-size: 50px;
  color: #10b8c8;
  margin-bottom: 25px;
}

.sustainability-box h3 {
  font-size: 22px;
  line-height: 1.7;
  color: #111;
  font-weight: 600;
}

.sustainability-bottom {
  margin-top: 60px;
  text-align: center;
}

.sustainability-bottom p {
  font-size: 20px;
  color: #444;
  line-height: 1.9;
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:1200px) {

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:991px) {

  .mineral-container,
  .partnership-container {
    flex-direction: column;
  }

  .mineral-right {
    width: 100%;
  }

  .partnership-card {
    width: 320px;
    height: 320px;
  }

  .section-heading h2,
  .mineral-left h2,
  .partnership-left h2 {
    font-size: 40px;
  }
}

@media(max-width:768px) {

  .business-grid,
  .sustainability-grid,
  .mineral-right {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .mineral-left h2,
  .partnership-left h2 {
    font-size: 32px;
  }

  .partnership-card {
    width: 260px;
    height: 260px;
  }

  .partnership-card i {
    font-size: 80px;
  }
}


.gq-career-section {
  padding: 100px 0;
  background: #fff;
}

.gq-career-container {
  width: 90%;
  margin: auto;
}

.gq-career-heading {
  text-align: center;
  margin-bottom: 60px;
}

.gq-career-heading span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #10b8c8;
  margin-bottom: 15px;
  font-weight: 600;
}

.gq-career-heading h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.gq-career-heading p {
  max-width: 750px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.gq-career-table {
  border: 1px solid #eee;
  border-radius: 24px;
  overflow: hidden;
}

.gq-career-head {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr 1fr;
  background: #10b8c8;
  color: #fff;
  padding: 22px 30px;
  font-weight: 600;
}

.gq-career-row {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr 1fr;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid #eee;
  transition: 0.4s;
}

.gq-career-row:hover {
  background: #fafafa;
}

.gq-career-department {
  font-weight: 600;
  color: #111;
}

.gq-career-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.gq-career-info p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.gq-career-pdf a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  color: #111;
  font-size: 22px;
  text-decoration: none;
}

.gq-apply-btn {
  border: none;
  background: #10b8c8;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.4s;
}

.gq-apply-btn:hover {
  background: #10b8c8;
}


/* =========================================
   CUSTOM MODAL
========================================= */

.gq-custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gq-custom-modal.active {
  display: flex;
}

.gq-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}

.gq-modal-box {
  position: relative;
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  z-index: 2;
  animation: gqModalAnim .4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes gqModalAnim {

  from {
    opacity: 0;
    transform: translateY(40px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}

.gq-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  font-size: 18px;
  cursor: pointer;
  transition: .4s;
}

.gq-modal-close:hover {
  background: #111;
  color: #fff;
}

.gq-modal-top {
  margin-bottom: 35px;
}

.gq-modal-top span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #10b8c8;
  font-weight: 600;
}

.gq-modal-top h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 12px 0;
  color: #111;
}

.gq-modal-top p {
  color: #666;
  line-height: 1.8;
}

.gq-form-group {
  margin-bottom: 25px;
}

.gq-form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
}

.gq-form-group input {
  width: 100%;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 15px;
  outline: none;
  transition: .4s;
}

.gq-form-group input:focus {
  border-color: #111;
}

.gq-form-group input[type="file"] {
  padding: 16px;
  height: auto;
}

.gq-form-group small {
  display: block;
  margin-top: 10px;
  color: #777;
}

.gq-modal-submit {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

.gq-modal-submit:hover {
  background: #10b8c8;
}

body.gq-modal-open {
  overflow: hidden;
}

@media(max-width:768px) {

  .gq-modal-box {
    padding: 35px 25px;
    border-radius: 22px;
  }

  .gq-modal-top h2 {
    font-size: 30px;
  }

  .gq-career-heading h2 {
    font-size: 37px;
  }

  .gq-career-container {
    width: 100%;
  }

  .gq-career-head {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    background: #10b8c8;
    color: #fff;
    padding: 18px 12px;
    font-weight: 500;
    gap: 16px;
    font-size: 12px;
  }

  .gq-career-table {
    border: 1px solid #eee;
    border-radius: 0px;
    overflow: hidden;
  }

  .gq-career-row {
    padding: 9px;
    gap: 16px;
    font-size: 12px;
  }

  .gq-apply-btn {
    border: none;
    background: #fff;
    color: #10b8c8;
    padding: 4px 0px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.4s;
    font-size: 12px;
  }

  .gq-career-pdf a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #f3f3f3; */
    color: #111;
    font-size: 22px;
    text-decoration: none;
  }

  .gq-career-department {
    font-weight: 600;
    color: #404040;
  }

}






/* ===== SECTION ===== */

.mq-chairman-section {
    position: relative;
    width: 100%;
    padding: 181px 60px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-family: 'Poppins',sans-serif;
}

.mq-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
            rgba(0,0,0,.92),
            rgba(0,0,0,.72),
            rgba(0,0,0,.45));
    z-index:1;
}

.mq-container{
    position:relative;
    z-index:2;
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* ===== LEFT ===== */

.mq-left-content{
    width:64%;
}

.mq-heading {
    font-size: 50px;
    line-height: 72px;
    font-weight: 900;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.mq-heading span{
    margin-top:8px;
    background:#10b8c8;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mq-tagline{
    margin-top:18px;
    color:#fff;
    font-size:16px;
    letter-spacing:1.5px;
    font-weight:500;
}

.mq-message-box{
    margin-top:32px;
    background:#f8f6f2;
    border-radius:28px;
    padding:38px 42px;
    box-shadow:0 10px 40px rgba(0,0,0,.28);
}

.mq-message-box p{
    font-size:17px;
    line-height:33px;
    color:#1c1c1c;
    margin-bottom:22px;
    font-weight:400;
}

/* ===== RIGHT ===== */

.mq-right-content{
    width:36%;
    padding-top:95px;
}

.mq-vision-card{
    background:#f8f6f2;
    border-radius:28px;
    padding:38px;
    box-shadow:0 10px 40px rgba(0,0,0,.28);
}

.mq-quote-mark{
    font-size:65px;
    color:#10b8c8;
    line-height:1;
    font-family:serif;
    margin-bottom:8px;
}

.mq-vision-card h3 {
    font-size: 28px;
    line-height: 45px;
    font-weight: 400;
    color: #111;
    margin: 0;
}

.mq-vision-card h3 strong{
    display:block;
    font-weight:800;
}

.mq-vision-card h3 span {
    display: block;
    color: #10b8c8;
    font-weight: 800;
}

.mq-chairman-info{
    margin-top:42px;
    text-align:center;
}

.mq-chairman-info img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2d575b;
    margin-bottom: 16px;
    padding: 3px;
}

.mq-chairman-info h4{
    font-size:22px;
    color:#10b8c8;
    margin-bottom:6px;
    font-weight:700;
    letter-spacing:.5px;
}

.mq-chairman-info p{
    font-size:14px;
    color:#333;
    margin:0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1200px){

    .mq-container{
        flex-direction:column;
    }

    .mq-left-content,
    .mq-right-content{
        width:100%;
    }

    .mq-right-content{
        padding-top:0;
    }
}

@media(max-width:768px){

    .mq-chairman-section{
        padding:45px 20px;
    }

    .mq-heading{
        font-size:46px;
        line-height:44px;
    }

    .mq-tagline{
        font-size:12px;
        line-height:20px;
    }

    .mq-message-box{
        padding:25px;
        border-radius:20px;
    }

    .mq-message-box p{
        font-size:15px;
        line-height:28px;
    }

    .mq-vision-card{
        padding:28px 24px;
        border-radius:20px;
    }

    .mq-vision-card h3{
        font-size:24px;
        line-height:40px;
    }

    .mq-chairman-info img{
        width:110px;
        height:110px;
    }

    .mq-chairman-info h4{
        font-size:18px;
    }
}


.why-goquest-wrap{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    max-width:950px;
}

.why-boxx{
    position:relative;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:24px;
    padding:30px 30px 28px;
    transition:.4s ease;
    overflow:hidden;
}

.why-boxx::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(to bottom,#f5c04e,#c98513);
}

.why-boxx:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,0.12);
    border-color:rgba(255,255,255,0.25);
}

.why-number{
    font-size:15px;
    font-weight:700;
    color:#f5c04e;
    letter-spacing:2px;
    margin-bottom:15px;
}

.why-boxx h3{
    font-size:28px;
    line-height:38px;
    color:#fff;
    font-weight:700;
    margin-bottom:8px;
}

.why-boxx p{
    font-size:17px;
    line-height:30px;
    color:rgba(255,255,255,0.82);
    margin:0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .why-goquest-wrap{
        grid-template-columns:1fr;
        gap:18px;
    }

    .why-boxx{
        padding:24px;
        border-radius:18px;
    }

    .why-boxx h3{
        font-size:22px;
        line-height:32px;
    }

    .why-boxx p{
        font-size:15px;
        line-height:26px;
    }
}

.con-email{
  display: flex;
  gap:6px
}
.con-email a{
  color: #fff;
}

   .gq-view-btn,
    .gq-apply-btn {
        padding: 10px 18px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
    }

    .gq-view-btn {
        background: #1f2937;
        color: #fff;
    }

    .gq-apply-btn {
        background: #e63946;
        color: #fff;
    }

.gq-view-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.65);
    z-index: 999999;

    display: none; /* IMPORTANT */

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.gq-view-overlay.active{
    display: flex;
}

.gq-view-box{
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    position: relative;
}

    @keyframes popupFade {
        from {
            transform: scale(0.8);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    
    .career-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999999;
    padding: 20px;
}

.career-popup.active{
    display: flex;
}

.career-popup-inner{
    width: 100%;
    max-width: 750px;
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    position: relative;
    animation: popupAnim .3s ease;
}

.career-popup-close{
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
}

.career-popup-content p{
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
}

@keyframes popupAnim{

    from{
        transform: scale(.85);
        opacity: 0;
    }

    to{
        transform: scale(1);
        opacity: 1;
    }

}