.search-box {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background: white;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
}

.search-box input {
  border: none;
  outline: none;
  width: 200px;
}

.attr-nav {
  position: relative;
}
.carousel-item {
  height: 90vh;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Mobile View Fix */
@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 50vh;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 50vh;
    min-height: 350px;
  }
}
.carousel-overlay {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* Optional: light overlay */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  padding-right: 5%;
}

.carousel-content h5 {
  font-size: 1.5rem;
  color: #222;
  font-family: 'Courier New', Courier, monospace;
}

.carousel-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #111;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content h5{
    font-size: 1rem;
  }
  
  .carousel-overlay {
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media (max-width: 480px) {
  .carousel-content h1 {
    font-size: 1.4rem;
  }

  .carousel-content h5{
    font-size: 0.9rem;
  }
}


.btn-custom {
  background-color: #f7c12f;
  color: black;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
}

.industry-box {
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-box img {
  max-height: 70px;
  margin-bottom: 15px;
}

.industry-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}