/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 56px;
  color: #333;
}

/* Header Sections */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 500px;
}

.about-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
}

.contact-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Card Hover Effect */
.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 36px;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Form Styles */
.form-control,
.form-select {
  padding: 12px 15px;
  border-radius: 0;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

/* Overview Section Styles */
.icon-box-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
}

/* About Banner Section */
.about-banner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FAQ Section Styles */
.accordion-button:not(.collapsed) {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

/* Form Styles Enhancements */
.form-control,
.form-select {
  padding: 12px 15px;
  border-radius: 0;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

.btn-outline-primary {
  border-width: 2px;
}

.form-container {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #004aad;
}

.form-control:focus {
  border-color: #004aad;
  box-shadow: 0 0 5px rgba(0, 74, 173, 0.5);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    padding-top: 72px;
  }

  .hero-section,
  .about-header,
  .contact-header {
    height: 50vh;
    text-align: center;
  }

  .hero-section .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-section .btn-outline-light {
    margin-left: 0 !important;
  }
}
