@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
  font-family: "Montserrat", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: rgb(252 201 53);

  --secondary-color: rgb(249 126 33);

  --third-color: rgb(232 91 8);

  --padding-block: 3rem;
  --padding-top: 3rem;
  --margin-block: 3rem;


}



a {
  color: white;
  text-decoration: none;
}

/* h2{
  font-size: 24px;
  font-weight: 600;
} */
/* top_nav */

.top_nav {
  background-color: var(--secondary-color);
  padding: 10px 0;
}

/* Left Content */
.top-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #fff;
}

.top-info span {

  display: flex;
  align-items: center;
  font-weight: 500;
}

.top-info i {
  margin-right: 6px;
  font-size: 15px;
  color: #fff;
}

/* Social Icons */
.top-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.top-social a {
  width: 34px;
  height: 34px;
  background: var(--third-color);
  color: var(--third-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* active tab */
.nav-link.active {
  color: var(--secondary-color);
  /* highlight active link */
}

/* Hover Effect */
/* .top-social a:hover {
  background-color: var(--third-color) !important;
  color: #fff;
  transform: translateY(-3px);
} */

/* navbar strip */

.navbar .nav-link {
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;

}

.navbar .nav-link.active {
  border-color: var(--secondary-color);
  color: var(--secondary-color) !important;
}

.navbar .nav-link:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.main-nav {
  background: white;
  padding-block: 10px;
  /* padding-inline: 40px; */
}


.top_logo {
  height: 100px;
}

.top_logo img {
  display: block;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  padding: 0;


}


.navbar-brand {
  font-weight: 700;
}

.nav-link {
  margin-right: 10px;
  color: black !important;
  transition: all 0.3S EASE;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--secondary-color) !important;


}

/* carousel or banner section */

/* Banner Height Control */
.my_carousel_slide .carousel-item {
  position: relative;
}

/* Black Overlay */
.my_carousel_slide .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* overlay strength */
  z-index: 1;
}

/* Image */
.my_carousel_slide .carousel-item img {
  height: 600px;
  object-fit: cover;
}

/* Caption Above Overlay */
.my_carousel_slide .carousel-caption {
  z-index: 2;
  bottom: 10%;
}

/* Text Styling */
.my_carousel_slide h1 {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
}

.my_carousel_slide p {
  font-size: 18px;
  color: #f1f1f1;
  max-width: 600px;
  margin: 15px auto 25px;
}



/* modern_btn  css*/
/* Modern Gradient Button */
.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border-radius: 6px !important;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color),
      var(--third-color));
  box-shadow: 0 10px 25px rgba(232, 91, 8, 0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Arrow Style */
.modern-btn .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.modern-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 91, 8, 0.5);
}

/* Arrow Move */
.modern-btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* Glow Effect */
.modern-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      var(--third-color),
      var(--secondary-color),
      var(--primary-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.modern-btn:hover::before {
  opacity: 1;
}


/* about us section */

.about_section {
  padding-top: var(--padding-top);
  /* padding-inline: 40px; */
}

.section_title h2 {
  font-size: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-weight: 700;
}

.section_title h2::after {
  content: "";
  position: absolute;
  left: 0;
  /* left aligned underline */
  bottom: 0;
  width: 60px;
  /* short underline */
  height: 3px;
  background-color: var(--primary-color);
  /* gold / primary color */
  border-radius: 2px;
}

.ab_content_box {
  margin-top: unset;
}

/* Image Grid */
.about-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Image Box */
.img-box {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Special positions */
.img1 {
  grid-column: span 2;
  height: 240px;
}

.img2,
.img3 {
  height: 180px;
}




.ab_content_box {
  line-height: 1.7;
}


/* vision mission section  */


/* Section */
.vision-mission {
  padding-block: var(--padding-block);
  background-color: #f8f9fa;
  /* padding-inline: 40px; */
}




/* Heading */
.vm-title {
  font-size: 32px;
  font-weight: 700;
  color: black;
}

.vm-line {
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
  border-radius: 4px;
}

.vm-subtitle {
  max-width: 720px;
  margin: auto;
  color: black;
  font-size: 16px;
}

/* Cards */
.vm-card {
  height: 100%;
  padding: 40px 35px;
  border-radius: 14px;
  color: #ffffff;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}

.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0));
  border-radius: 14px;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Vision cards & Mission cards Colors */
.vision-card {
  background: linear-gradient(135deg,
      var(--secondary-color) 0%,
      var(--third-color) 100%);
  transition: all 0.3s ease;
}

.mission-card {
  background: linear-gradient(135deg,
      rgba(232, 91, 8, 0.85),
      rgba(249, 126, 33, 0.9));
}

/* Vision Card Hover */
.vision-card:hover {
  background: linear-gradient(135deg,
      rgb(232 91 8),
      rgb(249 126 33));
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(232, 91, 8, 0.55),
    0 0 0 2px rgba(252, 201, 53, 0.8);
  transition: all 0.3s ease;
}

/* Mission Card Hover */
.mission-card:hover {
  background: linear-gradient(135deg,
      rgb(252 201 53),
      rgb(249 126 33));
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 55px rgba(249, 126, 33, 0.45);
}





/* Icon */
.vm-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.vm-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.7;
}



