* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Libre+Franklin", sans-serif;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  --max-width: 1350px;
  --padding: 1rem;

  width: 85%;
  margin-inline: auto;
}

.even-columns {
  display: grid;
  gap: 1rem;
}

@media (min-width: 50em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

.img-aboutus,
picture,
svg {
  max-width: 100%;
  display: block;
}

.button {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 5px;
  padding: 1em 1.75em;
  background: linear-gradient(to right, #3caefc, #7d25cd);
}

.mobile-nav-toggle {
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0.5em;
  display: none;
}

.mobile-nav-toggle i {
  display: none;
}

.primary-header {
  margin-top: 3rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-grow: 2;
  gap: 20px;
}

/* .primary-navigation{
    display: flex;
    justify-content: space-around;
    background: red;
} */

.nav-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.logo-wrapper {
  max-width: 7%;
}

/* ================== */
/* Section stylings */
/* ================== */

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.breaker-line {
  width: 60px;
  height: 3px;
  background-color: #3caefc;
  margin-top: 0.5rem;
  border-radius: 10px;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-top: 10px;
  word-spacing: normal;
  letter-spacing: normal;
  hyphens: auto;
}

.overlay-pattern::before {
  content: "";
  position: absolute;
  top: 250px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url("/pics/overlay/5149.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 2;
  border-radius: 1rem;
  pointer-events: none;
}

/* Ensure image doesn't cover overlay with z-index */
.img-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1rem;
}

.custom-btn {
  background: linear-gradient(to right, #3caefc, #7d25cd);
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(60, 174, 252, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(60, 174, 252, 0.4);
  color: rgba(255, 255, 255, 0.888);
}
/* Adjust spacing and image size for all sections */
@media (min-width: 768px) {
  .img-wrapper img {
    max-height: 350px;
  }

  .content-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .intro-text {
    max-height: 50%;
  }
}
@media (max-width: 426px) {
  .intro-text {
    font-size: 1rem;
  }
}
