@font-face {
  font-family: "Geomanist";
  src: url("/fonts/Geomanist-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Geomanist", sans-serif;
}

::selection {
  background-color: #2c3e5f;
  color: white;
}

header {
  position: sticky;
  top: 0;
  z-index: 11000;
  background: #fff;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

header.hide {
  transform: translateY(-70%);
}

header {
  transform: translateY(0);
}

header.hide {
  transform: translateY(-100%);
}

.logo-img {
  width: 140px !important;
  height: 90px !important;
}

.no-bg {
  background: transparent !important;
}

.text-theme {
  color: #2c3e5f !important;
}

:root {
  --bs-theme: #2c3e5f;
}

.custom-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  margin-left: 30px;
  font-size: 18px !important;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* header */

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 !important;
}

.nav li {
  position: relative;
  transition: transform 0.3s ease;
}

.nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    #333 0%,
    #333 50%,
    #2c3e5f 50%,
    #2c3e5f 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.5s ease;
}

.nav a:hover {
  background-position: 0 0;
}

/* header-end */

.image-stack {
  display: flex;
  align-items: center;
}

.stacked-img {
  width: 55px;
  height: 55px;
  object-fit: cover;

  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);

  margin-left: -5px;

  opacity: 0;
  transform: scale(0.5) translateY(20px);

  animation: imagePop 4s ease-in-out infinite;
}

.stacked-img:first-child {
  margin-left: 0;
  animation-delay: 0s;
}

.stacked-img:nth-child(2) {
  animation-delay: 0.3s;
}

.stacked-img:nth-child(3) {
  animation-delay: 0.6s;
}

.stacked-img:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes imagePop {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  15% {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
  }

  25% {
    transform: scale(1) translateY(0);
  }

  75% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
}

.client-count {
  margin-left: 28px;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.client-number {
  font-size: 28px !important;
  font-weight: bold;
  color: white !important;
  text-align: center;
}

.client-label {
  font-size: 16px;
  color: white !important;
  text-transform: uppercase;
  margin-top: 6px;
  text-align: left;
}

.hero-title {
  font-size: 48px !important;
  font-weight: 600 !important;
  color: white !important;

  line-height: 1.15;
  letter-spacing: -1px;

  opacity: 0;
  transform: translateY(35px);

  animation: titleReveal 1s ease forwards;
}

.hero-title span {
  display: block;

  background: linear-gradient(90deg, #ffffff, #2c3e5f, #ffffff);

  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    shineText 4s linear infinite,
    spanReveal 0.8s ease 0.4s forwards;

  opacity: 0;
  transform: translateY(15px);
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spanReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shineText {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 200% center;
  }
}

.fancy-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #fff;
  padding: 12px 24px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  border-radius: 40px;

  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: all 0.35s ease;
}

.fancy-btn::before {
  content: "";
  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(120deg, #2c3e5f, #ae7dd9);

  z-index: -1;
  transition: 0.5s ease;
}

.fancy-btn:hover::before {
  left: 0;
}

.fancy-btn:hover {
  border-color: transparent;

  transform: translateY(-3px);

  box-shadow: 0 12px 25px rgba(124, 60, 156, 0.35);
}

.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-section h1,
p,
.fancy-btn,
span,
.stacked-img {
  position: relative;
  z-index: 2;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1.9), transparent);
  z-index: 1;
  pointer-events: none;
}

.main-btn {
  background: white;
  color: black !important;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  position: relative;
  border: 0.3px solid transparent;
}

.arrow-icon {
  width: 16px;
  transition: transform 0.4s ease;
}

.text-white {
  color: white !important;
}

.main-btn:hover {
  background: #2c3e5f;
  color: white !important;
  border: 0.3px solid #f7f7f7 !important;
}

.main-btn:hover .arrow-icon {
  transform: rotate(320deg);
  filter: invert(1);
}

