@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

body {
  font-family: "Figtree", sans-serif;
  scroll-behavior: smooth;
  /* enables smooth scroll for anchor links */
  overscroll-behavior: none;
  /* prevents bounce on some browsers */
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* improves momentum scrolling on iOS */
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  width: 90%;
}

.btn {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 12px 22px;
  border-radius: 2px 2px 20px 2px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.btn-primary {
  background: #149B83;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #0F9991;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #0F9991;
  color: #fff;
}

.btn-small {
  padding: 10px 20px;
  background: #149B83;
  color: #fff;
  border: none;
}

.btn-small:hover {
  background: #0F9991;
}

.modal {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
 
}

@media (max-width: 576px) {
  .modal {
    top: 10px;
    background:#fff !important;
  }
}

.modal-content {
  background: white;
  padding: 25px;
  max-width: 1000px;
  width: 90%;
  border-radius: 20px;
  text-align: left;
  position: relative;
  box-sizing: border-box;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

@media(max-width:576px){
    .modal-content {
    box-shadow:none;
    padding-top:50px;
        
    }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #0f9991;   /* green background */
  color: #fff;        /* cross color */
  font-size: 24px;     /* bigger cross */
  line-height: 30px;
  text-align: center;
  border-radius: 50%;  /* make it circular (optional) */
  cursor: pointer;
}

/*.close-btn {*/
/*  position: absolute;*/
/*  top: 15px;*/
/*  right: 15px;*/
/*  cursor: pointer;*/
/*}*/

@media (max-width: 576px) {
  .close-btn {
    top: 19px;
    right: -7px;
  }
}

.modal-body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}

@media (max-width: 600px) {
  .modal-body {
    flex-direction: column;
  }
}

.modal-image {
  flex: 1;
  /* Image takes up 40% or adjusts */
  min-height: 48rem;
}

@media (max-width: 576px) {
  .modal-image {
    min-height: 20rem;
  }
}

.modal-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.modal_content {
  flex: 1;
  /* Content takes up 55% or adjusts */
}

.modal_content h2 {
  margin-bottom: 1rem;
  font-size: 4rem;
  color: #000000;
}

@media (max-width: 576px) {
  .modal_content h2 {
    font-size: 2.5rem;
  }
}

.modal_content p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #000000;
}

@media (max-width: 576px) {
  .modal_content p {
    font-size: 1.4rem;
  }
}

.modal_content ul {
  list-style: none;
}

.modal_content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #000000;
}

@media (max-width: 576px) {
  .modal_content ul li {
    font-size: 1.4rem;
  }
}

.modal_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  background-image: url("/imgs/tick.svg");
  /* Absolute path from public folder */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  background-color: #fff;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0;
}

.header.sticky {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.header.hide {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .header {
    padding: 2rem 0rem;
  }

  .header.hide {
    transform: none;

  }

}

.header_wrapper {
  background-color: #fff;
  border-radius: 1.2rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header_wrapper {
    padding: 1rem;
    position: relative;
  }
}

.header_logo img {
  height: 6rem;
}

.header .menu_button {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header .menu_button nav ul {
  list-style: none;
  display: flex;
  gap: 3.5rem;
}

.header .menu_button nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: 0.3s;
  font-size: 1.5rem;
}

.header .menu_button nav ul li a.active,
.header .menu_button nav ul li a:hover {
  color: #0F9991;
}

/* ✅ Hamburger style */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: 0.3s;
}

