* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #111111;
  background-color: #f9f9f9;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
  padding: 3rem;
  gap: 4rem;
}
.intro .intro-content {
  z-index: 10;
}
.intro .intro-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #e5793c;
  line-height: 1.2;
}
.intro .intro-content p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.intro .intro-content .intro-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.intro .intro-content .intro-buttons a {
  padding: 1.2rem 2.5rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.intro .intro-content .intro-buttons a.primary {
  background-color: #e5793c;
  color: white;
}
.intro .intro-content .intro-buttons a.primary:hover {
  background-color: #d25e1c;
  transform: scale(1.1);
}
.intro .intro-content .intro-buttons a.secondary {
  background-color: #333333;
  color: white;
}
.intro .intro-content .intro-buttons a.secondary:hover {
  background-color: #4d4d4d;
  transform: scale(1.1);
}

.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #eaeaea 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #e5793c 0%, transparent 70%);
  opacity: 0.2;
  animation: floating-background 10s infinite linear;
}
.stats .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
  justify-content: center;
}
.stats .stat {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, #f9f9f9 0%, white 100%);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.stats .stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, white 0%, white 100%);
}
.stats .stat::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #e5793c 20%, transparent 80%);
  opacity: 0.1;
  transform: translateX(-50%);
  z-index: 0;
}
.stats .stat h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333333;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}
.stats .stat p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e5793c;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}
.stats .stat:hover h3 {
  color: #1a1a1a;
}
.stats .stat:hover p {
  color: #d25e1c;
}
.stats .stat .rating {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.stats .stat .rating i {
  font-size: 1.5rem;
  color: #333333;
  transition: color 0.3s ease;
}
.stats .stat .rating:hover i {
  color: #595959;
}
.stats .stat .rating p {
  margin-left: 0.5rem;
  font-size: 1.4rem;
  color: #111111;
  font-weight: bold;
}
@keyframes floating-background {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-10%) translateY(10%) rotate(30deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

.learning-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  position: relative;
}
.learning-section .learning-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.learning-section .learning-header h2 {
  font-size: 2.5rem;
  color: #e5793c;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.learning-section .learning-header p {
  font-size: 1.3rem;
  color: #111111;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}
.learning-section .learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}
.learning-section .learning-grid .language-card {
  background-color: #333333;
  color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.05));
}
.learning-section .learning-grid .language-card strong {
  color: #e5793c;
}
.learning-section .learning-grid .language-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.learning-section .learning-grid .language-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-color: #e5793c;
}
.learning-section .learning-grid .language-card:hover:before {
  opacity: 1;
}
.learning-section .learning-grid .language-card i {
  font-size: 3.5rem;
  color: #e5793c;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.learning-section .learning-grid .language-card h3 {
  font-size: 1.75rem;
  color: #eaeaea;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.learning-section .learning-grid .language-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f9f9f9;
  margin-top: 10px;
  transition: color 0.3s ease;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}
.learning-section .learning-grid .language-card:hover i {
  color: #eaeaea;
}
.learning-section .learning-grid .language-card:hover h3 {
  color: #fff;
}
.learning-section .learning-grid .language-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .learning-section {
    padding: 60px 15px;
  }
  .learning-section .learning-header h2 {
    font-size: 2rem;
  }
  .learning-section .learning-header p {
    font-size: 1rem;
  }
  .learning-section .learning-grid {
    padding: 0;
  }
  .learning-section .language-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}
.section h2 {
  font-size: 2.8rem;
  color: #333333;
  margin-bottom: 4rem;
}
.section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #e5793c;
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section .courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.section .courses .course-card {
  padding: 2rem;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.3s;
}
.section .courses .course-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  transition: all 0.3s ease;
  align-self: start;
}
.section .courses .course-card img:hover {
  transform: scale(1.05);
}
.section .courses .course-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.section .courses .course-card h3 {
  font-size: 1.75rem;
  color: #333333;
  margin-bottom: 1rem;
}
.section .courses .course-card p {
  margin-bottom: 1.5rem;
  color: #111111;
  line-height: 1.8;
}
.section .courses .course-card a {
  text-decoration: none;
  color: black;
}
.section .courses .course-card a.primary-register {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  background-color: #e5793c;
  color: white;
  text-decoration: none;
}
.section .courses .course-card a.primary-register:hover {
  background-color: #d25e1c;
}

.reviews {
  padding: 4rem 0;
}
.reviews h2 {
  margin-bottom: 4rem;
}
.reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.reviews .reviews-grid .review-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.reviews .reviews-grid .review-card:hover {
  transform: translateY(-5px);
}
.reviews .reviews-grid .review-card .comment {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333333;
}
.reviews .reviews-grid .review-card .rating {
  font-weight: bold;
  color: #e5793c;
  margin-bottom: 1rem;
}
.reviews .reviews-grid .review-card .review-author {
  color: #111111;
}

@media (max-width: 1024px) {
  .intro h1 {
    font-size: 3rem;
  }
  .intro p {
    font-size: 1.2rem;
  }
  .stats .stat h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .intro-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stats {
    padding: 3rem 1rem;
  }
  .stats .stat {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .intro h1 {
    font-size: 2.5rem;
  }
  .intro p {
    font-size: 1rem;
  }
  .intro-buttons a {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .stats .stat h3 {
    font-size: 1.5rem;
  }
  .stats .stat p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=main.css.map */