.highlight-text {
  background: linear-gradient(90deg, #2c3e5f, #005f99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  position: relative;
}

/* Static underline */
.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #005f99;
  border-radius: 2px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 31, 62, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.reverse-overlay::before {
  opacity: 1;
}

.product-card.reverse-overlay:hover::before {
  opacity: 0;
}

.accordion-button {
  box-shadow: none !important;
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: #2c3e5f !important;
  color: white !important;
  border-bottom: 1px solid #ddd;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

.accordion-body {
  background-color: white;
  color: #333;
  box-shadow: none !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.hollow-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  margin-right: 8px;
}

.testimonial-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.bg-card {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.client-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.client-name {
  font-weight: bold;
  margin-top: auto;
}

.highlight-shape::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #2c3e5f;
  border-top-left-radius: 80% 80%;
  border-bottom-right-radius: 10px;
  transform: scale(1);
  transition: transform 0.3s ease;
  z-index: 0;
}

.highlight-shape:hover::after {
  transform: scale(2);
}

.testimonial-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.highlight-shape:hover::after {
  transform: scale(2);
}

.col-md-4:nth-child(2) .highlight-shape::after {
  transform: scale(2);
}

.custom-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav ul li a {
  text-decoration: none;
  color: #000;
}

.custom-margin-test {
  margin-inline: 150px;
}

@media (max-width: 768px) {
  .logo-img {
    width: 80px !important;
    height: 60px !important;
  }

  .hamburger-icon {
    width: 35px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .custom-margin-test {
    margin-inline: 30px;
  }

  .client-count {
    flex-direction: row;
    gap: 4px;
    margin-left: 0;
  }

  .client-number,
  .client-label {
    text-align: center;
  }

  .hero-title {
    font-size: 38px !important;
  }
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da !important;
}

textarea {
  resize: none !important;
}

.size {
  font-size: 50px !important;
}

.fancy-btn2 {
  background: transparent;
  border: 2px solid #2c3e5f;
  color: black !important;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color 0.4s ease;
}

.fancy-btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #2c3e5f, #ae7dd9);
  z-index: -1;
  transition: all 0.5s ease;
}

.fancy-btn2:hover::before {
  left: 0;
}

.fancy-btn2:hover {
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(124, 60, 156, 0.4);
  transform: translateY(-2px);
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #2c3e5f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background-color: #5e2d76;
}

.map-container iframe {
  border-radius: 10px;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

.hover-shadow {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-shapes img {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20%);
    opacity: 0;
  }
}

.custom-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.custom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, #2c3e5f, #b11213);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

/* .custom-card:hover::after {
  opacity: 1;
} */

/* .custom-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c3e5f, #b11213);
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}

.custom-card:hover .card-icon {
  transform: rotate(10deg) scale(1.1);
}

.about-next {
  padding: 50px 0;
  background: radial-gradient(circle at 20% 30%, #eef2f7, #ffffff);
  position: relative;
  overflow: hidden;
}

.main-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.main-heading span {
  background: linear-gradient(135deg, #2c3e5f, #b11213);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-desc {
  color: #6c757d;
  max-width: 500px;
  margin-top: 20px;
}

.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat h3 {
  font-size: 28px;
  color: #2c3e5f;
}

.stat p {
  font-size: 13px;
  color: #888;
}

.glow-bg {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(177, 18, 19, 0.2), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.floating-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.floating-box {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
}

.floating-box:nth-child(2) {
  margin-top: 30px;
}
.floating-box:nth-child(4) {
  margin-top: 30px;
}

.floating-box:nth-child(1) {
  transform: rotate(-2deg);
}
.floating-box:nth-child(2) {
  transform: rotate(2deg);
}
.floating-box:nth-child(3) {
  transform: rotate(-1deg);
}
.floating-box:nth-child(4) {
  transform: rotate(1deg);
}

.floating-box i {
  color: #b11213;
}

.floating-box:hover {
  transform: translateY(-8px) scale(1.03);
}

.neo-card {
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 500;
  background: #fff;
  box-shadow:
    inset 5px 5px 10px #e6e6e6,
    inset -5px -5px 10px #ffffff;
  transition: 0.3s;
}

/* .neo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
} */

.floating-box {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.commodities-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

.commodity-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  height: 100%;
}

.commodity-card i {
  font-size: 30px;
  color: #b11213;
  margin-bottom: 15px;
}

.commodity-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.commodity-card p {
  font-size: 14px;
  color: #6c757d;
}

.commodity-card:hover {
  /* transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1); */
}

.highlight-card {
  background: linear-gradient(135deg, #2c3e5f, #b11213);
  color: #fff;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.85);
}

.highlight-card i {
  color: #fff;
}

.product-detail-section {
  padding: 70px 0;
  background: #f8f9fa;
}

.product-detail-section .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-section img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.product-detail-section img:hover {
  transform: scale(1.03);
}

.product-detail-section .custom-shadow {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-detail-section .main-img img {
  height: 260px;
  object-fit: cover;
}

.product-detail-section .row .col-6 img {
  height: 120px;
  object-fit: cover;
}

.product-detail-section p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.product-detail-section .check-item {
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.product-detail-section .check-item span {
  color: #28a745;
  font-size: 18px;
  margin-right: 8px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.process-item span {
  min-width: 42px;
  height: 42px;
  background: #b45309;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-item p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}

.copper-section {
  padding: 50px 0 !important;
  background: #f9fafb;
}

.copper-title {
  font-weight: 700;
  color: #b45309;
  margin-bottom: 20px;
}

.copper-text {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 15px;
}

.copper-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-title {
  color: #b45309;
  font-weight: 600;
}

.process-subtext {
  max-width: 750px;
  margin: auto;
  color: #6b7280;
}

.process-list {
  position: relative;
  padding-left: 30px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.process-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.process-item span {
  min-width: 42px;
  height: 42px;
  background: #b45309;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 1;
}

.process-item p {
  margin: 0;
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 10px;
  color: #374151;
  line-height: 1.8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-item:hover span {
  background: #f59e0b;
  transform: scale(1.1);
  transition: 0.3s;
}

.process-item:hover p {
  transform: translateY(-3px);
  transition: 0.3s;
}

.petroleum-section {
  padding: 80px 0;
  background: #f9fafb;
}

.petroleum-title {
  color: #b45309;
  font-weight: 700;
}

.petroleum-subtitle {
  color: #b45309;
  margin-bottom: 15px;
}

.petroleum-text {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 15px;
}

.petroleum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.petroleum-item {
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* .petroleum-item:hover {
  background: #b45309;
  color: #fff;
  transition: 0.3s;
} */

.petroleum-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.petroleum-box h5 {
  color: #b45309;
  margin-bottom: 8px;
}

.petroleum-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cement-section {
  padding: 80px 0;
  background: #ffffff;
}

.cement-title {
  font-size: 32px;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 20px;
}

.cement-text {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 15px;
}

.cement-text-small {
  color: #6b7280;
  margin-bottom: 10px;
}

.cement-img {
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cement-block {
  margin-top: 40px;
}

.cement-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 15px;
}

.cement-ul {
  padding-left: 18px;
  color: #374151;
  line-height: 1.8;
}

.cement-list {
  color: #374151;
  line-height: 1.8;
}

.cement-process {
  margin-top: 60px;
}

.cement-step {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.cement-step span {
  min-width: 40px;
  height: 40px;
  background: #b45309;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cement-step p {
  margin: 0;
  background: #f9fafb;
  padding: 12px 15px;
  border-radius: 8px;
  line-height: 1.7;
  color: #374151;
}

.urea-section {
  padding: 80px 0;
  background: #ffffff;
}

.urea-title {
  font-size: 32px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 20px;
}

.urea-text {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 15px;
}

.urea-img {
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.urea-block {
  margin-top: 40px;
}

.urea-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.urea-ul {
  padding-left: 18px;
  line-height: 1.8;
  color: #374151;
}

.urea-process {
  margin-top: 60px;
}

.urea-step {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.urea-step span {
  min-width: 40px;
  height: 40px;
  background: #166534;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.urea-step p {
  margin: 0;
  background: #f9fafb;
  padding: 12px 15px;
  border-radius: 8px;
}

.premium-card {
  padding: 25px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.content-block {
  max-width: 900px;
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.timeline-step span {
  width: 35px;
  height: 35px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 600;
}

.strawberry-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff0f3 0%, #ffffff 100%);
}

.timeline-step span {
  background: #e63946;
}

.bitumen-section {
  background: #fff;
}

.bitumen-img {
  height: 300px;
}

.bitumen-section h2,
.bitumen-section h3 {
  color: #222;
}

.bitumen-section .card,
.bitumen-section .border {
  transition: 0.3s ease;
}

.bitumen-section .border:hover {
  background: #f8f9fa;
  transform: translateY(-5px);
}

.aluminum-section {
  background: #fff;
}

.aluminum-section h2,
.aluminum-section h3 {
  color: #222;
}

.aluminum-section .border {
  transition: 0.3s ease;
}

.aluminum-section .border:hover {
  background: #f8f9fa;
  transform: translateY(-6px);
}

.aluminum-section img {
  object-fit: cover;
}

.icon-box {
  width: 28px;
  height: 28px;
  background: #0d6efd;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.coal-section {
  background: #fff;
}

.coal-section .bg-light {
  background-color: #f8f9fa !important;
}

.coal-section h2 {
  color: #222;
}

.coal-section .badge {
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 20px;
}

.coal-section img {
  object-fit: cover;
  height: 100%;
}

@media (max-width: 768px) {
  #nav-menu {
    position: fixed;
    inset: 0;
    background: #0f172a; /* deep premium dark */
    display: flex !important;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.5s ease;
    z-index: 9999;
  }

  #nav-menu.active {
    transform: translateY(0);
  }

  #nav-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  #nav-menu ul li {
    margin: 18px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
  }

  /* stagger animation */
  #nav-menu.active ul li {
    opacity: 1;
    transform: translateY(0);
  }

  #nav-menu.active ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  #nav-menu.active ul li:nth-child(2) {
    transition-delay: 0.2s;
  }
  #nav-menu.active ul li:nth-child(3) {
    transition-delay: 0.3s;
  }
  #nav-menu.active ul li:nth-child(4) {
    transition-delay: 0.4s;
  }
  #nav-menu.active ul li:nth-child(5) {
    transition-delay: 0.5s;
  }

  #nav-menu ul li a {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
  }

  #nav-menu ul li a:hover {
    color: #38bdf8;
  }

  /* Hamburger animation */
  .hamburger img {
    transition: 0.3s;
  }

  .hamburger.active img {
    transform: rotate(90deg) scale(1.1);
  }
}

.close-btn {
  display: none;
}

@media (max-width: 768px) {
  .close-btn {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .close-btn:hover {
    transform: rotate(90deg);
    color: #38bdf8;
  }
}

.nav-has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 40px);
  left: -100%;
  transform: translateX(-50%) translateY(-4px);
  width: 1220px;
  background: #fff;
  border: 0.5px solid #ddd;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s,
    transform 0.16s;
  z-index: 999;
}
.nav-has-mega.open .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* .mega-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: #fff;
  border-left: 0.5px solid #ddd;
  border-top: 0.5px solid #ddd;
  border-radius: 2px 0 0 0;
} */

.mega-inner {
  padding: 1.25rem 1.5rem 1.4rem;
}
.mega-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px;
  padding: 12px 6px 10px;
  border-radius: 9px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: all 0.14s;
  text-align: center;
}

.industry-card:hover {
  background: #f4f8ff;
  border-color: #dce8f8;
  transform: translateY(-1px);
}

.icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.14s;
  margin: 0 auto;
}
.icon-wrap svg {
  width: 19px;
  height: 19px;
  stroke: #666;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.14s;
}
.industry-card:hover .icon-wrap {
  background: #dce8f8;
}
.industry-card:hover .icon-wrap svg {
  stroke: #185fa5;
}

