/*******************************************************/
/*********** Info Section Custom Styles **************/
/*******************************************************/

/* Info Section */
.info-section {
  position: relative;
  background-size: cover;
  background-position: center;
}

.info-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.info-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.info-section .container {
  position: relative;
  z-index: 2;
}

/* Info Card Styles */
.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

.info-card .info-icon {
  color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  color: #FFD700;
  transform: scale(1.1);
}

.info-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}

.info-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.info-card a {
  transition: all 0.3s ease;
  font-weight: 500;
}

.info-card a:hover {
  color: #FFD700 !important;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .info-card {
    padding: 30px 20px;
  }

  .info-card h4 {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 575px) {
  .info-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .info-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .info-card h4 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.95rem;
  }
}
