body {
  overflow-x: hidden;
}

.hero-banner {
  padding: 0;
}

.banner-wrapper {
  min-height: 300px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.banner-left {
  background: rgba(0, 0, 0, 0.5);
}

.banner-right {
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .banner-wrapper {
    flex-direction: column;
  }

  .banner-left,
  .banner-right {
    text-align: center;
    padding: 2rem !important;
  }

  .hero-banner h2 {
    font-size: 2rem !important;
  }
}

.icon-circle {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: background-color 0.3s ease;
}


/*  */
.info-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding: 6px 7px;
  font-size: 0.8rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .info-card {
    text-align: center;
  }

  .info-icon {
    top: 8px;
    right: 8px;
    padding: 5px 6px;
  }
}

@media (max-width: 576px) {
  .info-card {
    min-height: 100px;
    margin-bottom: 15px;
  }

  .info-card h6 {
    font-size: 20px;
  }

  .info-card p {
    font-size: 18px;
  }

  .container, .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }

  .row {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    
  }
}

.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.custom-input {
  background-color: #f9f9f9;
  border: 1px solid #ddd !important;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.custom-input:focus {
  border-color: #000;
  box-shadow: none;
  background-color: #fff;
}

@media (max-width: 767px) {
  .form-card {
    padding: 20px;
  }
}