/* ✅ Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }

  .menu_button nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 30rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem;
    transition: right 0.4s ease;
  }

  .menu_button nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  .menu_button nav.active {
    right: 0;
  }

  .menu_button .btn {
    display: none;
  }
}

/* ✅ Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.footer {
  background-color: #222222;
  color: #fff;
  padding: 6rem 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-color: #000000;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .footer::before {
    display: none;
  }
}

.footer .footer_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer .footer_wrapper {
    align-items: flex-start;
  }
}

.footer .footer_wrapper .footer_abs_image {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .footer .footer_wrapper .footer_abs_image {
    display: none;
  }
}

.footer .footer_wrapper .footer_first {
  flex: 1 1 300px;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .footer .footer_wrapper .footer_first {
    padding: 0;
  }
}

.footer .footer_wrapper .footer_first .logo_footer img {
  max-width: 15rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer .footer_wrapper .footer_first .logo_footer img {
    max-width: 12rem;
  }
}

.footer .footer_wrapper .footer_first .copyright {
  padding-bottom: 0 !important;
}

.footer .footer_wrapper .footer_first .address,
.footer .footer_wrapper .footer_first .call_to_action,
.footer .footer_wrapper .footer_first .copyright {
  padding-bottom: 1.5rem;
  max-width: 30rem;
  position: relative;
  z-index: 1;
}

.footer .footer_wrapper .footer_first .address p,
.footer .footer_wrapper .footer_first .call_to_action p,
.footer .footer_wrapper .footer_first .copyright p {
  margin: 0.5rem 0;
  line-height: 1.6;
  font-size: 1.4rem;
}

.footer .footer_wrapper .footer_second {
  flex: 1 1 300px;
  display: flex;
  gap: 10rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-height: 24.5rem;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .footer .footer_wrapper .footer_second {
    min-height: initial;
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer .footer_wrapper .footer_second h5 {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 1rem;
}

.footer .footer_wrapper .footer_second nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer_wrapper .footer_second nav ul li {
  margin-bottom: 0.8rem;
}

.footer .footer_wrapper .footer_second nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.4rem;
}

.footer .footer_wrapper .footer_second nav ul li a:hover {
  color: #ccc;
}

@media (max-width: 1024px) {
  .footer .footer_wrapper {
    gap: 3rem;
  }

  .footer .footer_second {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer .footer_wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer .footer_second {
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
  }
}

.hero {
  height: calc(112vh - 80px);
  /* Adjust for fixed header height */
  padding-top: 80px;
  /* Push below header */
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  /* fallback for mobile */
}

@media (max-width: 576px) {
  .hero {
    background-attachment: scroll;
    height: calc(70vh - 80px);
    /* only on larger screens */
  }
}

.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 2rem;
  width: 100%;
  max-width: 100rem;
}

@media (max-width: 576px) {
  .hero .hero-content {
    padding-top: 10rem;
  }
}

.hero .hero-content h1 {
  font-size: 7.5rem;
  font-weight: 300;
  line-height: 1.3;
}

.hero .hero-content h1 strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.our-business {
  padding: 80px 0;
  background: #CEE3DF;
  /* Top content (heading + intro) */
  /* Business cards */
  /* 🌍 Responsive Styles */
}

.our-business .business-top-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.our-business .business-top-content .business-left {
  flex: 1;
  margin-bottom: 20px;
}

.our-business .business-top-content .business-left .subtitle {
  color: #008080;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.our-business .business-top-content .business-left .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.our-business .business-top-content .business-right {
  flex: 1;
  max-width: 600px;
}

.our-business .business-top-content .business-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.our-business .business-element .business-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 486px;
  border-radius: 35px;
  padding: 100px 40px;
  transition: background 0.3s ease;
}

.our-business .business-element .business-item .business-content {
  flex: 1;
}

.our-business .business-element .business-item .business-content .content_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.our-business .business-element .business-item .business-content .business-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.our-business .business-element .business-item .business-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
  max-width: 48rem;
}

.our-business .business-element .business-item .business-content .items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 45rem;
}