.card-title {
  font-size: 10.5px;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.14s;
}
.industry-card:hover .card-title {
  color: #111;
}

.mega-footer {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}
.view-all-link {
  font-size: 11.5px;
  color: #185fa5;
  text-decoration: none;
  font-weight: 500;
}
.view-all-link:hover {
  text-decoration: underline;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 6px 10px;
  border-radius: 9px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eef4ff 0%, #dceeff 100%);
  border-radius: 9px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
}
.industry-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.industry-card .icon-wrap,
.industry-card .card-title {
  position: relative;
  z-index: 1;
}

.industry-card:hover {
  border-color: #c5ddf8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24, 95, 165, 0.1);
}

.icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.icon-wrap svg {
  width: 19px;
  height: 19px;
  stroke: #666;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.22s ease;
}

.industry-card:hover .icon-wrap {
  background: #185fa5;
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 4px 12px rgba(24, 95, 165, 0.25);
}
.industry-card:hover .icon-wrap svg {
  stroke: #fff;
}

.card-title {
  font-size: 10.5px;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.18s ease;
}
.industry-card:hover .card-title {
  color: #185fa5;
  font-weight: 600;
}

/* new-css */

@media (max-width: 767px) {
  .mob-header {
    display: flex;
  }
  header > .container {
    display: none;
  }
}

