.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.section-title span {
    color: #ff6600;
    font-weight: bold;
}
.section-title h2 {
    font-weight: bold;
}
.navbar-nav .nav-link:hover {
  color: black !important;
  transition: color 0.3s;
  background-color: aqua;
}
.icon-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.icon-card img {
    max-width: 60px;
    margin-bottom: 15px;
}
.icon-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
}
.icon-card p {
    color: #666;
}
.icon-number {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ddd;
    font-size: 24px;
    font-weight: bold;
}
.imgchoose{
    margin: -40px 0px 0px;
}
.why-choose-us{
    color: white;
    padding: 40px 20px;
}
.why-choose-us p .highlight{
    font-size: 60px;
    color: white;
    font-weight: bold;
}
.why-choose-us h3 {
    color: #F05A28;
}
.why-choose-us .highlight {
    font-weight: bold;
    font-size: 1.5rem;
}
.why-choose-us i {
    color: #F05A28;
    margin-right: 10px;
}
.form-container {
      background-color: #000;
      color: #fff;
      padding: 40px;
      border-radius: 5px;
      width: 400px;
    }
    .form-container h3 {
      color: orange;
      font-weight: bold;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .form-container h4 {
      font-weight: normal;
      margin-bottom: 20px;
    }
    .form-container input,
    .form-container textarea {
      background-color: #000;
      border: none;
      border-bottom: 1px solid #fff;
      border-radius: 0;
      color: #fff;
      padding: 5px 10px;
    }
    .form-container input:focus,
    .form-container textarea:focus {
      outline: none;
      border-bottom: 1px solid orange;
    }
    .form-container button {
      background-color: orange;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      cursor: pointer;
    }
    .form-container button:hover {
      background-color: #e68a00;
    }
  .worker-image {
    max-height: 400px;
    object-fit: cover;
  }
  .proj {
    margin-top: 90px;
    transition: transform 0.3s ease-in-out;
  }
  .proj:hover {
    transform: scale(1.1);
  }
  .image-container {
    position: relative;
    overflow: hidden;
  }
  .hover-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .image-container:hover .hover-caption {
    opacity: 1;
  }
  .hover-scale img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.subscribe-section {
  background-color: orange;
  color: #fff;
  padding: 60px 20px;
}
.subscribe-section h5 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}
.subscribe-section p {
  font-size: 16px;
  margin-bottom: 20px;
}
.subscribe-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.subscribe-form input {
  flex-grow: 1;
  padding: 10px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}
.subscribe-form input::placeholder {
  color: #fff;
}
.subscribe-form button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
}
.subscribe-form button:hover {
  background-color: #444;
}
.footer {
  padding: 40px 0;
}
.footer h6 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  color: #F05A28;
}
.footer .logo {
  font-size: 24px;
  font-weight: bold;
  color: orange;
}
.footer .text {
  color: #ccc;
}
.footer small {
  color: #ccc;
} 

/*media query */
/* @media (max-width: 768px) {
  .icon-card {
      padding: 15px;
  }
  .form-container {
      padding: 20px;
  }
  .subscribe-form {
      flex-direction: column;
      gap: 10px;
  }
  .why-choose-us p .highlight {
      font-size: 40px;
  }
}
@media (max-width: 480px) {
  .why-choose-us {
      padding: 20px 10px;
  }
  .footer h6 {
      font-size: 16px;
  }
  .footer .logo {
      font-size: 20px;
  }
} */