/* Section background */
.services-section {
  background-color: #f9f9f9;
}

/* Image Wrapper */
.service-img {
  overflow: hidden;
  border-radius: 8px;
}

/* Image */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Title spacing */
.common_title {
  padding-block: 20px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  height: 480px;
  transition: background 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Hover ONLY background */
.service-card:hover {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--third-color));
}

/* TEXT COLOR FIX ON HOVER */
.service-card:hover h4,
.service-card:hover p {
  color: #ffffff;
}

/* Optional smooth text transition */
.service-card h4,
.service-card p {
  transition: color 0.4s ease;
}

/* .service_content_box{
  height: 260px;
} */

.contact-btn {
  position: absolute;
  bottom: 20px;
  left: 30px;
  transform: translate(-50% -50%);

}

/* Title */
.service-card h4 {
  padding-block: 10px;
  /* margin-bottom: 15px; */
  margin: unset;
  font-size: 22px;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* Text */
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: black;
  transition: 0.3s;
}

/* Text color on hover */
.service-card:hover h4,
.service-card:hover p {
  color: #fff;
}


/*  why choose us Section */
.why-choose-varionex {
  background: linear-gradient(to bottom,
      #fff7e0,
      #ffffff);

  background-color: #fcfcfc;
  padding-block: var(--padding-block);
}


/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Card */
.why-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}



.why-box {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color),
      var(--third-color));

}


/* Icon */
.why-icon {
  font-size: 42px;
  /* color: var(--secondary-color); */
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.why-box p {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.why-box p,
i {

  color: white !important;
}




/* CTA Button */
/* .why-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--third-color)
  );
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(232, 91, 8, 0.4);
  transition: 0.35s ease;
}

.why-cta-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: translateY(-3px);
} */

.why-box:hover {
  border: 3px solid var(--secondary-color);
  background-color: var(--third-color) !important;
}

.why-box:hover {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.why-box:hover p {
  color: black !important;
}

.why-box:hover i {
  color: black !important;


}




/* Tagline Section */
.tagline-section-split {
  padding: 70px 0;
  background: linear-gradient(to right,
      rgba(252, 201, 53, 0.15),
      rgba(249, 126, 33, 0.1));
}


/* Box */
.tagline-split-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tagline_section {
  background-image: url(../images/cont-bg.jpg);
  padding-top: var(--padding-top);
}

/* Left Text */
.tagline-left h1 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.3;
}

.tagline-left h1 span {
  color: var(--secondary-color);
}

/* Right Buttons */
.tagline-right {
  display: flex;
  gap: 15px;
}

/* Primary Button */
.btn-primary-custom {
  padding: 14px 32px;
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--third-color));
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(232, 91, 8, 0.35);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  transform: translateY(-3px);
}