/* Mobile drawer */
.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bs-white, #fff);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mob-drawer.open {
  transform: translateX(0);
}

.ham-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background 0.2s;
  /* margin-top: 40px !important; */
}
.ham-line {
  width: 16px;
  height: 1.5px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  transform-origin: center;
}
.ham-btn.open .ham-line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.ham-btn.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham-btn.open .ham-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.ind-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1060;
}
.ind-panel.open {
  transform: translateX(0);
}

/* 3-col product grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #eee;
}
.prod-card {
  background: #fff;
  padding: 16px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.prod-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2c3e5f;
}

.close-x {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid #ddd;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#drawer-close {
  position: absolute;
  top: 55px;
  right: 15px;
}

.aluminum-solutions {
  padding: 80px 20px;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

.aluminum-solutions .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.7;
}

.content-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-box h3 {
  margin-bottom: 20px;
  color: #222;
}

.content-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.content-box ul {
  list-style: none;
  padding: 0;
}

.content-box ul li {
  margin-bottom: 12px;
  color: #333;
  position: relative;
  padding-left: 28px;
}

.content-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0a7a44;
  font-weight: bold;
}

.coal-new {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.coal-new .container {
  max-width: 1100px;
  margin: 0 auto;
}

.coal-content {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.coal-content h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 25px;
}

.coal-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.trust-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;

  margin-top: 45px;
  padding: 18px 22px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;

  position: relative;
  z-index: 5;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;

  padding: 12px 18px;

  color: #fff;
  font-size: 14px;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.25s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.trust-item span {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(0, 200, 255, 0.18);

  color: white;

  font-size: 13px;
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 15px;
    gap: 12px;
    justify-content: flex-start;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }
}

.company-overview {
  padding: 90px 0;
  background: #f7f8fa;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
}

.overview-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin: 20px 0;
}

.overview-content h2 span {
  color: #c79b45;
}

.overview-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.commodity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 35px 0;
}

.commodity {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: center;
  gap: 15px;

  font-weight: 600;
}

.commodity span {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.compliance-box {
  background: #111;
  color: white;
  padding: 25px;
  border-radius: 20px;
}

.compliance-box p {
  color: #ccc;
  margin: 10px 0 0;
}

/* Right Card */

