header {
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  padding: 1rem;
}

.navbar-brand img {
  height: 60px;
}
.text-Color {
  color: #d0b824;
}

.btn-Color {
  text-decoration: none;
  color: white;
  margin: 0 5px; /* Reduce margin to avoid overflow */
  width: 170px; /* Adjust width for better fit */
  height: 45px; /* Adjust height for better fit */
  background-color: #d0b824;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* About Us Section */
h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* img {
  border-radius: 10px;
} */

/* Supply Chain Section */
.bg-light {
  background-color: #f8f9fa !important;
}

.social-icons a {
  text-decoration: none;
  color: white;
  margin: 0 5px; /* Reduce margin to avoid overflow */
  width: 30px; /* Adjust width for better fit */
  height: 30px; /* Adjust height for better fit */
  background-color: #d0b824;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #d0b824;
}

.social-icons i {
  font-size: 0.875rem; /* Reduce font size for better fit */
}

/* DropDown Icon*/
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: #d0b824 !important; /* Yellow color on hover or active */
}

.navbar-nav li a {
  color: #000;
}

/* Dropdown menu hover effect */
.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  /* display: block; */
  margin-top: 0; /* Ensures dropdown doesn't have an offset */
}

/* Custom button styles */
.navbar .btn-dark {
  background-color: #000;
  border-color: #000;
}

.navbar .btn-dark:hover {
  background-color: #000;
  color: #000;
}

/* Ensure the logo scales correctly */
.navbar-logo {
  width: 200px;
  /* max-width: 150px; */
  height: auto;
}

/* Custom styles for the navbar on small screens */
.navbar {
  padding: 0.75rem 1rem;
}

/* Fix spacing and avoid button overlap in responsive view */
.navbar-toggler {
  margin-left: auto;
}

.nav-link.active {
  font-weight: bold;
  color: #d0b824; /* Make the active link black */
}
.about-section {
  background-image: url("../assets/images/Frame\ 25.png"); /* Example background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #000;
  overflow: hidden; /* Prevents overflow on smaller screens */
  padding-left: 110px;
  padding-right: 110px;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent overlay */
  /* z-index: 1; */
}

.services-section {
  background-image: url("../assets/images/About-bg.png"); /* Example background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #000;
  overflow: hidden; /* Prevents overflow on smaller screens */
  padding-left: 110px;
  padding-right: 110px;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent overlay */
  z-index: 1;
}
.services-section1 {
  background-image: url("../assets/images/Frame\ 16.png"); /* Example background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #000;
  overflow: hidden; /* Prevents overflow on smaller screens */
}
.services-section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent overlay */
  z-index: 1;
}
.services-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.services-content {
  font-size: 18px;
  line-height: 1.8;
}
.services-content1 {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 400px;
}
.services-content1 p {
  font-size: 18px;
  line-height: 1.8;
}

.services-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
.service-item {
  margin-bottom: 10px;
}
.gold-bars {
  margin-top: 30px;
  width: 100%;
}
.gold-bars img {
  width: 40%;
  border-radius: 5px;
}
.hex-shape {
  width: 100px;
  height: 55px;
  background-color: #f1c40f;
  position: relative;
  margin: 0 auto;
}

.hex-shape::before,
.hex-shape::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}

.hex-shape::before {
  bottom: 100%;
  border-bottom: 27.5px solid #f1c40f;
}

.hex-shape::after {
  top: 100%;
  border-top: 27.5px solid #f1c40f;
}

.trading-section {
  background-image: url("/assets/images/bg-product2.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f8eec7; /* Light gold color for text */
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}
.trading-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay to darken background */
  z-index: 1;
}
.trading-content {
  position: relative;
  z-index: 2;
}
.trading-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffe4b5;
  width: 100%;
  text-align: center;
}
.trading-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.gold-nuggets {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.gold-nuggets img {
  width: 40%;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .navbar-logo {
    width: 100px; /* Slightly smaller for tablets and medium screens */
  }
}

/* Button styling for 'Connect With Us' */
.btn-black {
  background-color: #000;
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.btn-black:hover {
  background-color: #444;
}

/*Footer Section      */
.footer {
  background-color: #222;
  padding: 40px 0;
}

.footer h5 {
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #fff; /* Ensure headings are visible */
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #aaa !important; /* Ensure initial color is applied */
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #d0b824 !important; /* Ensure hover color is applied */
}

.footer .text-warning {
  color: #d0b824 !important;
}

.footer .text-muted {
  color: #999 !important;
}

.footer i {
  margin-right: 8px;
  color: #ccc !important; /* Ensure initial color is applied */
  transition: color 0.3s ease;
}

.footer i:hover {
  color: #d0b824 !important; /* Ensure hover color is applied */
}

.footer a {
  color: #ccc !important; /* Ensure initial color is applied */
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #d0b824 !important; /* Ensure hover color is applied */
}

.footer .fab {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer .fab:hover {
  color: #d0b824 !important; /* Ensure hover color is applied */
  transform: scale(1.2); /* Zoom-in effect */
}

.footer .me-3 {
  margin-right: 1rem !important;
}

.icon-link {
  display: inline-block; /* Ensures the border wraps the content */
  padding: 10px 15px; /* Padding around the icons */
  border: 2px solid #fff; /* White border, you can change color */
  border-radius: 4px; /* Optional: make corners rounded */
  text-align: center; /* Center the icon inside the border */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.icon-link:hover {
  background-color: #fff; /* Change background on hover */
  color: #000; /* Change icon color on hover */
  border-color: #000; /* Change border color on hover */
}

.icon-link i {
  font-size: 1.2rem; /* Adjust icon size if needed */
}

/* Adjust margin for responsiveness */
/* @media (max-width: 767.98px) {
  .d-flex > .w-100 {
    margin-bottom: 20px;
  }
} */

@media (max-width: 1100px) {
  .supply-chain-section img {
    /* border-radius: 20px; */
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (min-width: 768px) {
  .rounded-left-corner {
    max-width: 90%; /* Slightly larger image, but not breaking layout */
  }
}

@media (max-width: 768px) {
  .supply-chain-section .col-md-6 {
    text-align: center;
  }
}

/* Custom margin for text on larger screens */
@media (min-width: 768px) {
  .about-section .me-lg-4 {
    margin-right: 2rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  /* Reduce margin for small screens */
  .social-icons a {
    margin: 0 3px;
    width: 28px; /* Reduce width */
    height: 28px; /* Reduce height */
  }

  .me-3 {
    margin-right: 0.5rem !important;
  }

  .ms-3 {
    margin-left: 0.5rem !important;
  }
}
