.span {
  color: #0092cb;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 500px;
  display: block;
}

@media (max-width: 768px) {
  .banner,
  .banner-image {
    height: 200px;
  }
}

.about-section {
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.about-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-image,
.about-text {
  flex: 1;
}

.about-image iframe {
  width: 100%;
  height: 380px;
  display: block;
  border-radius: 10px;
  mix-blend-mode: multiply;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

/* Stack content on small screens */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    margin-top: 20px;
  }

  .about-image img {
    height: 200px;
  }
}

.contact-section {
  margin: 2rem auto;
  padding: 0 1rem;
}
.contact-section .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: black;
}
.contact-section .cards-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-section .card {
  background: linear-gradient(to bottom, #e8f4f8, #98cbdf);
  flex: 1 1 250px;
  max-width: 400px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}
.contact-section .card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: skyblue;
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 0 0 10px 10px;
}
.contact-section .card:hover::before {
  height: 100%;
}

.contact-section .top-images {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  z-index: 1;
}
.contact-section .top-images img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.contact-section .card-title {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: black;
  text-align: center;
  z-index: 1;
}
.contact-section .action-icons {
  display: flex;
  gap: 1rem;
  z-index: 1;
}
.contact-section .action-icons img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: filter 0.3s ease;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-section .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-section .card {
    max-width: 90vw;
  }
}

.cards-containerss {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  flex-wrap: wrap;
  /* Allows wrapping for smaller screens */
}

.cards-containerss .card {
  width: 30%;
  /* Sets the card width */
  background: linear-gradient(to right, #0092cb, #005f86);
  border: 1px solid black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  /* Ensures padding doesn't affect the overall width */
}

.cards-containerss .card a {
  text-decoration: none;
}

.cards-containerss .card-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.cards-containerss .card-text {
  margin-top: 15px;
  font-size: 0.9em;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cards-containerss .card {
    width: 45%;
    /* Two cards per row on medium screens */
  }
}

@media (max-width: 480px) {
  .cards-containerss .card {
    width: 100%;
    /* One card per row on small screens */
  }
}

.contact-sectionss {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.contact-sectionss .map,
.contact-sectionss .form {
  width: 50%;
  padding: 20px;
}

.contact-sectionss form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-sectionss input,
.contact-sectionss textarea {
  padding: 10px;
  font-size: 14px;
  width: 100%;
}

.contact-sectionss .captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-sectionss .captcha-box {
  background-color: white;
  padding: 8px;
  font-weight: bold;
  font-size: 16px;
  width: 80px;
  text-align: center;
  letter-spacing: 2px;
  user-select: none;
  border: 1px solid black;
}

.contact-sectionss input[name="captcha_input"] {
  width: 120px;
  border: 1px solid black;
}

.contact-sectionss .form button {
  padding: 10px;
  background-color: blueviolet;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-sectionss .form button:hover {
  background-color: rgb(255, 166, 0);
  transition: 2s;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .contact-sectionss .map,
  .contact-sectionss .form {
    width: 100%;
  }

  .contact-sectionss img{
  width:300px;
  height: auto;
}

}

.pagination {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    list-style: none;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    text-decoration: none;
    color: #007bff;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a:hover {
    background-color: #007bff;
    color: white;
}

.pagination .active a {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    cursor: default;
}