/*  CARDS  */
.home_page-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
}

.home_page-cards > div {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.home_page-cards > div:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.home_page-cards img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-bottom: 4px solid #00b4d8;
  transition: transform 0.4s ease;
  border-radius: 8px;
  padding: 10px;
}

.home_page-cards > div:hover img {
  transform: scale(1.05);
}

.home_page-cards p {
  font-size: 18px;
  margin: 20px;
  color: #023047;
  line-height: 1.5;
  font-weight: 500;
}

.home_page-cards > div::before {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0077b6, #00b4d8, #90e0ef);
  display: block;
}

/*  HERO SECTION  */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  margin: 80px 0 30px;
  width: 100%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ffb703;
  color: #023047;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #ffd166;
}

/* QUOTES */
.motivation-sect {
  background: #e8f4fb;
  border-radius: 12px;
  padding: 40px 20px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quote-text {
  font-size: 1.2rem;
  color: #023047;
  margin: 20px 0;
  font-style: italic;
  transition: opacity 0.6s ease;
  font-style: italic;
}

.quote-but {
  background-color: #0077b6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3 ease;
}
.quote-but:hover {
  background-color: #005f87;
}

/*  ADVANTAGES  */
.advantages {
  background: #f0f9ff;
  padding: 80px 40px;
  text-align: center;
}

.advantages h2 {
  color: #023047;
  font-size: 2.2em;
  margin-bottom: 40px;
}

.advantages-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.adv-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.adv-card img {
  height: 60px;
  margin-bottom: 20px;
}

.adv-card h3 {
  color: #0077b6;
  margin-bottom: 10px;
}

/*  TESTIMONIALS  */
.testimonials {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}

.testimonials h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 30px;
  max-width: 300px;
  font-style: italic;
  transition: background 0.3s ease;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.25);
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #ffb703;
}

/* STATS */
.stats {
  background: #023047;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

.stat h3 {
  font-size: 2.5em;
  color: #ffb703;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.1em;
}

/*  CONTACT  */
.contact {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 80px 20px;
  text-align: center;
  color: #023047;
  border-top: 3px solid #00b4d8;
  border-bottom: 3px solid #00b4d8;;
}

.contact h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
  background: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}

.social-icons img {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(94%) saturate(477%) hue-rotate(155deg) brightness(101%) contrast(95%);
}

/*  DATE SECTION  */
.current_date {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  margin: 10px 20px;
}

.current_date p {
  font-size: 12px;
  margin: 0;
}

/*  MEDIA QUERIES  */
@media (max-width: 992px) {
  .hero {
    margin: 60px 0;
    padding: 80px 15px;
  }
}

@media (max-width: 768px) {
  .advantages-cards, .testimonial-cards, .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .adv-card, .testimonial, .stat {
    max-width: 90%;
    margin: 0 auto;
  }
}


/* ___________________________________ */
/* ____________________________________________________ */
/* DARK THEME STYLES */
body.dark-theme .intro h1 {
  color: #84d1fa;
}

body.dark-theme .intro h2 {
  color: #5ec3ff;
}



/* HERO */
body.dark-theme .hero {
  background: linear-gradient(135deg, #1a2634, #0d1117);
  color: #e6edf3;
}
body.dark-theme .hero .btn {
  background: #00b4d8;
  color: #0d1117;
}
body.dark-theme .hero .btn:hover {
  background: #3ed2f8;
}

/*  CARDS  */
body.dark-theme .home_page-cards > div {
  background: #161b22;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  border: 1px solid #222;
}
body.dark-theme .home_page-cards p {
  color: #e6edf3;
}
body.dark-theme .home_page-cards > div::before {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
}

/*  ADVANTAGES  */
body.dark-theme .advantages {
  background: #0d1117;
}
body.dark-theme .advantages h2 {
  color: #5ec3ff;
}
body.dark-theme .adv-card {
  background: #161b22;
  color: #e6edf3;
  border: 1px solid #222;
}

body.dark-theme .adv-card h3 {
  color: #00b4d8;
}

/* QUOTES */
body.dark-theme .motivation-sect {
  background: #1e293b;
  color: #e2e8f0;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
}
body.dark-theme .motivation-sect h2 {
  color: #90e0ef;
}
.dark-theme .quote-text {
  color: #f8fafc;
}
.dark-theme .quote-but {
  background: #00b4d8;
}
.dark-theme .quote-but:hover {
  background: #90e0ef;
}

/*  TESTIMONIALS  */
body.dark-theme .testimonials {
  background: linear-gradient(135deg, #161b22, #0d1117);
  color: #e6edf3;
}
body.dark-theme .testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #222;
}
body.dark-theme .testimonial:hover {
  background: rgba(255, 255, 255, 0.12);
}
body.dark-theme .testimonial h4 {
  color: #ffb703;
}

/*  STATS  */
body.dark-theme .stats {
  background: #11161c;
  color: #e6edf3;
}
body.dark-theme .stat h3 {
  color: #ffb703;
}

/*  CONTACT  */
body.dark-theme .contact {
  background: #161b22;
  color: #e6edf3;
  border-top: 2px solid #00b4d8;
  border-bottom: 2px solid #00b4d8;
}
body.dark-theme .contact h2 {
  color: #00b4d8;
}
body.dark-theme .contact p {
  color: #9aa0a6;
}

/*  SOCIAL ICONS  */
body.dark-theme .social-icons a {
  background: #21262d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
body.dark-theme .social-icons a:hover {
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.6);
}
/* === Scroll Progress Bar (under header) === */
#scrollProgress {
  position: fixed;
  top: 73px;
  left: 0;
  height: 8px;
  width: 0%;
  background: linear-gradient(90deg, #003366, #004c99, #0066cc);
  box-shadow: 0 0 12px rgba(0, 51, 102, 0.6);
  transition: width 0.25s ease-out;
  z-index: 9999;
}


.dark-theme #scrollProgress {
  background: linear-gradient(90deg, #66a6ff, #007cf0, #00dfd8);
  box-shadow: 0 0 10px rgba(0, 124, 240, 0.6);
}