.overview-card {
  height: 430px;
  position: relative;

  background: linear-gradient(145deg, #111, #242424);

  border-radius: 35px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;

  background: #c79b45;
  filter: blur(120px);
  opacity: 0.35;
}

.card-main {
  position: relative;
  z-index: 2;

  padding: 40px;
}

.card-main span {
  font-size: 13px;
  letter-spacing: 3px;
  color: #c79b45;
}

.card-main h3 {
  font-size: 42px;
  margin: 20px 0;
}

.location {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 30px;
}

.floating-card {
  position: absolute;

  background: white;
  color: #111;

  padding: 15px 25px;
  border-radius: 50px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  font-weight: 700;
}

.card-one {
  top: 40px;
  right: 30px;
}

.card-two {
  bottom: 40px;
  left: 30px;
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-content h2 {
    font-size: 36px;
  }

  .commodity-list {
    grid-template-columns: 1fr;
  }

  .overview-card {
    height: 350px;
  }
}

.letter-spacing {
  letter-spacing: 2px;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 22px;
  border-radius: 18px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f1f7ff;
  color: #01328b;
  font-size: 22px;
  margin-bottom: 15px;
}

.why-card h6 {
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.why-text {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.8;
}

.why-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 22px;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f6ff;
  font-size: 25px;
  margin-bottom: 20px;
}

.why-card h6 {
  font-size: 18px;
  font-weight: 700;
}

.why-card p {
  color: #6c757d;
  line-height: 1.7;
}

/* section heading */
.custom-size {
  font-size: 46px;
  line-height: 1.2;
  color: #1e2a3b;
}

.text-theme {
  color: #2c3e5f !important;
}

.letter-spacing {
  letter-spacing: 2px;
}

/* description */
.why-text {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.8;
  color: #64748b !important;
}

/* cards */

.why-card {
  position: relative;
  overflow: hidden;

  height: 100%;

  padding: 32px;

  background: linear-gradient(145deg, #ffffff, #f6fbff);

  border: 1px solid rgba(44, 62, 95, 0.12);

  border-radius: 26px;

  transition: 0.35s ease;

  box-shadow: 0 15px 40px rgba(44, 62, 95, 0.08);
}

.why-card::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -40px;
  top: -40px;

  background: #2c3e5f;

  opacity: 0.06;

  border-radius: 50%;

  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);

  border-color: rgba(44, 62, 95, 0.25);

  box-shadow: 0 25px 60px rgba(44, 62, 95, 0.16);
}

.why-card:hover::before {
  transform: scale(1.5);
}

/* icon */

.icon-box {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #2c3e5f, #48698f);

  color: white;

  font-size: 26px;

  margin-bottom: 22px;

  box-shadow: 0 12px 25px rgba(44, 62, 95, 0.25);
}

.why-card h6 {
  font-size: 19px;

  font-weight: 700;

  color: #1e293b;

  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;

  line-height: 1.7;

  color: #64748b;
}

/* optional icon hover */

.why-card:hover .icon-box {
  transform: rotate(5deg) scale(1.08);

  transition: 0.3s;
}

.global-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.letter-spacing {
  letter-spacing: 2px;
}

.global-title {
  line-height: 1.25;
}

