@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.7rem;
  }
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #4661E6;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #F49F0A;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #c37f08;
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: 2px solid #F49F0A;
}

.btn-secondary:hover {
  background-color: #F49F0A;
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: #333;
  border: 2px solid #ddd;
}

.btn-outline:hover {
  border-color: #4661E6;
  color: #4661E6;
}

.header {
  background-color: #1A1A1A;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.header .logo a {
  color: white;
}

.header .logo a:hover {
  color: #F49F0A;
}

.header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header .nav ul li a {
  color: white;
  font-size: 0.9rem;
}

.header .nav ul li a:hover {
  color: #F49F0A;
}

@media (max-width: 768px) {
  .header .nav ul {
    gap: 10px;
  }
  .header .nav ul li a {
    font-size: 0.8rem;
  }
}

.hero {
  background: linear-gradient(135deg, #0288D1, #651FFF, #FF5722);
  color: white;
  padding: 80px 0 40px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

.hero p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
  }
}

.hero .btn {
  margin-bottom: 40px;
}

.hero .hero-image {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.philosophy {
  padding: 80px 0;
  background-color: #f4f7f9;
}

.philosophy p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.philosophy .philosophy-box {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.philosophy .philosophy-box h3 {
  color: #4661E6;
  margin-bottom: 20px;
}

.philosophy .philosophy-box ul {
  margin-bottom: 30px;
}

.philosophy .philosophy-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.philosophy .philosophy-box ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #4661E6;
  border-radius: 50%;
}

.philosophy .philosophy-box ul li strong {
  color: #4661E6;
}

.philosophy .philosophy-box .philosophy-image {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.courses {
  padding: 80px 0;
}

.courses .course-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .courses .course-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .courses .course-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.courses .course-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.courses .course-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.courses .course-card .course-level {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #4661E6;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
}

.courses .course-card h3 {
  margin-bottom: 20px;
  padding-right: 50px;
  font-size: 1.3rem;
}

.courses .course-card ul {
  margin-bottom: 30px;
}

.courses .course-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.courses .course-card ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #4661E6;
}

.courses .course-card .course-price {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #4661E6;
}

.courses .course-card .btn {
  width: 100%;
}

.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #0288D1, #651FFF, #FF5722);
  color: white;
}

.stats h2 {
  color: white;
}

.stats .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .stats .stats-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats .stats-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.stats .stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.stats .stat-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.stats .stat-card.purple {
  border-top: 4px solid #8A4FFF;
}

.stats .stat-card.green {
  border-top: 4px solid #4CAF50;
}

.stats .stat-card.orange {
  border-top: 4px solid #FF9800;
}

.stats .stat-card.blue {
  border-top: 4px solid #2196F3;
}

.stats .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .stat-card .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.stats .stats-image {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonials {
  padding: 80px 0;
  background-color: #f4f7f9;
}

.testimonials .testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .testimonials .testimonials-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials .testimonials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.testimonials .testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonials .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonial-card .stars {
  color: #F49F0A;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonials .testimonial-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.testimonials .testimonial-card p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #666;
}

.contact {
  padding: 80px 0;
}

.contact p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.contact .contact-details {
  text-align: center;
  margin-bottom: 40px;
}

.contact .contact-details p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact .contact-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .contact .contact-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact .contact-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.contact .contact-container form input,
.contact .contact-container form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact .contact-container form input:focus,
.contact .contact-container form textarea:focus {
  outline: none;
  border-color: #4661E6;
  -webkit-box-shadow: 0 0 0 2px rgba(70, 97, 230, 0.2);
          box-shadow: 0 0 0 2px rgba(70, 97, 230, 0.2);
}

.contact .contact-container form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact .contact-container form .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.contact .contact-container .contact-image {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .contact .contact-container .contact-image {
    display: none;
  }
}

.footer {
  background-color: #1A1A1A;
  color: white;
  padding: 40px 0;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer .logo a {
  color: white;
}

.footer .logo a:hover {
  color: #F49F0A;
}

.footer .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 576px) {
  .footer .footer-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.footer .footer-nav ul li a {
  color: white;
  font-size: 0.9rem;
}

.footer .footer-nav ul li a:hover {
  color: #F49F0A;
}

.footer .copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 10px;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
          animation: slideUp 0.5s forwards;
}

.cookie-popup .cookie-content {
  padding: 25px;
}

.cookie-popup .cookie-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-popup .cookie-header .cookie-icon {
  width: 40px;
  height: 40px;
}

.cookie-popup .cookie-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #4661E6;
}

.cookie-popup p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-popup .cookie-buttons .btn {
    width: 100%;
  }
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thank-you-popup.show {
  opacity: 1;
  visibility: visible;
}

.thank-you-popup .thank-you-content {
  background: linear-gradient(135deg, #0288D1, #651FFF, #FF5722);
  color: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thank-you-popup .thank-you-content h2 {
  color: white;
  margin-bottom: 20px;
}

.thank-you-popup .thank-you-content p {
  margin-bottom: 30px;
}

.thank-you-popup.show .thank-you-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.thank-you-section {
  background: linear-gradient(135deg, #0288D1, #651FFF, #FF5722);
  color: white;
  padding: 100px 0;
  min-height: calc(100vh - 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thank-you-section .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .thank-you-section .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.thank-you-section .thank-you-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .thank-you-section .thank-you-wrapper h1 {
    font-size: 2rem;
  }
}

.thank-you-section .thank-you-wrapper p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .thank-you-section .thank-you-wrapper p {
    font-size: 1rem;
  }
}

.thank-you-section .thank-you-image {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .thank-you-section .thank-you-image {
    display: none;
  }
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .container {
    padding: 0 15px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

input.error,
textarea.error {
  border-color: #ff3860 !important;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 56, 96, 0.2) !important;
          box-shadow: 0 0 0 2px rgba(255, 56, 96, 0.2) !important;
}

.animated {
  -webkit-animation: fadeIn 0.6s ease forwards;
          animation: fadeIn 0.6s ease forwards;
}

.course-card {
  opacity: 0;
}

.course-card.animated {
  opacity: 1;
}

.course-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.course-card:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.course-card:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.course-card:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.course-card:nth-child(6) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.stat-card {
  opacity: 0;
}

.stat-card.animated {
  opacity: 1;
}

.stat-card:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.stat-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.testimonial-card {
  opacity: 0;
}

.testimonial-card.animated {
  opacity: 1;
}

.testimonial-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.policy {
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy h1 {
  margin-bottom: 32px;
  font-size: 36px;
}
/*# sourceMappingURL=style.css.map */