/* heading title of images */

.industries-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.industries-section .heading-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 10px;
}

.industries-section h1 {
    font-size: 3.0rem;
    color: #231f1e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
}

.industries-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #cc4b24;
    border-radius: 2px;
}

.industries-section .subtitle {
    font-size: 1.4rem;
    color: #231f1e;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}


/* image dropdown wrapper */

.dropdown-wrapper {
  margin: 20px auto;
  max-width: 100%;
}

.image-dropdown {
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-header {
  background-color: #cc4b24;
  color: white;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  list-style: none; /* Remove default arrow */
  transition: background-color 0.3s ease;
}

.dropdown-header:hover {
  background-color: #b3411f;
}

.dropdown-text {
  font-size: 16px;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when details is open */
.image-dropdown[open] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-top: none;
  text-align: center;
}

.dropdown-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 7px;
}