.our-business .business-element .business-item .business-content .items span {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.our-business .business-element .business-item .business-content .items span i {
  margin-right: 6px;
}

.our-business .business-element .business-item .business-content .btn_wrapper {
  display: inline-block;
  margin-top: 3rem;
}

.our-business .business-element .business-item .business-image {
  flex: 0 0 40%;
}

.our-business .business-element .business-item .business-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.our-business .card--green {
  background-color: #69c3b2;
}

.our-business .card--lightblue {
  background-color: #54bccc;
  top: 140px;
}

.our-business .card--lightgreen {
  background-color: #4db8a4;
  top: 9rem;
}

.our-business .card--lightdark {
  background-color: #0ab1cb;
  top: 10rem;
}

.our-business .card--moredark {
  background-color: #29aa91;
  top: 11rem;
}

.our-business .more--lightblue {
  background-color: #009fb8;
}

@media (max-width: 992px) {
  .our-business .business-element .business-item {
    flex-direction: column;
    text-align: left;
    gap: 20px;
    padding: 30px;
  }

  .our-business .business-element .business-item .business-image {
    flex: 1 1 auto;
    width: 100%;
  }

  .our-business .business-element .business-item .business-image img {
    max-height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .our-business {
    padding: 60px 0;
  }

  .our-business .business-top-content .section-title {
    font-size: 28px;
  }

  .our-business .business-element .business-item {
    padding: 20px;
  }

  .our-business .business-element .business-item .business-content .business-title {
    font-size: 22px;
  }

  .our-business .business-element .business-item .business-content p {
    font-size: 14px;
  }

  .our-business .business-element .business-item .business-content .btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}

.card {
  margin-bottom: -150px;
  /* adjust overlap depth */
  z-index: 1;
  position: relative;
}

.card:nth-child(2) {
  z-index: 2;
}

.card:nth-child(3) {
  z-index: 3;
}

.stack-section {
  position: relative;
  padding: 8rem 0;
}

.stack-section .business-element {
  position: sticky;
  top: 130px;
  /* stick 20px below header */
  margin-bottom: 4rem;
  z-index: 1;
  border-radius: 3.4rem;
  overflow: hidden;
  transform-origin: top center;
  transition: transform 0.3s ease;
}

.stack-section .card2 {
  top: 145px;
}

.stack-section .card3 {
  top: 160px;
}

.stack-section .card4 {
  top: 175px;
}

.stack-section .card5 {
  top: 190px;
}

.stack-section .card6 {
  top: 205px;
}

.mining_energy {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}

@media (max-width: 576px) {
  .mining_energy {
    background-position: 60% 50% !important;
    background-attachment: scroll !important;
  }
}

.mining_energy .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 0 8rem;
}

@media (max-width: 768px) {
  .mining_energy .container {
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }
}

.mining_energy .mining_right {
  max-width: 600px;
  color: #fff;
}

.mining_energy .mining_right h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

@media (max-width: 576px) {
  .mining_energy .mining_right h1 {
    font-size: 2.5rem;
  }
}

.mining_energy .mining_right p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mining_energy .mining_right .btn_wrapper {
  display: inline-block;
}

.we_do {
  color: #fff;
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Top section */
  /* Bottom section */
  /* Responsive adjustments */
}

.we_do .we_do_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.we_do .we_do_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 576px) {
  .we_do .we_do_top {
    flex-direction: column;
    gap: 20px;
  }
}

.we_do .we_do_top .text_heading h1 {
  font-size: 5.5rem;
  font-weight: 400;
  margin: 0;
  color: #000000;
}

@media (max-width: 576px) {
  .we_do .we_do_top .text_heading h1 {
    font-size: 2.5rem;
  }
}

