@import url("./components/config.css");

/* hero section */
.hero-section {
  min-height: 720px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 28%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.05) 100%
    ),
    url("/images/hero_banner 1.png");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  width: 100%;
}

.hero-content {
  max-width: 750px;
  padding-block: 90px;
  position: relative;
  margin-top: -100px;
}

.hero-content h1 {
  font-size: var(--super-title-font-size);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 22px;
}

.hero-content h1 span {
  display: block;
  color: var(--primary-color);
}

.hero-line {
  width: 82px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-content p {
  max-width: 650px;
  font-size: var(--text-font-size);
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.hero-buttons .btn {
  min-width: 200px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: var(--text-font-size);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(0, 128, 128, 0.075);
}

.btn-primary i {
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.75);
}

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

/*  trust bar */
.hero-trust {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 75%;
  background: white;
  padding: 15px var(--main-padding);
  border-radius: 20px;
  z-index: 11;
  max-width: 1450px;
  box-shadow: 1px 1px 10px #00000026;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  min-width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: var(--text-font-size);
}

.trust-item .divider {
  width: 1px;
  height: 38px;
  background: #d1d5db;
}

.trust-item h4 {
  font-size: var(--title-font-size);
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: var(--tiny-font-size);
  line-height: 1.3;
  margin: 0;
}

/* about us */
.about-section {
  padding: 60px 0;
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.about-content {
  max-width: 560px;
}

.section-label {
  display: block;
  color: var(--primary-color);
  font-size: var(--super-title-font-size);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.title-line {
  width: 72px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 30px;
  margin-bottom: 30px;
}

.about-content p {
  font-size: var(--text-font-size);
  line-height: 1.9;
  color: #475569;
  margin-bottom: 26px;
}

.about-content .btn {
  margin-top: 10px;
  padding: 15px 30px;
}

.about-image {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.about-image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* slider */
.program-slider-section {
  position: relative;
  background: #eefafa;
  overflow: hidden;
}

.programSwiper {
  width: 100%;
  min-height: 520px;
  position: relative;
}

.programSwiper .swiper-wrapper,
.programSwiper .swiper-slide {
  min-height: 520px;
}

.program-slide {
  display: flex;
  align-items: center;
}

.program-slide-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 75px;
}

.program-text {
  max-width: 520px;
}

.program-text h2 {
  font-size: var(--super-title-font-size);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #0f172a;
}

.title-line {
  width: 70px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 25px;
}

.program-text p {
  font-size: var(--text-font-size);
  line-height: 1.8;
  margin-bottom: 35px;
  color: #1f2937;
}

.program-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: var(--text-font-size);
  transition: 0.3s ease;
}

.program-slide-btn i {
  color: var(--primary-color);
}

.program-slide-btn:hover {
  transform: translateY(-3px);
}

.program-image-card {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Swiper arrows */

.program-prev,
.program-next {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  color: var(--white) !important;
}

.program-prev svg,
.program-next svg {
  width: 12px;
  height: 40px;
}

.program-prev {
  left: 35px;
}

.program-next {
  right: 35px;
}

.program-pagination {
  bottom: 18px !important;
}

.program-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* WAYS TO HELP */
.ways-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  margin-bottom: 34px;
}

.section-header h2 {
  font-size: 34px;
  color: #12343b;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 17px;
  color: #475569;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.help-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.45s;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(15, 118, 110, 0.18);
}

.help-content {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.help-icon {
  width: 76px;
  height: 76px;
  border: 2px solid #bde7e4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0f8f89;
  font-size: 30px;
  margin-bottom: 20px;
}

.help-content h3 {
  font-size: 25px;
  color: #0f766e;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.help-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 26px;
  width: 50%;
}

.help-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: #0f8f89;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.help-btn:hover {
  background: #0f766e;
  transform: translateY(-2px);
}

.help-image {
  overflow: hidden;
}

.help-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.help-card:hover .help-image img {
  transform: scale(1.06);
}

/* FINAL CTA */
.final-cta {
  padding: 34px 0;
  background: linear-gradient(135deg, #0f8f89, #05757a);
}

.final-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-text h2 {
  color: #ffffff;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.final-cta-text p {
  color: #e9ffff;
  font-size: 17px;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-light-btn,
.cta-white-btn {
  min-width: 190px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.cta-light-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-white-btn {
  background: #ffffff;
  color: #0f766e;
}

.cta-light-btn:hover,
.cta-white-btn:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (min-width: 1400px) {
  .programSwiper {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    min-height: 650px;
  }

  .hero-trust {
    gap: 22px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.88) 55%,
        rgba(255, 255, 255, 0.4) 100%
      ),
      url("/images/hero_banner.png");
    background-position: center right;
  }

  .hero-content {
    margin-top: 0px;
    max-width: none;
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-buttons {
    margin-bottom: 45px;
  }

  /* about */
  .about-content {
    max-width: none;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 380px;
  }

  /* slider */
  .program-slider-section {
    padding-block: 30px;
  }

  .programSwiper,
  .programSwiper .swiper-wrapper,
  .programSwiper .swiper-slide {
    min-height: 560px;
  }

  .program-slide-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 70px;
  }

  .program-text {
    max-width: none;
  }

  .program-image-card {
    height: 320px;
  }

  .program-overlay {
    background: linear-gradient(
      90deg,
      rgba(238, 250, 250, 0.97) 0%,
      rgba(238, 250, 250, 0.88) 55%,
      rgba(238, 250, 250, 0.45) 100%
    );
  }

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

  .final-cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

.program-slide-content {
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    background:
      linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
      url("/images/hero_banner.png");
    background-position: center;
  }

  .hero-content {
    padding-block: 70px;
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust {
    width: 100%;
    box-shadow: none;
  }

  /* about */

  .about-section {
    padding: 80px 0;
  }

  .about-image img {
    height: 280px;
  }

  /* slider */
  .programSwiper,
  .programSwiper .swiper-wrapper,
  .programSwiper .swiper-slide {
    min-height: 650px;
  }

  .program-slide {
    background-position: center;
  }

  .program-overlay {
    background: rgba(238, 250, 250, 0.9);
  }

  .program-slide-content {
    max-width: 100%;
  }

  .program-prev,
  .program-next {
    display: none;
  }

  .ways-section {
    padding: 60px 0;
  }

  .help-card {
    grid-template-columns: 1fr;
  }

  .help-image {
    height: 240px;
  }

  .section-header h2,
  .final-cta-text h2 {
    font-size: 26px;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-light-btn,
  .cta-white-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding-block: 55px;
  }

  .hero-content h1 {
    font-size: var(--super-title-font-size);
  }

  .hero-content p {
    font-size: var(--text-font-size);
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-item {
    align-items: flex-start;
  }

  .program-image-card {
    height: 240px;
  }

  .program-prev,
  .program-next {
    display: none;
  }
}
