.elementor-581 .elementor-element.elementor-element-a2926ca{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1baf088 *//* Industries Hero Section */
.industries-hero {
  position: relative;
  background: url("https://i.pinimg.com/1200x/fe/09/32/fe093298f7c8fd5ce124171a03c6a4b7.jpg") 
              no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f5f1e9;
  overflow: hidden;
}

/* Overlay for better text readability */
.industries-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 57, 30, 0.7); /* green tint */
  z-index: 1;
}

.industries-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.industries-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e5dac8;
}

.industries-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f8f5ef;
}

@media (max-width: 768px) {
  .industries-hero h1 {
    font-size: 2.3rem;
  }

  .industries-hero p {
    font-size: 1.1rem;
  }
}

.industries-grid-section {
  padding: 80px 20px;
  background-color: #F6F1EA; /* light cream/sand */
  color: #1F2D26;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.industries-grid-section .section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.industries-grid-section .section-heading p {
  font-size: 1.1rem;
  color: #8B8575;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.industry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1F2D26;
}
.card-content p {
  font-size: 1rem;
  color: #4B4B4B;
}

.cta-banner {
  background-color: #183221; /* Trashure dark green */
  color: #F6F1EA; /* Soft cream from brand palette */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.cta-container h2 {
  font-size: 2.75rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #FFFFFF; /* Pure white for sharp visibility */
  letter-spacing: 0.5px;
}

.cta-container p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  font-family: 'DM Serif Text', serif;
  opacity: 1;
  color: #F1EDE5; /* Light beige for softer body text */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background-color: #f5f0e8 !important;
  color: #19391e !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.cta-section .cta-button:hover {
  background-color: #e2d8c3 !important;
  color: #122d18 !important;
}/* End custom CSS */