/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Merriweather:wght@400;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --primary-color: hsl(120, 25%, 35%); /* Warm green */
  --primary-color-alt: hsl(120, 25%, 30%); /* Darker green */
  --primary-color-light: hsl(120, 25%, 45%); /* Lighter green */
  --primary-color-lighter: hsl(120, 25%, 55%); /* Even lighter green */
  --secondary-color: hsl(43, 74%, 65%); /* Warm gold */
  --title-color: hsl(0, 0%, 15%); /* Dark gray for headings */
  --text-color: hsl(0, 0%, 30%); /* Medium gray for body text */
  --text-color-light: hsl(0, 0%, 55%); /* Light gray for secondary text */
  --white-color: hsl(0, 0%, 100%);
  --body-color: hsl(0, 0%, 98%);
  --container-color: hsl(0, 0%, 95%);
  --border-color: hsl(0, 0%, 90%);

  /* FAQ */
  --white-colorfaq: #ffffff;
  --primary-colorfaq: #03b5d2;
  --text-colorfaq: #4d5974;
  --border-colorfaq: #e5e5e5;
  
  /*========== Font and typography ==========*/
  --body-font: "Open Sans", sans-serif;
  --title-font: "Merriweather", serif;
  --biggest-font-size: 2.5rem;
  --bigger-font-size: 2rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.25rem;
    --bigger-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  font-family: var(--body-font);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

input,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: var(--font-bold);
  line-height: 1.3;
}

ul {
  list-style: none;
}

.new {
    list-style:circle;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== PROMO BANNER ===============*/
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--white-color);
  z-index: calc(var(--z-fixed) + 1);
}

.animated-anchor-link {
  display: block;
  font-size: 18px;
  text-decoration: none;
  color: #ffffff;
  max-width: 100%;
  word-wrap: break-word;
}

.animated-anchor-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

#typing-text {
  white-space: normal;
  overflow: hidden;
  display: block;
  width: 100%;
}

.promo-text {
  margin: 0;
}

.promo-link {
  color: white;
  text-decoration: underline;
  font-weight: var(--font-semi-bold);
  margin-left: 0.5rem;
}

.promo-link:hover {
  opacity: 0.9;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding: 6rem 0;
}
.section__title {
  font-family: var(--title-font);
  font-size: var(--bigger-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 3rem;
}

/*=============== HEADER & NAV ===============*/
/* HEADER */
.header {
  position: fixed;
  top: 2.5rem; /* Make room for the banner */
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
  border: none;
}

/* Adjust main content to account for both banner and header */
.main {
  margin-top: calc(var(--header-height) + 2.5rem);
  overflow: hidden;
}

/* NAV WRAPPER */
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* LOGO + TEXT */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  font-size: 1.25rem;
}

.nav__logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* NAV MENU */
.nav__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* NAV LIST */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

/* NAV LINKS */
.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: color 0.3s;
}

.nav__link:hover {
  color: var(--primary-color);
}

/* Navbar Donate Button */
.nav__list .button {
  padding: 0.8rem 1.5rem;
}

/* TOGGLE & CLOSE ICONS */
.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    padding: 4rem 0;
    transition: 0.4s;
    z-index: var(--z-fixed);
    overflow-y: auto;
  }

  .nav__menu.show-menu {
    top: 0;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2.5rem;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }
}

/*=============== HOME ===============*/
.home {
  position: relative;
  background-image: url('/public/images/Banner.jpeg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100vh - var(--header-height) - 2.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 0.3rem solid;
  border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
  padding: 0 2rem;
}

.home__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(-5%);
}

