@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;
}

.logo-img {
  width: 70px !important;
  height: 60px !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: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -15px;
}

.stacked-img:first-child {
  margin-left: 0;
}

.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: 58px !important;
  font-weight: 600 !important;
  color: white !important;
}

.fancy-btn {
  background: transparent;
  border: 2px solid #2c3e5f;
  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;
  transition: color 0.4s 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: all 0.5s ease;
}

.fancy-btn:hover::before {
  left: 0;
}

.fancy-btn:hover {
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 60, 156, 0.4);
  transform: translateY(-2px);
}

.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: 60%;
  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: 450px;
  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: 48px !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;
}
