* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #1a5f3b;
  --light-green: #2d8659;
  --accent-yellow: #ffd700;
  --dark-yellow: #ffb800;
  --bg-light: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-green) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-badge .badge {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-danger {
  background-color: #dc3545;
  border: none;
}

.btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-stats h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.trust-logo {
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.program-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.program-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.program-features {
  list-style: none;
  padding: 0;
}

.program-features li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.program-features i {
  margin-right: 10px;
}

.program-img {
  height: 100%;
  object-fit: cover;
}

.badge.bg-success {
  background-color: var(--primary-green) !important;
  font-weight: 600;
}

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

.cert-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cert-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.cert-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.text-success {
  color: var(--primary-green) !important;
}

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-success:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.achievements-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.achievement-banner {
  background: linear-gradient(135deg, var(--dark-yellow) 0%, var(--accent-yellow) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.achievement-card img {
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.mentors-section {
  padding: 80px 0;
  background: white;
}

.mentor-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mentor-card img {
  object-fit: cover;
  border: 3px solid var(--primary-green);
}

.mentor-card h5 {
  font-weight: 700;
  margin-top: 1rem;
}

.social-links a {
  color: var(--primary-green);
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--light-green);
}

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

.gallery-section img {
  transition: all 0.3s ease;
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.gallery-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.cta-form input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.btn-warning {
  background-color: var(--accent-yellow);
  border: none;
  color: var(--text-dark);
  font-weight: 700;
}

.btn-warning:hover {
  background-color: var(--dark-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.footer {
  background-color: #1a1a1a;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-yellow) !important;
}

.social-icons a {
  transition: transform 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: var(--accent-yellow) !important;
}

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

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

  .section-title {
    font-size: 2rem;
  }

  .program-img {
    height: 200px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.smooth-scroll {
  scroll-behavior: smooth;
}