.home__title {
  color: var(--white-color);
  font-size: 2.3rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home__description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  font-weight: var(--font-medium);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.home__data .button {
  margin-top: 1rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.first {
  font-size: 4.5rem;
  filter: drop-shadow(0 0 1.3px #ffffff);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.second {
  font-size: 2.2rem;
  font-family: var(--title-font);
  filter: drop-shadow(0 0 1.3px #ffffff);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .home__container {
    margin-top: 8vh;
  }

  .home__data {
    padding: 2rem;
    width: 95%;
    gap: 1.5rem;
  }

  .first {
    font-size: 2.8rem;
  }

  .second {
    font-size: 1.6rem;
  }

  .home__description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button:hover {
  background-color: var(--primary-color-alt);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*=============== ABOUT ===============*/
#about {
  padding-top: 2rem;
}

.about {
  padding: 6rem 0;
  background-color: var(--container-color);
  color: var(--text-color);
  font-family: var(--body-font);
  line-height: 1.6;
}

.about__container {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.about__data {
  max-width: 600px;
}

.about__description {
  margin-bottom: 2rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.about__points {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.point:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.point img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about__data {
    text-align: left;
}

.about__data .section__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about__points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hand, .group {
    width: 5vw;
    min-width: 55px;
    height: auto;
}

@media (max-width: 768px) {
    .about__container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    .about__data {
        text-align: center;
    }
    .about__img {
        max-width: 100%;
        height: auto;
    }
    .about__points {
        align-items: center;
    }
    .button {
        width: 100%;
        text-align: center;
    }
}

/*=============== PARTNERSHIPS ===============*/
.partner {
  background-color: var(--white-color);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.partner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(120, 25%, 35%, 0.05) 0%, rgba(43, 74%, 65%, 0.05) 100%);
  transform: rotate(-10deg);
  z-index: 0;
}

.partner__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.partner__logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  order: -1;
}

.partner__content {
  text-align: left;
}

.partner__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--title-color);
}

.partner__description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.programs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.program__item {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.program__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.program__item h3 {
  color: var(--title-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.program__item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .partner__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partner__logo {
    order: 0;
    margin: 0 auto;
  }

  .partner__content {
    text-align: center;
  }

  .programs__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*=============== HELP US ===============*/
.help-us {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.help-us__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.help-us__card {
  background-color: var(--white-color);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.help-us__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.help-us__icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.help-us__card:hover .help-us__icon {
  transform: scale(1.1);
}

.help-us__icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.help-us__card h3 {
  color: var(--title-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: var(--font-bold);
}

.help-us__card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.help-us__card .button {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .help-us__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .help-us__card {
    padding: 2rem 1.5rem;
  }
}

/*=============== VISION ===============*/
#vision {
  padding-top: 2rem;
}

.vision {
  background-color: var(--white-color);
  padding: 6rem 0;
}

.vision__container {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.vision__data {
  max-width: 600px;
}

.vision__description {
  margin-bottom: 2rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.vision__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vision__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--title-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about__container {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    }

    .about__data {
        text-align: center;
    }

    .about__points {
        align-items: center;
    }

    .about__img {
        max-width: 100%;
        height: auto;
        text-align: center;
    }

    .vision__container {
        grid-template-columns: 1fr;
    }

    .vision__img {
        max-width: 300px;
    }

    .vision__data {
        text-align: center;
    }

    .vision__description {
        margin-top: 1rem;
    }
}

/*=============== VALUES ===============*/
.values {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.values__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value {
  background-color: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--title-color);
  font-weight: var(--font-bold);
}

.value__description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== TEAM ===============*/
.team {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section__subtitle {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 3rem;
  font-size: 1.2rem;
  font-weight: var(--font-medium);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team__member {
  text-align: center;
  padding: 2rem;
  background-color: var(--container-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team__member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team__member:hover .team__photo {
  transform: scale(1.05);
  border-color: var(--primary-color-alt);
}

.team__name {
  color: var(--title-color);
  margin-bottom: 0.5rem;
  font-weight: var(--font-bold);
  font-size: 1.3rem;
}

.team__role {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: var(--font-medium);
}

/*=============== FAQ ===============*/
.faq {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.faq .container {
  margin: 0 auto;
  padding: 1rem;
  width: 48rem;
  max-width: 100%;
}

.accordion .accordion-item {
  border-bottom: 1px solid var(--border-colorfaq);
  background-color: var(--white-color);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1.5rem;
  color: var(--text-colorfaq);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: color 0.3s ease;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--primary-color);
}

.accordion-title {
  padding: 1em 1.5em 1em 0;
  display: inline-block;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  transform: translateY(-50%);
}

.accordion button .icon::before,
.accordion button .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.accordion button .icon::before {
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
}

.accordion button .icon::after {
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  will-change: opacity, max-height;
}

.accordion .accordion-content.active {
  opacity: 1;
  max-height: 20em;
  margin-bottom: 1em;
  padding: 0 1.5rem 1.5rem;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 1em 0;
  color: var(--text-colorfaq);
}

@media screen and (max-width: 768px) {
  .faq .container {
    padding: 2rem;
    width: 100%;
  }

  .accordion button {
    font-size: 1rem;
  }

  .accordion .accordion-content p {
    font-size: 0.9rem;
  }
}

/*=============== CONTACT ===============*/
.contact {
  padding: 6rem 0;
  background-color: var(--white-color);
  position: relative;
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.contact__content {
  text-align: left;
}

.contact__title {
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.contact__description {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact__info {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--container-color);
  border-radius: 8px;
  transition: transform 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact__card:hover {
  transform: translateX(0.5rem);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact__card-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact__card-title {
  font-size: 1rem;
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.contact__card-data {
  font-size: 0.9rem;
  color: var(--text-color);
}

.contact__form {
  display: grid;
  gap: 1.5rem;
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact__form-div {
  display: grid;
  gap: 0.5rem;
}

.contact__form-tag {
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.contact__form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.3s;
}

.contact__form-input:focus {
  border-color: var(--primary-color);
}

.contact__form-area {
  height: 10rem;
  resize: none;
}

@media screen and (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
  
  .contact__content {
    text-align: center;
  }
  
  .contact__info {
    justify-content: center;
  }
}

/*=============== FOOTER ===============*/
.footer {
    background-color: var(--primary-color);
    padding: 4rem 0 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__content > div {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__title {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    margin-bottom: 1.5rem;
    font-weight: var(--font-bold);
}

.footer__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.footer__social-link {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer__social-link:hover {
    transform: translateY(-4px);
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer__links li {
    margin: 0;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
    text-align: center;
    display: block;
}

.footer__links a:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
} 
.footer__input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(219, 217, 217, 0.617);
    color: var(--title-color);
}

.footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.2rem 2.5rem;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer__button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.footer__copy {
    display: block;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--smaller-font-size);
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer__content > div {
        width: 100%;
        max-width: 400px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links {
        align-items: center;
    }

    .footer__form {
        max-width: 400px;
        margin: 0 auto;
    }
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: 3rem;
    box-shadow: 0 4px 16px hsla(353, 100%, 8%, .2);
    color: var(--primary-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25;
    border-radius: .5rem;
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s;
}

.scrollup:hover {
    transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
    bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
    .container {
        margin-inline: 1rem;
    }

    .footer__form {
        background-color: transparent;
        box-shadow: none;
        flex-direction: column;
        row-gap: 1rem;
        padding: 0;
    }

    .footer__input {
        background-color: var(--container-color);
        box-shadow: 0 4px 16px hsla(353, 100%, 8%, .1);
        padding: .75rem 1rem;
        border-radius: 4rem;
    }
}

/* For medium devices */
@media screen and (max-width: 576px) {
    .home__container,
    .about__container {
        grid-template-columns: 380px;
        justify-content: center;
    }

    .contact__container {
        width: 450px;
        margin-inline: auto;
    }

    .footer__form {
        width: 360px;
    }
}

@media screen and (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .footer__content div:nth-child(3) {
        grid-column: 1 / 3;
    }

    .footer__title {
        text-align: center;
    }

    .footer__social,
    .footer__pay {
        column-gap: 1.5rem;
    }

    .home__container,
    .about__container,
    .partner__container,
    .vision__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .home {
        padding: 6rem 0 3rem;
    }

    .home__title {
        font-size: var(--h1-font-size);
    }

    .home__description {
        font-size: var(--normal-font-size);
    }

    .about__points {
        gap: 1.5rem;
    }

    .footer__form {
        flex-direction: column;
    }
}

/* For large devices */
@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .section {
        padding-block: 7rem 2rem;
    }

    .section__title {
        margin-bottom: 4rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 4rem;
    }

    .home__container {
      grid-template-columns: 515px 55px;
      column-gap: 3px;
      align-items: start;
      padding-block: 10rem 4rem;
    }

    .home__data {
        text-align: initial;
        margin-top: 2rem;
    }

    .home__description {
        margin-bottom: 3.5rem;
        padding-right: 6rem;
    }
}

@media (max-width: 480px) {
  .home__title.first {
    font-size: 2.2rem;
  }

  .home__title.second {
    font-size: 1.4rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .partner__title,
  .contact__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .values__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .value {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
    .promo-banner {
        display: none;
    }
    .header {
        top: 0;
    }
    .main {
        margin-top: var(--header-height);
    }
}

/*=============== ABOUT HERO ===============*/
.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0; /* Remove extra margin since header is already positioned */
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: none;
}

.slide:first-child {
  display: block;
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white-color);
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.slide-tag {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--title-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
  transition: background-color 0.3s ease;
}

.slide-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slide-nav.prev {
  left: 2rem;
}

.slide-nav.next {
  right: 2rem;
}

.slide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--white-color);
}

/*=============== STORY SECTION ===============*/
.story {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.story__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.story__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/*=============== NUMBERS SECTION ===============*/
.numbers {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
  color: var(--white-color);
}

.numbers__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.numbers__value {
  font-size: 3rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.numbers__description {
  font-size: 1.1rem;
  font-weight: var(--font-medium);
}

/*=============== APPROACH SECTION ===============*/
.approach {
  padding: 6rem 0;
  background-color: var(--body-color);
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.approach__item {
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.approach__icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.approach__title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  color: var(--title-color);
}

.approach__description {
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== JOIN SECTION ===============*/
.join {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
  color: var(--white-color);
  text-align: center;
}

.join__title {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.join__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.join__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/*=============== PAGE HERO ===============*/
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 50%, var(--secondary-color) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white-color);
}

.page-hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero__description {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/*=============== INTERNSHIP PROGRAMS ===============*/
.internship-programs {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.internship-card {
  background-color: var(--container-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.internship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.internship-card__header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 2rem;
  text-align: center;
}

.internship-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.internship-card__header h3 {
  color: var(--white-color);
  font-size: 1.5rem;
  margin: 0;
}

.internship-card__content {
  padding: 2rem;
}

.internship-card__content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.internship-card__details {
  list-style: none;
  margin-bottom: 2rem;
}

.internship-card__details li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.internship-card__details li:last-child {
  border-bottom: none;
}

/*=============== INTERNSHIP BENEFITS ===============*/
.internship-benefits {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--title-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-item p {
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== APPLICATION PROCESS ===============*/
.application-process {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step__number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: var(--title-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.process-step p {
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== TESTIMONIALS ===============*/
.testimonials {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.testimonial-content p {
  color: var(--text-color);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author h4 {
  color: var(--title-color);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

/*=============== CTA SECTION ===============*/
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
  color: var(--white-color);
  text-align: center;
}

.cta-content h2 {
  color: var(--white-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button--outline {
  background-color: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
  transition: all 0.3s ease;
}

.button--outline:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/*=============== ACTIVE NAV LINK ===============*/
.nav__link.active {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

@media screen and (max-width: 768px) {
  .about-hero {
    height: 70vh;
    margin-top: 0; /* Remove extra margin since header is already positioned */
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .slide-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .story__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .numbers__container {
    grid-template-columns: 1fr;
  }
  
  .approach__grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero__title {
    font-size: 2.5rem;
  }
  
  .page-hero__description {
    font-size: 1.1rem;
  }
  
  .internship-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/*=============== FEATURED PROGRAMS ===============*/
.featured-programs {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background-color: var(--container-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
  border: 2px solid var(--primary-color);
}

.program-card__image {
  height: 200px;
  overflow: hidden;
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover .program-card__image img {
  transform: scale(1.05);
}

.program-card__content {
  padding: 2rem;
}

.program-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: var(--font-semi-bold);
}

.program-card__content h3 {
  color: var(--title-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.program-card__content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.program-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text-color);
}

.program-card__features i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.program-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.program-card__price {
  font-size: 1.2rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

/*=============== PROGRAM CATEGORIES ===============*/
.program-categories {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background-color: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-card__icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card__icon {
  transform: scale(1.1);
}

.category-card__icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.category-card h3 {
  color: var(--title-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-card__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.category-card__link:hover {
  gap: 1rem;
}

/*=============== UPCOMING EVENTS ===============*/
.upcoming-events {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background-color: var(--container-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.event-card__date {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.event-card__day {
  font-size: 2rem;
  font-weight: var(--font-bold);
  line-height: 1;
}

.event-card__month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card__content {
  padding: 1.5rem;
  flex: 1;
}

.event-card__content h3 {
  color: var(--title-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.event-card__content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.event-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.event-card__details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.event-card__details i {
  color: var(--primary-color);
}

/*=============== PARTICIPATION GUIDE ===============*/
.participation-guide {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.participation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.participation-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.participation-step__number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  margin: 0 auto 1.5rem;
}

.participation-step h3 {
  color: var(--title-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.participation-step p {
  color: var(--text-color);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-card__date {
    min-width: auto;
    padding: 1rem;
  }
  
  .participation-steps {
    grid-template-columns: 1fr;
  }
}

/*=============== FEATURED POST ===============*/
.featured-post {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.featured-post__card {
  background-color: var(--container-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-color);
}

.featured-post__image {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: var(--font-semi-bold);
}

.featured-post__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.featured-post__date,
.featured-post__category {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.featured-post__category {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.featured-post__title {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.featured-post__excerpt {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/*=============== BLOG POSTS ===============*/
.blog-posts {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--white-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--font-medium);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background-color: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-card__date,
.blog-card__category {
  color: var(--text-color-light);
  font-size: 0.8rem;
}

.blog-card__category {
  background-color: var(--container-color);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.blog-card__title {
  color: var(--title-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-card__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-card__link:hover {
  gap: 1rem;
}

/*=============== BLOG PAGINATION ===============*/
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  background-color: var(--white-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

/*=============== BLOG NEWSLETTER ===============*/
.blog-newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
  color: var(--white-color);
  text-align: center;
}

.newsletter-content h2 {
  color: var(--white-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form .button {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .featured-post__card {
    grid-template-columns: 1fr;
  }
  
  .featured-post__content {
    padding: 2rem;
  }
  
  .featured-post__title {
    font-size: 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input {
    min-width: auto;
    width: 100%;
  }
  
  .newsletter-content h2 {
    font-size: 2rem;
  }
}

/*=============== CONTACT INFO ===============*/
.contact-info {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info__card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.contact-info__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-info__icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.contact-info__card:hover .contact-info__icon {
  transform: scale(1.1);
}

.contact-info__icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.contact-info__card h3 {
  color: var(--title-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info__card p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.contact-info__card span {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

/*=============== CONTACT FORMS ===============*/
.contact-forms {
  padding: 6rem 0;
  background-color: var(--container-color);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.form-card {
  background-color: var(--white-color);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.form-card h3 {
  color: var(--title-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.form-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: var(--white-color);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(120, 25%, 35%, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .button {
  margin-top: 1rem;
  align-self: flex-start;
}

/*=============== CONTACT FAQ ===============*/
.contact-faq {
  padding: 6rem 0;
  background-color: var(--white-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  color: var(--title-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-color);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
  
  .forms-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