.we_do .we_do_top .text_content {
  max-width: 670px;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.we_do .we_do_bottom {
  display: flex;
  gap: 80px;
  /* Left side accordion */
  /* Right side image */
}

.we_do .we_do_bottom .we_do_left {
  flex: 1;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0 12px 0;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  display: inline-block;
  color: #000000;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item .toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 0;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item .toggle img {
  width: 26px;
  height: 26px;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item .toggle .minus {
  display: none;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item p {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  color: #000000;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item .btn_wrapper {
  margin-top: 1rem;
  display: inline-block;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item.active p {
  max-height: 1000px;
  /* must be larger than tallest content */
  opacity: 1;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item.active .btn_wrapper {
  opacity: 1;
  max-height: 1000px;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item.active .toggle .plus {
  display: none;
}

.we_do .we_do_bottom .we_do_left .we_accord .accord_item.active .toggle .minus {
  display: inline;
}

.we_do .we_do_bottom .we_do_right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.we_do .we_do_bottom .we_do_right .we_image {
  width: 100%;
  transition: height 0.5s ease;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  height: 100%;
}

.we_do .we_do_bottom .we_do_right .we_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.we_do .we_do_bottom .we_do_right .we_image img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

@media (max-width: 992px) {
  .we_do .we_do_bottom {
    flex-direction: column;
    gap: 40px;
  }

  .we_do .we_do_right {
    justify-content: center;
  }
}

.about_us {
  height: calc(112vh - 9rem);
  padding-top: 9rem;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .about_us {
    height: calc(80vh - 9rem);
    background-attachment: scroll;
  }
}

.about_us .about_heading {
  font-size: 6.6rem;
  line-height: 1.2;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .about_us .about_heading {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
}

.about_us .who_bold_text {
  font-weight: 700;
}

.about_mining {
  height: 90vh;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  position: relative;
}

.about_mining .mining_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about_mining .mining_logo img {
  max-width: 200px;
  height: auto;
}

.about_mining .heading h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  max-width: 800px;
}

@media (max-width: 576px) {
  .about_mining .heading h1 {
    font-size: 2rem;
  }
}

.about_mining .heading .text_bold {
  font-weight: 700;
  color: #000;
}

.about_mission {
  height: 90vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .about_mission {
    background-attachment: scroll !important;
  }
}

.about_mission .mission_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.about_mission .mission_content .right_content {
  max-width: 550px;
}

.about_mission .mission_content .right_content .mission_image {
  margin-bottom: 20px;
}

.about_mission .mission_content .right_content .mission_image img {
  max-width: 60px;
  height: auto;
}

.about_mission .mission_content .right_content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 576px) {
  .about_mission .mission_content .right_content h2 {
    font-size: 2rem;
  }
}

.about_mission .mission_content .right_content p {
  font-size: 2.5rem;
  line-height: 1.6;
  max-width: 500px;
}

@media (max-width: 576px) {
  .about_mission .mission_content .right_content p {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

@media (max-width: 992px) {
  .about_mission .mission_content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about_mission .mission_content .right_content {
    margin: 0 auto;
  }
}

.about_vision {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .about_vision {
    background-attachment: scroll !important;
  }
}

.about_vision .vision_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.about_vision .left_content {
  max-width: 550px;
}

.about_vision .left_content .about_vision_icon {
  margin-bottom: 20px;
}

.about_vision .left_content .about_vision_icon img {
  max-width: 60px;
  height: auto;
}

.about_vision .left_content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 576px) {
  .about_vision .left_content h2 {
    font-size: 2rem;
  }
}

.about_vision .left_content p {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #fff;
  max-width: 500px;
}

@media (max-width: 576px) {
  .about_vision .left_content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .about_vision .vision_content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about_vision .vision_content .left_content {
    margin: 0 auto;
  }
}

.our-values {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}

.our-values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  text-align: left;
}

.our-values .values-grid .value-item {
  background: transparent;
  padding: 45px 50px;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
}

.our-values .values-grid .value-item:nth-child(3n) {
  border-right: none;
}

.our-values .values-grid .value-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.our-values .values-grid .value-item h3 {
  font-size: 25px;
  margin: 15px 0 10px;
  font-weight: 400;
}

.our-values .values-grid .value-item p {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
  max-width: 280px;
}

.our-values .values-grid .value-item .value-icon {
  margin-bottom: 10px;
}

.our-values .values-grid .value-item .value-icon video,
.our-values .values-grid .value-item .value-icon img {
  width: 60px;
  height: 60px;
}

.our-values .values-grid .value-item.intro h2 {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.our-values .values-grid .value-item.intro p {
  font-size: 16px;
  color: #000;
  max-width: 290px;
}

/* Responsive */
@media (max-width: 992px) {
  .our-values .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .our-values .values-grid .value-item {
    padding: 25px 30px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .our-values .values-grid .value-item:nth-child(2n) {
    border-right: none;
  }

  .our-values .values-grid .value-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .our-values .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .our-values .values-grid .value-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .our-values .values-grid .value-item:last-child {
    border-bottom: none;
  }

  .our-values .values-grid .value-item.intro h2 {
    font-size: 24px;
  }

  .our-values .values-grid .value-item.intro p {
    font-size: 14px;
  }
}

.what-we-do {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px !important;
  min-height: calc(112vh - 80px);
}

@media (max-width: 576px) {
  .what-we-do {
    min-height: calc(90vh - 80px);
    background-attachment: scroll;
  }
}

.what-we-do .what-content {
  max-width: 480px;
}

.what-we-do .what-heading {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}

.what-we-do .what-heading span {
  font-weight: 700;
}

.what-we-do .what-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 300;
}

/* Responsive CSS */
@media (max-width: 992px) {
  .what-we-do {
    padding: 80px 0;
  }

  .what-we-do .what-heading {
    font-size: 40px;
  }

  .what-we-do .what-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .what-we-do {
    text-align: center;
  }

  .what-we-do .what-content {
    max-width: 100%;
    padding-top: 5rem;
  }

  .what-we-do .what-heading {
    font-size: 32px;
  }

  .what-we-do .what-text {
    font-size: 14px;
  }
}

.refining {
  padding: 80px 0;
  background: #0ab1cb;
}

.refining .refining_cards {
  display: flex;
  gap: 1px;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
}

.refining .refining_cards .refining_card {
  flex: 1;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: flex 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  border-radius: 4px;
}

.refining .refining_cards .refining_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.refining .refining_cards .refining_card .card_content {
  opacity: 0;
  visibility: hidden;
  padding: 40px;
  max-width: 550px;
  z-index: 2;
  transition: opacity 0.5s ease;
  text-align: left;
}

.refining .refining_cards .refining_card .card_content .btn_accord {
  display: inline-block;
}

.refining .refining_cards .refining_card .card_content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.refining .refining_cards .refining_card .card_content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.refining .refining_cards .refining_card .card_title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 28px;
  font-weight: 300;
  margin: 0;
  z-index: 2;
  white-space: normal;
  /* allow wrapping if needed */
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  max-width: 80px;
  /* adjust as needed */
  overflow: hidden;
  /* optional: hides overflow */
  text-overflow: ellipsis;
  /* optional: add ... if text too long */
}

@media (max-width: 768px) {
  .refining .refining_cards .refining_card .card_title {
        position:absolute !important;
        top: 50% !important;
        left:auto !important;
        transform: translateY(-50%) !important;
        height: 100% !important;
        padding-left: 20px !important;
        display: flex !important;
        align-items: center !important;
        font-size:20px !important;
        max-width:100% !important;
    
  }
  
   .refining_cards .refining_card.active .card_title
 {
        display: none !important;
    }
}

.refining .refining_cards .refining_card.active {
  flex: 4;
  align-items: flex-end;
  justify-content: flex-start;
}

.refining .refining_cards .refining_card.active .card_content {
  opacity: 1;
  visibility: visible;
}

.refining .refining_cards .refining_card.active .card_title {
  display: none;
}

@media (max-width: 768px) {
  .refining .refining_cards {
    flex-direction: column;
    height: auto;
  }

  .refining .refining_cards .refining_card {
    flex: unset;
    height: 80px;
    justify-content: flex-start;
    align-items: center;
  }

  .refining .refining_cards .refining_card .card_title {
    writing-mode: horizontal-tb;
    transform: none;
    position: relative;
    left: auto;
    top: auto;
  }

  .refining .refining_cards .refining_card.active {
    height: auto;
    align-items: flex-start;
  }

  .refining .refining_cards .refining_card.active .card_title {
    display: none;
  }

  .refining .refining_cards .refining_card .card_content {
    padding: 15px;
  }
}

.map_section {
  z-index: 1 !important;
}

.map_section .map_wrapper {
  padding-top: 90px;
}

.map_section .map_wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 0;
  z-index: 1;
}

.map_section .map_wrapper .map_bottom_image {
  background-image: url("{{ asset('imgs/contact/dot.svg') }}");
  background-repeat: repeat;
  width: 100%;
  height: 200px;
}

.get_touch {
  position: relative;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px 20px 80px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 100%;
  width: 90%;
  margin: -100px auto 100px auto;
  padding: 5rem 4rem;
  background-color: #fff;
  z-index: 9999 !important;
}

@media (max-width: 576px) {
  .get_touch {
    margin: -50px auto 50px auto;
    padding: 5rem 2rem;
  }
}

.get_touch .touch_left {
  flex: 1;
  min-width: 300px;
}

.get_touch .touch_left h1 {
  font-size: 7.6rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

@media (max-width: 576px) {
  .get_touch .touch_left h1 {
    font-size: 3rem;
  }
}

.get_touch .touch_left p {
  font-size: 1.6rem;
  color: #000;
}

.get_touch .touch_left .line {
  width: 150px;
  height: 4px;
  background: #004639;
  margin: 2rem 0;
}

.get_touch .touch_left .address-wrapper .address_content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.get_touch .touch_left .address-wrapper .address_content .icon {
  width: 25px;
  margin-right: 1rem;
}

.get_touch .touch_left .address-wrapper .address_content .icon img {
  width: 100%;
}

.get_touch .touch_left .address-wrapper .address_content .details .label {
  color: #666666;
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.get_touch .touch_left .address-wrapper .address_content .details p {
  font-size: 1.6rem;
}

.get_touch .touch_left .address-wrapper .address_content .details a {
  color: #000;
  text-decoration: none;
}

.get_touch .touch_left .address-wrapper .contact_logo {
  margin-top: 3rem;
}

.get_touch .touch_left .address-wrapper .contact_logo img {
  max-width: 220px;
}

.get_touch .touch_right {
  flex: 1;
  min-width: 300px;
}

.get_touch .touch_right .form-wrapper {
  padding: 2rem;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .get_touch .touch_right .form-wrapper {
    padding: 0;
  }
}

.get_touch .touch_right .form-wrapper form .form_input {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.get_touch .touch_right .form-wrapper form .form_input .error {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: red;
}

.get_touch .touch_right .form-wrapper form .form_input label {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #666666;
}

.get_touch .touch_right .form-wrapper form .form_input input,
.get_touch .touch_right .form-wrapper form .form_input textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #88c3cb;
  border-radius: 8px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.get_touch .touch_right .form-wrapper form .form_input input:focus,
.get_touch .touch_right .form-wrapper form .form_input textarea:focus {
  border-color: #88C3CB;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
}

.get_touch .touch_right .form-wrapper form .form_input input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.3rem;
}

.get_touch .touch_right .form-wrapper form .form_input input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.3rem;
}

.get_touch .touch_right .form-wrapper form .form_input textarea::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-size: 1.3rem;
}

.get_touch .touch_right .form-wrapper form .form_input textarea::placeholder {
  font-family: "Figtree", sans-serif;
  font-size: 1.3rem;
}

.get_touch .touch_right .form-wrapper form .form_input textarea {
  height: 80px;
  resize: none;
}

#success_message {
  background-color: #d1fae5;
  /* soft green background */
  border: 1px solid #10b981;
  /* emerald border */
  color: #065f46;
  /* darker green text */
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  animation: fadeIn 0.4s ease-in-out;
}

#success_message #message {
  margin: 0;
}

/* Optional: success icon (using before pseudo-element) */
#success_message::before {
  content: "✔";
  font-weight: bold;
  color: #10b981;
}

/* Smooth fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#success_message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 20px;
  border-radius: 6px;
  margin: 10px 0;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section_csr {
  position: relative;
  min-height: calc(112vh - 9rem);
  padding-top: 9rem;
  display: flex;
  align-items: flex-end;
  background-attachment: fixed;
}

@media (max-width: 576px) {
  .section_csr .custom_container {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section_csr {
    min-height: 0;
  }
}

.section_csr .crs_content {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border-radius: 20px 20px 0 0;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
  .section_csr .crs_content {
    flex-direction: column;
    padding: 4rem 2rem;
    border-radius: 0;
  }
}

.section_csr .crs_content .csr_left {
  flex: 1;
}

.section_csr .crs_content .csr_left h1 {
  font-size: 7.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
}

.section_csr .crs_content .csr_left h1 .text_bold {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 576px) {
  .section_csr .crs_content .csr_left h1 {
    font-size: 2.5rem;
  }
}

.section_csr .crs_content .csr_left p {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.6;
  color: #f5f5f5;
  max-width: 800px;
}

.section_csr .crs_content .csr_right {
  flex-shrink: 0;
}

.section_csr .crs_content .csr_right .right_image {
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_csr .crs_content .csr_right .right_image img {
  width: 50%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/*# sourceMappingURL=style.css.map */