.page-hero {
  padding: 120px 0;
  background: url("../images/image\ 6.png") no-repeat center;

  background-size: cover;
  color: white;
}

.page-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(180deg, rgba(0, 28, 119, 0.45) 47%, rgba(0, 60, 255, 0.1) 78%); */
}

.page-hero h1 {
  font-weight: 700;
  font-size: 3.5rem;
  color: white;
}

.page-hero .lead {
  font-size: 1.25rem;
  color: var(--text-light);
}

.section {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.5rem;
}

.section-bg {
  background-color: var(--bg-light);
}

.contact-info-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-info-card h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.contact-info-card p {
  margin-bottom: 0;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-media-icons a {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.social-media-icons a:hover {
  color: var(--accent-color);
}
/* QR Code specific styling */
.qr-code-container {
  display: flex;
  flex-direction: column; /* Default to column for small screens */
  align-items: center;
  text-align: center;
  margin-top: 20px;
  gap: 15px; /* Spacing between QR codes */
}

.qr-code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code-item img {
  width: 240px; /* Adjusted size for two side-by-side */
  max-width: 100%;
  height: auto;
  border: 5px solid var(--primary-color);
  border-radius: 10px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  /* On medium and larger screens, show side-by-side */
  .qr-code-container {
    flex-direction: row; /* Two columns */
    justify-content: center;
    gap: 30px; /* More spacing for desktop */
  }
}

@media (max-width: 576px) {
  /* For very small mobile screens */
  .social-media-icons a {
    font-size: 2rem; /* Reduce icon size */
    margin: 0 5px; /* Adjust margin */
  }
  .social-media-icons {
    gap: 10px; /* Reduce gap */
  }
  .qr-code-item img {
    width: 120px; /* Adjusted size for two side-by-side */
    max-width: 100%;
    height: auto;
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 5px;
  }
}

/* Base styling for Select2 to match text input */
.select2-container--default .select2-selection--single {
  height: 2.1rem; /* match input height */
  padding: 1.1rem 1rem;
  border: 1px solid #ccc; /* input border color */
  border-radius: 5px; /* match input border radius */
  font-size: 1rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  box-shadow: none;
}

/* Placeholder & selected text */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #333;
  line-height: normal;
  padding-left: 0;
}

/* Remove default arrow styling */
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 1rem;
  top: 0;
  width: 20px;
}

/* Arrow positioning */
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-width: 5px 4px 0 4px;
}

/* Focus state */
.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #3182ce; /* match input focus color */
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
}

/* Dropdown menu */
.select2-container--default .select2-dropdown {
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

/* Option items */
.select2-container--default .select2-results__option {
  padding: 10px;
}

/* Selected option */
.select2-container--default .select2-results__option--selected {
  background-color: #f0f0f0;
}

/* Hover state */
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #e2e8f0;
  color: #000;
}
