.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;
}
}
