:root {
  --primary-orange: #FDA31B;
  --primary-green: #116E63;
  --primary-white: rgb(255, 255, 255);
  --light-gray: rgb(238, 238, 238);
  --dark-blue: rgb(15, 41, 88);
  --text-dark: #333;
  --text-light: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--primary-white);
}


.btn-custom {
  border-radius: 25px 25px 0 25px !important;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-custom:hover::before {
  left: 100%;
}

.btn-primary-custom {
  background: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  color: var(--primary-white);
}

.btn-primary-custom:hover {
  background: #e6a600;
  border: 2px solid #e6a600;
  color: var(--primary-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(244, 163, 0, 0.3);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn-outline-custom:hover {
  background: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  color: var(--primary-white);
  transform: translateY(-2px);
}

.top-header {
  background: var(--primary-green);
  padding: 8px 0;
  font-size: 14px;
}

.top-header .contact-info {
  color: var(--primary-white);
}

.top-header .contact-info i {
  margin-right: 8px;
  color: var(--primary-orange);
}

.main-header {
  background: var(--primary-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary-green) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-orange) !important;
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: var(--primary-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}


.hero-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-blue) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/21109.jpg') center/cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--primary-white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content .highlight {
  color: var(--primary-orange);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}


.features-grid {
  padding: 100px 0;
  background: var(--light-gray);
}

.feature-card {
  background: var(--primary-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 163, 0, 0.05), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  color: var(--primary-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-icon-1 {
  width: 80px;
  height: 80px;
  background: white;
 
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary-orange);
  transform: rotateY(360deg);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: var(--primary-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}


.about-section {
  padding: 100px 0;
  background: var(--primary-white);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  background: var(--primary-green);
  color: var(--primary-white);
  padding: 40px 0;
  margin-top: 80px;
}

.stat-item {
  text-align: center;
  padding: 5px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
  display: block;
  counter-reset: statCounter;
  animation: countUp 2s ease-in-out;
}

.stat-label {
  font-size: 1.1rem;
  margin-top: 10px;
}


.courses-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.course-card {
  background: var(--primary-white);
  border-radius: 25px 25px 0 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-orange);
}

.course-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  padding: 6px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 25px 25px 0 25px;
}



.course-category {
  position: absolute;
  top: 30px;
  right: 20px;
  background: var(--primary-orange);
  color: var(--primary-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.course-content {
  padding: 30px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.course-rating {
  color: var(--primary-orange);
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-top: 20px;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--primary-white);
}

.testimonial-card, .team-card {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 20px 10px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--primary-orange);
  font-family: serif;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-orange);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-green) 100%);
  padding: 80px 0;
  color: var(--primary-white);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/7473.jpg') center/cover;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
}


.footer {
  background: var(--dark-blue);
  color: var(--primary-white);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: var(--primary-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form .form-control {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-white);
  border-radius: 0 10px 10px 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary-white);
  box-shadow: none;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}


.cookies-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookies-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookies-popup-content {
  background: var(--primary-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.cookies-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cookies-header h5 {
  color: var(--primary-green);
  margin: 0;
  flex: 1;
}

.btn-close {
  padding: 0;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

.cookies-popup-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.cookie-option {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.cookie-option label {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.cookies-buttons .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature-card {
    margin-bottom: 30px;
  }
  
  .course-card {
    margin-bottom: 30px;
  }
  
  .testimonial-card {
    margin-bottom: 30px;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .cookies-popup-content {
    padding: 20px;
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-card,
  .course-card,
  .testimonial-card {
    padding: 25px 20px;
  }
}


html {
  scroll-behavior: smooth;
}


.loading {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}


.hover-effect {
  transition: all 0.3s ease;
}

.hover-effect:hover {
  transform: scale(1.05);
}

.course-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-blue) 100%);
  padding: 100px 0;
  color: var(--primary-white);
}

.curriculum-week {
  background: var(--primary-white);
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.curriculum-week:hover {
  border-color: var(--primary-orange);
  transform: translateX(5px);
}

.week-number {
  background: var(--primary-orange);
  color: var(--primary-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
}


.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 0 10px 10px 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(244, 163, 0, 0.25);
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
}

.success-message {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 5px;
}