/* Transparent Info Strip */
.tagline-info-strip {
  margin-top: 20px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tagline-info-strip p {
  margin: 0;
  font-size: 15.5px;
  color: #333;
  line-height: 1.6;
}

/*  */
/* Footer */

.footer-section {
  background: #000;
  color: white;
  padding-top: 80px;
}

/* Brand */
.footer-brand h3 {
  /* color: #c9a14a; */
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand p {
  color: white;
  line-height: 1.7;
}

/* Titles */
.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* footer logo */
.footer_logo {
  width: 100%;
  overflow: hidden;
}

.footer_logo img {
  width: 130px;
  height: 100px;
  padding-bottom: 20px;
  object-fit: contain;
  overflow: hidden;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

/*.footer_contact span {*/
/*  margin-left: 25px;*/

/*}*/

.footer-contact li {
  margin-bottom: 14px;
  color: white;
}

.footer-contact i {
  color: var(--third-color);
  margin-right: 10px;
}

.social-icons a {
  text-decoration: none;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
}


/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid white;
  margin-top: 48px;

}

.footer_box {

  padding: 10px;
  display: flex;
  justify-content: space-between;
  padding-inline: 30px;

}

.footer-bottom span {
  color: var(--secondary-color);
}

.scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;


}

.scroll-top i {
  color: var(--primary-color);


}

/* contact pg  */


.common_banner {

  height: 500px;
  width: 100%;
  background-size: cover;
  overflow: hidden;
  position: relative;

}

.banner_heading {
  color: white;
}


.banner_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  font-weight: 600;
}

/* all pages banner */
.about_us_pg_banner {
  background: url(../images/banner_1.jpeg);
}

.contact_us_pg_banner {
  background: url(../images/contact_banner.jpg) center;
}

.commodities_pg_banner {
  background: url(../images/banner_3.jpeg);

}

.metal-page {
  background: url(../images/metal_pg_banner.jpeg);

}

.wood_pg_banner {
  background: url(../images/wood_timber_banner.jpg);
}

.fuels_pg_banner {
  background: url(../images/about_2.jpg) center;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}



/* form */
.contact-section {
  padding: var(--padding-block) 0;
  background-color: white;
  color: black;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-tag {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.contact-info h2 {
  font-size: 42px;
  margin: 15px 0;
}

.contact-info p {
  color: black;
  max-width: 500px;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item small {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
}

.contact-item strong {
  display: block;
  font-weight: 500;
}

/* FORM CARD */
.contact-form {
  background: linear-gradient(145deg, #f4efef, #0d0d0d);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  color: black;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

/* common_strip */
.common_strip {
  background-color: #000;
  color: #fff;
  padding: 10px;
}

.common_strip a {
  color: #fff;
}

/* about bg about section */
.servicePage {
  /* margin-block: var(--margin-block); */
  padding-top: var(--padding-top);
  color: #000;
  /* padding-inline: 48px; */
}

.servicePage img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 0 16px #ccc;
  /* border: 1px solid #ccc; */
}

.ab_pg_content_box p:first-of-type {
  padding-top: 20px;
}

.about_pg_content_box {
  line-height: 1.5;
}

.ab_pg_content_box {
  padding-inline: 30px;
}

/* about page css code start here */
/* .ab_pg_vision_mission_section {
  background: linear-gradient(
    180deg,
    rgba(252, 201, 53, 0.05),
    #ffffff
  );
}

Vision & Mission Image Box
.ab_pg_vission_img,
.ab_pg_mission_img {
  width: 100%;
}

.ab_pg_vission_img img,
.ab_pg_mission_img img {
  width: 97%;
  height: 250px;
  margin: 0 auto;
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
  border: 5px solid white;
  padding: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
} */



/* Section Background */
.vision-mission-img {
  background-color: #f4f4f9;
  padding-block: var(--padding-block);
}

/* Section Heading */
.vision-mission .section_title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

/* VM Content */
.vm-content h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--third-color);
}

.vm-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* Lists */
.vm-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.vm-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.vm-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Footer Paragraph */
.vm-footer {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
}

/* VM Image */
.vm-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.vm-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .vm-content h4 {
    font-size: 22px;
  }

  .vm-content p,
  .vm-list li,
  .vm-footer {
    font-size: 15px;
  }

  .vm-row {
    flex-direction: column !important;
  }
}

@media (max-width: 576px) {
  .vm-content h4 {
    font-size: 20px;
  }

  .vm-content p,
  .vm-list li,
  .vm-footer {
    font-size: 14px;
  }
}







/* metal pg style css start here */

.metal-page {
  padding: var(--padding-block) 0;
  background: linear-gradient(180deg,
      rgba(252, 201, 53, 0.05),
      #ffffff);
}

/* Page Title */
.page-title {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 48px;
}

.page-title h2 {
  font-size: 48px;
}

.page-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.05rem;
}

/* Content Intro Box */
.content-box {
  background: #fff;
  padding: 2.2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.content-box h2 {
  color: #111;
  margin-bottom: 1rem;
  position: relative;
}

.content-box h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin-top: 8px;
}

/* Product Cards */
/* .product-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.product-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.product-card ul {
  padding-left: 1.2rem;
}

.product-card ul li {
  margin-bottom: 0.6rem;
  color: #444;
} */

.product_card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    padding: 15px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product_card h4 {
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 600;
}

.product_card ul {
    padding-left: 18px;
    margin: 0;
}

.product_card ul li {
    font-size: 14px;
    line-height: 1.6;
}


/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: #111;
  padding: 2rem;
  border-radius: 15px;
  font-weight: 500;
}