.reach-box {
  background: #f8fbff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.reach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reach-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--theme-color);
  font-size: 20px;
}

.reach-box h6 {
  margin: 0;
  font-weight: 700;
}

.reach-box span {
  font-size: 13px;
  color: #777;
}

.reach-footer {
  background: #f2f8ff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.reach-footer i {
  font-size: 28px;
  color: var(--theme-color);
}

.reach-footer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.company-wrapper {
  background: #ffffff;
  border-radius: 35px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.letter-spacing {
  letter-spacing: 2px;
}

.company-title {
  font-size: 45px;
  line-height: 1.2;
}

.company-text {
  font-size: 17px;
  line-height: 1.8;
}

.commodity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.commodity-card2 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6faff;
  padding: 15px 20px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.commodity-card2 i {
  color: var(--theme-color);
}

.commodity-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.overview-card {
  background: linear-gradient(145deg, #f5faff, #ffffff);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  color: var(--theme-color);
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.overview-card h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.overview-card h3 span {
  color: var(--theme-color);
}

.overview-card p {
  color: #6c757d;
  line-height: 1.8;
}

.overview-points div {
  background: #fff;
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.overview-points i {
  color: #16a34a;
  margin-right: 10px;
}

.trade-panel {
  background: linear-gradient(145deg, #062b55, #0d4f8b);
  padding: 40px;
  border-radius: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.trade-panel:before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -80px;
  top: -80px;
}

.trade-top {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.trade-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #0d4f8b;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.trade-top h3 {
  margin: 0;
  font-weight: 700;
}

.trade-top p {
  margin: 5px 0 0;
  opacity: 0.8;
}

.trade-stats {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.stat-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: 20px;
}

.stat-item h2 {
  font-size: 40px;
  margin: 0;
  font-weight: 800;
}

.stat-item span {
  font-size: 14px;
  opacity: 0.85;
}

.supply-flow {
  position: relative;
  margin-top: 25px;
}

.flow-line {
  position: absolute;
  left: 20px;
  top: 10px;
  height: 90%;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.flow-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  font-weight: 600;
}

.flow-item i {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #0d4f8b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-box {
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  color: #333;
  border-radius: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.compliance-box i {
  color: #0d4f8b;
  font-size: 28px;
}

.compliance-box h6 {
  margin: 0;
  font-weight: 700;
}

.compliance-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.strategic-content {
  background: #fff;
  border-radius: 35px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.strategic-title {
  font-size: 44px;
  line-height: 1.25;
}

.strategic-text {
  font-size: 17px;
  line-height: 1.9;
  max-width: 720px;
}

.execution-list {
  border-left: 2px solid #0d4f8b;
  padding-left: 25px;
}

.execution-row {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.execution-row span {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #062b55;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.execution-row h5 {
  margin: 0 0 5px;
  font-weight: 700;
}

.execution-row p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategic-content {
    padding: 30px;
  }

  .strategic-title {
    font-size: 32px;
  }
}

.expertise-wrapper {
  background: #fff;
  padding: 60px;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.expertise-image {
  position: relative;
}

.expertise-image img {
  border-radius: 30px;
  width: 100%;
  height: auto !important;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.image-badge i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #062b55;
  color: #fff;
  border-radius: 15px;
}

.image-badge h5 {
  margin: 0;
  font-weight: 700;
}

.image-badge p {
  margin: 3px 0 0;
  color: #777;
}

.expertise-title {
  font-size: 42px;
  line-height: 1.25;
}

.expertise-desc {
  font-size: 17px;
  line-height: 1.8;
}

.capability-list {
  border-left: 2px solid #0d4f8b;
  padding-left: 25px;
}

.capability-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.cap-icon {
  min-width: 55px;
  height: 55px;
  border-radius: 18px;
  background: #f1f7ff;
  color: #062b55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.capability-item h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.capability-item p {
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .expertise-wrapper {
    padding: 30px;
  }

  .expertise-image img {
    height: 400px;
  }

  .expertise-title {
    font-size: 32px;
  }
}

.expertise-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.expertise-image img {
  border-radius: 25px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-badge {
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 15px;
  border-radius: 18px;
}

.image-badge i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.expertise-title {
  font-size: 36px;
  line-height: 1.25;
}

.expertise-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px !important;
}

.capability-item {
  gap: 15px;
  margin-bottom: 20px;
}

.cap-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 14px;
  font-size: 18px;
}

.capability-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.capability-item p {
  font-size: 14px;
}

.brand-closing {
  background: linear-gradient(135deg, #062b55, #0d4f8b);
  padding: 75px 60px;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.brand-closing:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.brand-closing:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -120px;
  left: -80px;
}

.brand-closing > * {
  position: relative;
  z-index: 2;
}

.brand-closing .letter-spacing {
  letter-spacing: 3px;
  opacity: 0.8;
}

.brand-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
}

.brand-title span {
  color: #fff;
}

.brand-text {
  max-width: 800px;
  margin: 25px auto;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

.brand-line {
  width: 80px;
  height: 3px;
  background: #fff;
  margin: 35px auto;
  border-radius: 10px;
}

.brand-points {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.brand-points div {
  background: rgba(255, 255, 255, 0.12);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-points i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .brand-closing {
    padding: 45px 25px;
  }

  .brand-title {
    font-size: 32px;
  }

  .brand-text {
    font-size: 16px;
  }
}

.trust-wrapper {
  background: #fff;
  padding: 60px;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.trust-title {
  font-size: 42px;
  font-weight: 800;
}

.trust-text {
  font-size: 17px;
  line-height: 1.8;
  max-width: 550px;
}

.check-list {
  margin-top: 30px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #444;
}

.check-list i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #062b55;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}

.esg-panel {
  background: linear-gradient(145deg, #062b55, #0d4f8b);
  padding: 40px;
  border-radius: 30px;
  color: #fff;
  height: 100%;
}

.esg-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.esg-icon {
  width: 65px;
  height: 65px;
  background: #fff;
  color: #062b55;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.esg-header h3 {
  margin: 0;
  font-weight: 700;
}

.esg-header p {
  margin: 5px 0 0;
  opacity: 0.8;
}

.esg-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.esg-item > i {
  font-size: 25px;
  margin-top: 5px;
}

.esg-item h5 {
  margin: 0 0 5px;
  font-weight: 700;
}

.esg-item p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trust-wrapper {
    padding: 30px;
  }

  .trust-title {
    font-size: 32px;
  }
}

.services-wrapper {
  background: #fff;
  padding: 60px;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.services-title {
  font-size: 42px;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-item {
  padding: 25px;
  border-left: 3px solid #062b55;
  background: #f8fbff;
  border-radius: 18px;
}

.service-item span {
  color: #0d4f8b;
  font-weight: 800;
}

.service-item h5 {
  margin: 12px 0 8px;
  font-weight: 700;
}

.service-item p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-flow {
    grid-template-columns: 1fr;
  }
}

.advantage-section {
  background: linear-gradient(135deg, #062b55, #0d4f8b);
  color: #fff;
  padding: 60px;
  border-radius: 40px;
}

.adv-title {
  font-size: 42px;
  font-weight: 800;
}

.adv-title span {
  color: #fff;
}

.adv-text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
}

.adv-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font-weight: 600;
}

.adv-list i {
  font-size: 22px;
}

@media (max-width: 768px) {
  .advantage-section {
    padding: 35px;
  }

  .adv-title {
    font-size: 32px;
  }

  .company-wrapper {
    padding: 20px;
  }
}

.services-wrapper {
  background: linear-gradient(135deg, #ffffff, #f5f9fc);

  border-radius: 35px;

  padding: 60px;

  box-shadow: 0 25px 70px rgba(44, 62, 95, 0.1);

  overflow: hidden;

  position: relative;
}

.services-wrapper::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -100px;
  top: -100px;

  background: #2c3e5f;

  opacity: 0.06;

  border-radius: 50%;
}

.services-title {
  font-size: 45px;

  color: #1e293b;
}

.services-title span {
  color: #2c3e5f !important;
}

/* flow layout */

.service-flow {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  position: relative;
}

/* card */

.service-item {
  position: relative;

  background: white;

  padding: 30px;

  border-radius: 25px;

  border: 1px solid rgba(44, 62, 95, 0.1);

  transition: 0.35s ease;

  box-shadow: 0 15px 35px rgba(44, 62, 95, 0.07);
}

.service-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 55px rgba(44, 62, 95, 0.18);
}

/* number */

.service-item span {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #2c3e5f, #506f94);

  color: white;

  font-weight: 700;

  font-size: 18px;

  margin-bottom: 20px;

  box-shadow: 0 12px 25px rgba(44, 62, 95, 0.25);
}

.service-item h5 {
  color: #1e293b;

  font-weight: 700;

  margin-bottom: 10px;
}

.service-item p {
  color: #64748b;

  line-height: 1.7;

  margin: 0;
}

/* responsive */

@media (max-width: 992px) {
  .service-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-flow {
    grid-template-columns: 1fr;
  }

  .services-wrapper {
    padding: 30px 20px;
  }
}

/* ESG Responsive Fix */

.esg-panel {
  height: 100%;
}

.esg-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.esg-item i {
  min-width: 28px;
  margin-top: 5px;
}

.esg-item div {
  flex: 1;
}

@media (max-width: 768px) {
  .esg-panel {
    padding: 25px !important;
    border-radius: 25px;
  }

  .esg-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .esg-header h3 {
    font-size: 22px;
  }

  .esg-item {
    gap: 12px;
    margin-bottom: 25px;
  }

  .esg-item i {
    font-size: 18px;
    min-width: 22px;
  }

  .esg-item h5 {
    font-size: 17px;
  }

  .esg-item p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .esg-panel {
    padding: 20px !important;
  }

  .esg-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .esg-item {
    flex-direction: column;
    gap: 8px;
  }

  .esg-item i {
    margin-bottom: 5px;
  }
}

.tttg-about-section {
  padding: 50px 20px;
  background: #f6f8fb;
}

.tttg-about-container {
  max-width: 1200px;
  margin: auto;
}

.tttg-about-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 45px;
  align-items: center;
}

/* Left Box */

.tttg-about-title-box {
  background: #09263f;
  padding: 55px 45px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.tttg-about-title-box:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -90px;
  background: #d5a24d;
  opacity: 0.15;
  border-radius: 50%;
}

.tttg-about-tag {
  color: #d5a24d;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.tttg-about-heading {
  color: #fff;
  font-size: 38px;
  line-height: 1.25;
  margin: 25px 0;
  position: relative;
  z-index: 1;
}

.tttg-about-line {
  width: 80px;
  height: 4px;
  background: #d5a24d;
  border-radius: 20px;
}

.tttg-about-subtext {
  color: #d8e2ec;
  margin-top: 25px;
  line-height: 1.7;
  font-size: 16px;
}

/* Right Content */

.tttg-about-text-box {
  background: #fff;
  padding: 45px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.tttg-about-text-box p {
  color: #536477;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.tttg-about-text-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .tttg-about-wrapper {
    grid-template-columns: 1fr;
  }

  .tttg-about-title-box {
    padding: 40px 30px;
  }

  .tttg-about-heading {
    font-size: 30px;
  }

  .tttg-about-text-box {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .tttg-about-section {
    padding: 60px 15px;
  }

  .tttg-about-heading {
    font-size: 25px;
  }

  .tttg-about-text-box p {
    font-size: 15px;
  }
}

/* modal-css */
.tttg-inquiry-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.tttg-inquiry-top {
  background: #09263f;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tttg-inquiry-top h3 {
  color: #fff;
  margin: 0;
  font-size: 25px;
}

.tttg-inquiry-top p {
  color: #cbd8e5;
  margin: 8px 0 0;
  font-size: 14px;
}

.tttg-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.tttg-inquiry-body {
  padding: 30px;
  background: #fff;
}

.tttg-inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tttg-field {
  display: flex;
  flex-direction: column;
}

.tttg-field label {
  font-size: 14px;
  color: #24384d;
  font-weight: 600;
  margin-bottom: 7px;
}

.tttg-field input,
.tttg-field select {
  height: 45px;
  border-radius: 10px;
  border: 1px solid #d8e0e8;
  padding: 0 14px;
  outline: none;
}

.tttg-field input:focus,
.tttg-field select:focus {
  border-color: #c99842;
}

.tttg-inquiry-submit {
  grid-column: 1/-1;

  border: none;
  height: 48px;
  border-radius: 30px;
  background: #2c3e5f;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.tttg-inquiry-submit:hover {
  background: #09263f;
}

@media (max-width: 600px) {
  .tttg-inquiry-form {
    grid-template-columns: 1fr;
  }

  .tttg-inquiry-body {
    padding: 20px;
  }

  .tttg-inquiry-top h3 {
    font-size: 20px;
  }
}

.tttg-toast {
  position: fixed;
  right: 25px;
  bottom: 25px;

  background: white;
  padding: 18px 22px;
  border-radius: 18px;

  display: flex;
  gap: 15px;
  align-items: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

  transform: translateY(120px);
  opacity: 0;

  transition: 0.3s;

  z-index: 99999;
}

.tttg-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.tttg-toast-icon {
  width: 45px;
  height: 45px;

  border-radius: 50%;
  background: #c99842;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.tttg-toast p {
  margin: 4px 0 0;
  color: #666;
}

lottie-player {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}
