/*=============================
  Banner Image Section Css Start
===============================*/
.trades-banner-section {
  position: relative;
  padding-top: 85px;
  height: 350px;
}

.trades-banner-section .trades-banner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.trades-banner-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba( 0, 0, 0, 0.5 ); /* Adjust the overlay color and opacity as needed */
  z-index: -1;
}

.trades-banner-section .trades-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
  height: 100%;
  text-align: center;
}

.trades-banner-section .trades-content .trades-title p {
  font-size: 45px;
  font-weight: 700;
}

.trades-banner-section .trades-content p {
  font-size: 20px;
  font-weight: 500;
}

.trades-banner-section .trades-content .btn-with-icon {
  position: relative;
  z-index: 2;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .trades-banner-section .trades-content .trades-title p {
    font-size: 28px;
  }

  .trades-banner-section .trades-content {
    gap: 20px;
  }
  
  .trades-banner-section .trades-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .trades-banner-section .trades-content .trades-title p {
    font-size: 24px;
  }
  .trades-banner-section .trades-content {
    gap: 10px;
  }
  .trades-banner-section .trades-content p {
    font-size: 16px;
  }
}
/*=============================
  Banner Image Section Css End
===============================*/
/*=============================
  Our Expert Section Css Start
===============================*/
.our-experts-section {
  margin-block: 100px;
}

.our-experts-section h1 {
  font-size: 35px;
  font-weight: 700;
}

.our-experts-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* Ensure the lists wrap to the next line */
  gap: 30px;
  margin-top: 50px;
}

.our-experts-container .list {
  width: calc(50% - 15px); /* Adjust width for two lists per line with gap */
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-experts-container p {
  font-size: 20px;
  font-weight: 500;
  margin-block: auto;
}

@media (max-width: 600px) {
  .our-experts-container .list {
    width: 100%; /* Full width for one list per line on small screens */
  }
}
/*=============================
  Our Expert Section Css End
===============================*/
/*=============================
  Our Needs Section Css Start
===============================*/
.our-needs-section {
  margin-top: 50px;
}

.our-needs-section h1 {
  font-size: 35px;
  font-weight: 700;
}

.our-needs-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
  gap: 30px;
  margin-top: 50px;
}

.our-needs-container .list {
  width: calc(30% - 15px); /* Adjust width for two lists per line with gap */
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-needs-container p {
  font-size: 20px;
  font-weight: 500;
  margin-block: auto;
}

@media (max-width: 1000px) {
  .our-needs-container .list {
    width: calc(50% - 15px); /* Full width for one list per line on small screens */
  }
}

@media (max-width: 600px) {
  .our-needs-container .list {
    width: 100%; /* Full width for one list per line on small screens */
  }
}
/*=============================
  Our Needs Section Css End
===============================*/