/* metal  pg product section*/
/* product pg */
/* .product_section {
    padding-block: var(--padding-block);
    background-color: #eee;
    margin: unset;
}

.product_box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid;


}

.common_heading {
    text-align: center;
    padding-bottom: 20px;

}

.product_box {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.product_box img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
} */

/* Hover Effect */
/* .product_box:hover img {
    transform: scale(1.1);
    filter: brightness(85%);
}

.product_section .service_content{
    height: auto;
} */

/*  Core commodities page  start here*/
/* ================================
   Metals Intro 


/* home page our product section start here */


.product_card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  padding: 15px;
  height: 450px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
}

.product_section h5 {
  padding-top: 10px;
}

.product_section .modern-btn {
  position: absolute;
  bottom: 15px;
  left: 10%;
  /* transform: translateX(-50%); */
  margin-bottom: 20px;
}

.swiper-button-next,
.swiper-button-prev {

  color: var(--secondary-color);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-size: 30px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

================================*/
/* first section of core commoditiespg start here 
================================ */

.cc_metals_intro {
  padding: var(--padding-block);
  background: linear-gradient(180deg,
      rgba(252, 201, 53, 0.07),
      #ffffff);
}

.cc_metals_intro {
  margin-block: 48px !important;


}

/* Content Wrapper */
.cc_metals_intro_content {

  /* max-width: 950px; */
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 18px;
  border-left: 6px solid var(--primary-color);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Heading */
.cc_metals_intro_content h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1rem;
  color: #000;
}

/* Text */
.cc_metals_intro_content p {
  font-size: 15px;
  line-height: 1.8;
  color: black;
  margin-bottom: 1rem;
}

.fuel_intro_section {
  padding-bottom: unset !important;

}

.fuel_intro {
  text-align: center !important;
}

.fuel_intro p {
  text-align: center !important;
}

/* third section css here of commodities page start here */
/* ==========================================
   Copper & Energy-Transition Metals Section
========================================== */


.copper_energy_transition_section {
  padding-block: var(--padding-block);
  background: linear-gradient(180deg,
      rgba(252, 201, 53, 0.06),
      #ffffff);
}

/* Heading */
.copper_energy_transition_heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.copper_energy_transition_heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

/* Grid */
.copper_energy_transition_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Item */
.copper_energy_item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.copper_energy_item_img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Title */
.copper_energy_item h3 {
  font-size: 18px;
  font-weight: 500;
  padding: 1.2rem;
  color: #000;
}




/* fourth section  css code  start here   core commodities page  */
/* =========================================
   Strategic Metals Section (Individual Items)
========================================= */

.strategic_metals_section {
  padding-block: var(--padding-block);
  background: linear-gradient(180deg,
      rgba(252, 201, 53, 0.06),
      #ffffff);
}

/* Section Heading */
.strategic_metals_heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.strategic_metals_heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.strategic_metals_heading p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Grid Layout */
.strategic_metals_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Each Metal Item */
.strategic_metal_item {
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  border-top: 4px solid var(--third-color);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.strategic_metal_item:hover {
  transform: translateY(-5px);
}

/* Image */
.strategic_metal_img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Heading */
.strategic_metal_item h3 {
  padding: 1rem 0.8rem;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {
  .strategic_metals_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategic_metal_img img {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .strategic_metals_grid {
    grid-template-columns: 1fr;
  }

  .strategic_metal_item h3 {
    font-size: 14px;
  }
}












/* ===============================
   Core Commodities Second  Section code start here
================================ */

.core_commodities_section {
  padding-block: var(--padding-block);
  background: linear-gradient(180deg,
      rgba(252, 201, 53, 0.07),
      #ffffff);
}

/* Header */
.core_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.core_header h2 {
  margin-bottom: 0.5rem;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

.core_header p {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

/* Grid */
.commodities_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.commodity_card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.commodity_card:hover {
  transform: translateY(-6px);
}

/* Image */
.commodity_img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Info */
.commodity_info {
  padding: 1.5rem;
}

.commodity_info h3 {
  font-size: 18px;
  margin-bottom: 0.8rem;
  color: #000;
  position: relative;
}

.commodity_info h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
}

/* List */
.commodity_info ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.commodity_info ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.4rem;
}















/* wood page css start here */


/* ===== HERO ===== */


/* metals page 1 css */
/* ===============================
   METALS SECTION – COMPACT STYLE
================================ */

.metals-section {
  padding: 2.5rem 0;
  /* background: linear-gradient(
    135deg,
    rgba(252, 201, 53, 0.15),
    rgba(249, 126, 33, 0.15),
    rgba(232, 91, 8, 0.2)
  );  */

  background-color: #eee;
}


/* Wrapper */
.metals-wrapper {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 35px;
}

/* Image */
.metals-image {
  flex: 1;
}

.metals-image img {
  width: 100%;
  height: 100%;
  height: 520px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

/* Content Card */
.metals-content {
  flex: 1.3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 20px;
}

.metals-content h2 {
  font-size: 22px;
  margin-bottom: 1rem;
  color: #000;
}

/* Paragraphs */
.metals-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 1.4rem;
}

/* Grid */
.metals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 1.5rem;
}

/* Boxes */
.list-box {
  background: linear-gradient(160deg,
      rgba(252, 201, 53, 0.25),
      rgba(249, 126, 33, 0.25));
  padding: 18px;
  border-radius: 14px;
}

.list-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
}

.list-box ul {
  padding-left: 16px;
}

.list-box ul li {
  font-size: 13.5px;
  margin-bottom: 6px;
}

/* Note */
.note {
  font-size: 13.8px;
  line-height: 1.6;
  color: #333;
}



/* fuel page css here */
/* ===============================
/* ===============================
   FUEL SECTION – FINAL BALANCE FIX
================================ */

.fuel-content-box {
  padding: 20px 24px;
  /* closer to image height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fuel_img_box {
  height: 100%;
}

.fuel_img_box img {
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

/* Title */
.fuel-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Small underline (matches screenshot style) */
.fuel-title h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 6px;
}

/* Paragraphs */
.fuel-content-box p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 14px 0;
  color: #222;
}

/* Subtitle */
.fuel-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
}

/* Fuel list */
.fuel-list {
  padding-left: 18px;
  margin-bottom: 14px;
}

.fuel-list li {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Image fix (IMPORTANT) */
.fuel-image img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}


/* fifth section code start here advanced_industrial_metals_section start here */
.advanced_industrial_metals_section {}

.advanced_industrial_metals_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* sixth section code stgart here  */
.energy-fuels {
  width: 100%;
  padding-block: var(--padding-block);
  background: linear-gradient(180deg,
      rgba(252, 201, 53, 0.12),
      #ffffff);
}



.energy-fuels h2 {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 1.8rem;
  position: relative;
}

.energy-fuels h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin-top: 10px;
}

.energy-fuels ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.energy-fuels ul li {
  font-size: 16px;
  color: black;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-left: 4px solid var(--secondary-color);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .energy-fuels h2 {
    font-size: 24px;
  }

  .energy-fuels ul li {
    font-size: 16px;
  }
}

/* Energy & Fuels page css start here Section */


/* solar */
.solar-style-section {
  padding-top: var(--padding-top) 1rem;
  background: #fffdf8;
}

/* Section Title */
.solar-style-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Intro Text */
.section-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: black;
}

/* Grid Layout */
.solar-style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.solar-style-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.solar-style-card:hover {
  transform: translateY(-6px);
}

/* Image */
.solar-style-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top: 4px solid var(--secondary-color);
}

/* Heading */
.solar-style-card h3 {
  padding: 1.2rem 1rem 0.4rem;
  font-size: 18px;
  font-weight: 500;
}

/* Small Note */
.small-note {
  font-size: 0.85rem;
  color: #555;
  padding-bottom: 1.2rem;
}

.inverter_power_system {
  padding-block: var(--padding-block);
}


/* solar_power_infra_section  */
.solar_power_infra_section {
  padding-block: var(--padding-block);
}

/* fuel pg end content css only */
.disclaimer_box {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  padding: 1.5rem 2rem;
  border-left: 6px solid var(--third-color);
  border-radius: 8px;
  margin-bottom: 3rem;
}

.disclaimer_box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: white;
  font-weight: 500;
}





/* what we di section css code start here */

:root {
  --primary-color: rgb(252 201 53);
  --secondary-color: rgb(249 126 33);
  --third-color: rgb(232 91 8);

  --padding-block: 3rem;
  --padding-top: 3rem;
  --margin-block: 3rem;
}

a {
  color: white;
  text-decoration: none;
}

/* Section */
.what-we-do {
  padding-block: var(--padding-block);
  background-color: #f8f9fa;
}

/* Section Heading */
.what-we-do .section_title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.what-we-do .section-subtitle {
  font-size: 18px;
  color: #000;
  margin-top: 6px;
}

/* Tiles Common */
.tile {
  position: relative;
  padding: 40px 24px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover Effect */
.tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

/* Icon */
.tile-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 15px;
  transition: all 0.35s ease;
}

.tile:hover .tile-icon {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

/* Tile Heading */
.tile h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

/* Different Tile Backgrounds */
.tile1 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tile2 {
  background: linear-gradient(135deg, var(--secondary-color), var(--third-color));
}

.tile3 {
  background: linear-gradient(135deg, var(--third-color), var(--primary-color));
}

.tile4 {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Footer Text */
.wwd-footer-text {
  font-size: 16px;
  color: #000;
  margin-top: 15px;
  width: 100%;
}

.wwd-footer-text {
  font-size: 16px;
  color: #333;
  /* Dark gray for readability */
  font-weight: 500;
  line-height: 1.7;
  margin-top: 20px;
  /* max-width: 700px; */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
  border-left: 5px solid var(--primary-color);
  /* subtle brand highlight */
  background-color: rgba(252, 201, 53, 0.05);
  /* light brand accent */
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease;
}

/* Optional hover effect to make it interactive */
.wwd-footer-text:hover {
  background-color: rgba(252, 201, 53, 0.12);
  color: #000;
}



/* about page vision misison section code  start here */


/* Section Background */
.vision-mission-img {
  background-color: #f4f4f9;
  padding-block: var(--padding-block);
}

/* Section Heading */
.vision-mission .section_title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* VM Content */
.vm-content h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--third-color);
}

.vm-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* Lists */
.vm-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.vm-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.vm-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Footer Paragraph */
.vm-footer {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: black;
  margin-top: 10px;
}

/* VM Image */
.vm-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.vm-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}