.home-contact-section {
  background: url('/assets/images/golden-creative-lights-halftone-wallpaper.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  color: #fff;
}

.home-contact-box {
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-contact-heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.home-contact-subheading {
  font-size: 1.1rem;
  color: #ddd;
}

.home-form-control {
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.7); /* semi-transparent */
  color: #fff;
  border: 1px solid #888;
  border-radius: 4px;
}

.home-form-control::placeholder {
  color: #ccc;
}

.home-btn-success {
  background-color: #DBA63B;
  color: #fff;
  border: none;
  padding: 12px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.home-btn-success:hover {
  background-color: #231F20;
  color: #fff;
}

.home-contact-info {
  padding-left: 20px;
}

.home-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.home-info-item i {
  font-size: 1.4rem;
  margin-right: 15px;
  padding: 10px;
  border: 0.1px solid #fff;
  border-radius: 1px;
  color: #DBA63B;
  background-color: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.home-info-item i:hover {
  background-color: #DBA63B;
  color: #fff;
  border-color: #DBA63B;
}

.home-contact-info p {
  margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .home-contact-info {
    padding-left: 0;
    margin-top: 30px;
  }
}

  /* our services section css */
  .service-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
  }

  .service-box:hover {
    background-color: #f8f9fa;
    color: #231F20;
  }

  .service-box:hover .service-title,
  .service-box:hover .read-more {
    color: #231F20;
  }

  .service-icon {
    font-size: 2.2rem;
    color: #DBA63B;
    margin-bottom: 1rem;
  }

  .service-title {
    font-weight: 600;
    font-size: 15px;
    color: #DBA63B;
    text-transform: uppercase;
  }

  .service-desc {
    font-size: 13px;
    color: #444;
    margin: 10px 0;
  }

  .read-more {
    font-size: 13px;
    color: #DBA63B;
    text-decoration: none;
  }

  .read-more:hover {
    text-decoration: underline;
  }
  