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

:root {
  --font-size: 14px;
  --primary-green: #095e37;
  --primary-green-light: rgba(9, 94, 55, 0.9);
  --secondary-color: #e55b0b;
  --secondary-color-light: rgba(229, 91, 11, 0.9);
  --primary-green-hover: #074025;
  --secondary-hover: #c74c09;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --white: #ffffff;
}

html {
  font-size: var(--font-size);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .header-content {
    justify-content: center;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em;
  position: relative;
  z-index: 10;
  padding: 0.75rem 1.25rem;
  background-color: #e5e7eb1c;
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.1rem;
}

.btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  background-color: var(--gray-100);
  color: var(--gray-900);
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: var(--gray-200);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 91, 11, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s;
}

.btn-primary:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(135deg, rgb(9 94 55 / 26%) 0%, rgb(9 94 55 / 0%) 100%), url(../new/banner.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 9rem 0 6rem;
  position: relative;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .hero-grid {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
  }
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.hero-content .highlight {
  color: var(--white);
  position: relative;
  display: inline-block;
}

.hero-content .highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(229, 91, 11, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin-top: 0.625rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  position: relative;
}

.feature-dot::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid rgba(229, 91, 11, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hero shapes for futuristic design */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(229, 91, 11, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 91, 11, 0.2);
  animation: float 12s infinite;
}

.shape-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}

.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  animation-delay: -3s;
}

.shape-3 {
  top: 40%;
  right: 30%;
  width: 150px;
  height: 150px;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-15px, 25px) rotate(5deg); }
  50% { transform: translate(20px, 10px) rotate(-5deg); }
  75% { transform: translate(-25px, -15px) rotate(8deg); }
}

.hero .feature-list li span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Form Styles */
.form-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-color));
}

.form-container:hover {
  transform: translateY(-5px);
}

.highlight-form {
  animation: formPulse 2s ease;
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -15px rgba(229, 91, 11, 0.4);
}

@keyframes formPulse {
  0% { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 30px 60px -15px rgba(229, 91, 11, 0.5); }
  100% { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2); }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(9, 94, 55, 0.2);
  background-color: var(--gray-50);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(9, 94, 55, 0.1);
  transform: translateY(-2px);
}

/* Process Section */
.process {
  padding: 8rem 0 6rem;
  background-color: var(--white);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(9, 94, 55, 0.03);
  z-index: -1;
}

.process::after {
  content: '';
  position: absolute;
  top: 50px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(229, 91, 11, 0.03);
  z-index: -1;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-color));
  border-radius: 3px;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.course-levels .section-title h2 {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(229, 91, 11, 0.3);
  border-radius: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .process-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.process-card {
  background-size: cover;
  background-position: center;
  padding: 0;
  border-radius: 1.25rem;
  margin-bottom: 2rem;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 94, 55, 0.9), rgba(9, 94, 55, 0.1));
  z-index: 1;
}

.process-step:nth-child(1) .process-card {
  background-image: url('../assets/step1.webp');
}

.process-step:nth-child(2) .process-card {
  background-image: url('../assets/step2.webp');
}

.process-step:nth-child(3) .process-card {
  background-image: url('../assets/step3.webp');
}

.process-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.process-number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(229, 91, 11, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.process-card-content {
  padding: 1.5rem;
  position: relative;
  z-index: 5;
  text-align: left;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.process-card p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
}

.process-step > p {
  padding: 0 1rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* Course Levels */
.course-levels {
  padding: 6rem 0;
  background-image: linear-gradient(135deg, rgba(9, 94, 55, 0.9) 0%, rgba(9, 94, 55, 0.8) 100%), 
  url('../assets/Image1-optimized.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.course-levels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(229, 91, 11, 0.4), transparent 70%);
  z-index: 1;
}

.course-levels-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 5;
}

/* Course Image Styles */
.course-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: var(--white);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.course-image.active {
  opacity: 1;
  z-index: 10;
}

.course-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Tab Navigation Styles */
.course-content {
  display: flex;
  flex-direction: column;
}

.tabs-container {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.tab-navigation {
  display: flex;
  background: linear-gradient(to right, rgba(9, 94, 55, 0.2), rgba(229, 91, 11, 0.2));
  position: relative;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: none;
}

.tab-navigation::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.tab-btn {
  flex: 1;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 1.25rem 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  color: var(--gray-700);
  border-radius: 0.75rem;
  border-bottom: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.tab-btn:last-child {
  margin-right: 0;
}

.tab-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-green), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.tab-btn:hover {
  color: var(--gray-900);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
  color: var(--white);
  font-weight: 600;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tab-btn.active::before {
  opacity: 1;
}

.tab-icon {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tab-btn:hover .tab-icon {
  transform: scale(1.1);
}

.tab-btn.active .tab-icon {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-label {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.tab-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.tab-subtitle {
  font-size: 0.8rem;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.tab-btn.active .tab-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Tab Content Styles */
.tab-content-wrapper {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.03);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

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

.tab-content.active {
  display: block;
}

.tab-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.tab-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-color));
  border-radius: 3px;
}

.tab-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  background: linear-gradient(45deg, var(--primary-green), var(--secondary-color));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(229, 91, 11, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-150%) rotate(45deg); }
  100% { transform: translateX(150%) rotate(45deg); }
}

/* Course Quick Info Styles */
.course-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(9, 94, 55, 0.05) 0%, rgba(229, 91, 11, 0.05) 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(9, 94, 55, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 1rem;
}

.info-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-color));
  border-radius: 50%;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-900);
}

/* Module Container Styles */
.module-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.module {
  background: var(--white);
  border: 1px solid rgba(9, 94, 55, 0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-green), var(--secondary-color));
  border-radius: 5px 0 0 5px;
}

.module:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  border-color: rgba(9, 94, 55, 0.2);
}

.module-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(9, 94, 55, 0.2);
  position: relative;
  padding-left: 1rem;
}

.module-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(45deg, var(--primary-green), var(--secondary-color));
  transform: rotate(45deg);
}

.module-details {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.module-details li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: all 0.3s ease;
  line-height: 1.5;
}

.module-details li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-green), var(--secondary-color));
  opacity: 0.8;
  transition: all 0.3s ease;
}

.module-details li:hover {
  color: var(--gray-900);
  transform: translateX(3px);
}

.module-details li:hover:before {
  transform: scale(1.2);
  opacity: 1;
}

.module-details li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .module-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .tab-navigation {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .tab-btn {
    flex: 1;
    width: 100%;
    padding: 1rem;
    justify-content: flex-start;
  }
  
  .tab-btn.active {
    transform: translateY(-3px) scale(1.02);
  }
  
  .tab-content-wrapper {
    padding: 1.5rem;
  }
  
  .course-quick-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .module-container {
    gap: 1.5rem;
  }
  
  .module {
    padding: 1.25rem;
  }
  
  .tab-header h3 {
    font-size: 1.5rem;
  }
  
  /* Additional mobile fixes */
  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  
  .benefit-icon {
    margin-bottom: 1rem;
  }
  
  .benefit-details h3 {
    margin-bottom: 0.5rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-card {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 8rem 0 4rem;
  }

  .header {
    padding: 0.75rem 0;
  }

  .logo {
    padding: 0.4rem 0.75rem;
    max-width: 150px;
  }

  .hero-grid {
    padding-top: 3rem;
  }

  .course-levels {
    padding: 4rem 0;
  }
  
  .tab-content-wrapper {
    padding: 1rem;
  }
  
  .module {
    padding: 1rem;
  }
  
  .module-name {
    font-size: 1rem;
  }
  
  .module-details li {
    font-size: 0.85rem;
  }
}

/* Modules Section */
.modules {
  padding: 4rem 0;
  background-color: var(--white);
}

.modules h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.module-card {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.module-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.module-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .module-topics {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .module-topics {
      grid-template-columns: repeat(3, 1fr);
  }
}

.module-topic {
  display: flex;
  align-items: flex-start;
}

.module-topic .feature-dot {
  margin-top: 0.5rem;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(9, 94, 55, 0.9) 0%, rgba(9, 94, 55, 0.8) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center right, rgba(229, 91, 11, 0.3), transparent 70%);
  z-index: 1;
}

.benefits .section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
}

.benefits .section-title h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits .highlight::after {
  background-color: rgba(229, 91, 11, 0.3);
  height: 8px;
  bottom: 3px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 1.25rem;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon .feature-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--secondary-color);
  margin: 0;
}

.benefit-icon .feature-dot::before {
  border-color: rgba(229, 91, 11, 0.4);
  animation: pulse 3s infinite;
}

.benefit-details {
  display: flex;
  flex-direction: column;
}

.benefit-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
  position: relative;
}

.benefit-details p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.benefits-image-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.benefits-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  z-index: 1;
}

.benefits-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.benefits-image:hover img {
  transform: scale(1.05);
}

/* Call to Action */
.cta {
  padding: 6rem 0;
  background-color: var(--gray-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at bottom right, rgba(229, 91, 11, 0.2), transparent 70%);
  z-index: 1;
  border-radius: 50% 0 0 0;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.cta .highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.cta .highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(229, 91, 11, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.cta-info {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--secondary-color), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .cta h2 {
    font-size: 3rem;
  }
  .hero-content {
    
  }
  .cta-subtitle {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer {
  background-color: var(--gray-800);
  color: var(--white);
}

.footer-content {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
      grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
      grid-column: span 1;
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  background-color: var(--gray-700);
  border-radius: 0.25rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
      flex-direction: row;
      justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Responsive Typography */
@media (min-width: 1024px) {
  .hero-content h1 {
      font-size: 3rem;
  }
  
  .section-title h2 {
      font-size: 2.5rem;
  }
}

/* Mobile Responsiveness Fixes */
@media (max-width: 767px) {
  .hero {
    padding: 9rem 0 4rem;
  }
  
  .header {
    padding: 1rem 0;
  }
  
  .logo {
    padding: 0.5rem 1rem;
    max-width: 180px;
  }
  
  .logo img {
    width: 100% !important;
    height: auto !important;
  }
  
  .hero-grid {
    padding-top: 2rem;
    gap: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-content .subtitle {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .feature-list {
    max-width: 90%;
    margin: 0 auto 2rem;
  }
  
  .feature-list li {
    justify-content: center;
  }
  
  .form-container {
    margin-top: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title h2 br {
    display: none;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .cta h2 br {
    display: none;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .process, .course-levels, .benefits, .cta {
    padding: 4rem 0;
  }
}