/* Courses Page Specific Styles */

/* Shared section header styles to match other pages */
.section-header { margin-bottom: 30px; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(230, 57, 70, 0.1));
  color: #1e3a5f !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.1);
}
.section-divider { width: 80px; height: 3px; background: linear-gradient(to right, #e63946, #1e3a5f); margin-top: 15px; border-radius: 3px; }
.section-header h2 { color: #1e3a5f !important; font-weight: 700; font-size: 2.5rem; }
.section-header .text-primary { color: #1e3a5f !important; }
.section-header p { color: #6c757d; }

/* Why Choose Our Courses Section */
.courses-intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.courses-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.courses-intro-section .container {
  position: relative;
  z-index: 2;
}

/* Intro Content */
.courses-intro-section .intro-content {
  padding-right: 20px;
}

/* Intro Highlights */
.courses-intro-section .intro-highlights {
  margin: 40px 0;
}

.courses-intro-section .highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 58, 95, 0.1);
}

.courses-intro-section .highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 58, 95, 0.2);
}

.courses-intro-section .highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(30, 58, 95, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a5f;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.courses-intro-section .highlight-item:hover .highlight-icon {
  background: linear-gradient(135deg, #1e3a5f, #2a4f80);
  color: white;
  transform: scale(1.1);
}

.courses-intro-section .highlight-content h5 {
  color: #1e3a5f;
  font-weight: 600;
  margin-bottom: 10px;
}

.courses-intro-section .highlight-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* Right Side Stats */
.courses-intro-section .intro-stats-container {
  position: relative;
  padding: 20px;
}

.courses-intro-section .intro-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.courses-intro-section .intro-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.courses-intro-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(42, 79, 128, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.courses-intro-section .intro-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.courses-intro-section .overlay-content {
  text-align: center;
  color: white;
}

.courses-intro-section .overlay-content h5 {
  color: white;
  margin: 0;
}

/* Intro Stats */
.courses-intro-section .intro-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.courses-intro-section .stat-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  flex: 1;
}

.courses-intro-section .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.courses-intro-section .stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a5f, #2a4f80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.courses-intro-section .stat-data h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0;
  line-height: 1;
}

.courses-intro-section .stat-data span {
  font-size: 0.8rem;
  color: #6c757d;
}

/* Course Categories Cards */
.course-category-card {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.course-category-card:hover .course-category-icon {
  transform: scale(1.1) rotate(5deg);
}

.course-category-content {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-category-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 15px;
}

.course-category-content p {
  color: #6c757d;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.course-category-btn {
  display: inline-flex;
  align-items: center;
  color: #1e3a5f;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  margin-top: auto;
}

.course-category-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e63946;
  transition: all 0.3s ease;
}

.course-category-btn i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.course-category-btn:hover {
  color: #e63946;
}

.course-category-btn:hover::after {
  width: 100%;
}

.course-category-btn:hover i {
  transform: translateX(5px);
}

/* CTA Section */
.courses-cta-section {
  background: linear-gradient(135deg, #1e3a5f, #2a4f80);
  position: relative;
  overflow: hidden;
}

.courses-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm0-20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm20 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.courses-cta-section .container {
  position: relative;
  z-index: 2;
}

.courses-cta-content {
  text-align: center;
  color: white;
}

.courses-cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.courses-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .courses-intro-section .intro-image-wrapper img {
    height: 300px;
  }
  
  .courses-intro-section .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .courses-intro-section .intro-stats-container {
    padding: 10px;
  }
  
  .courses-intro-section .intro-image-wrapper img {
    height: 250px;
  }
  
  .courses-intro-section .intro-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .courses-intro-section .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .courses-intro-section .highlight-icon {
    margin: 0 auto 15px;
  }
  
  .section-header h2 {
    font-size: 2rem !important;
  }
  
  .courses-cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .courses-intro-section .intro-image-wrapper img {
    height: 200px;
  }
  
  .courses-intro-section .stat-item {
    padding: 15px;
  }
  
  .courses-intro-section .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .courses-intro-section .stat-data h4 {
    font-size: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem !important;
  }
  
  .courses-cta-content h2 {
    font-size: 1.8rem;
  }
}

/* Course Categories Section Styles */
.course-categories-section {
  background: #ffffff;
  position: relative;
}

/* Category Card Styles */
.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 58, 95, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(30, 58, 95, 0.1);
}

.category-card-inner {
  padding: 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Category Icon */
.category-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.icon-bg-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(230, 57, 70, 0.1));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(10deg);
}

.category-card:hover .icon-bg-circle {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.8;
}

/* Category Content */
.category-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-title {
  color: #1e3a5f;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.category-description {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 14px;
  flex: 1;
}

/* Category Features */
.category-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6c757d;
}

.feature-item i {
  margin-right: 8px;
  font-size: 12px;
}

/* Category Button */
.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2a4f80);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: auto;
  font-size: 14px;
}

.category-btn:hover {
  background: linear-gradient(135deg, #e63946, #dc3545);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  color: white;
}

.category-btn i {
  transition: all 0.3s ease;
}

.category-btn:hover i {
  transform: translateX(5px);
}

/* Empty State Styles */
.empty-state-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 58, 95, 0.05);
}

.empty-state-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(230, 57, 70, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #1e3a5f;
  font-size: 40px;
}

.empty-state-title {
  color: #1e3a5f;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.empty-state-description {
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Additional Responsive Styles for Course Categories */
@media (max-width: 1199.98px) {
  .category-card-inner {
    padding: 25px;
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
  }
  
  .icon-bg-circle {
    width: 85px;
    height: 85px;
  }
  
  .category-title {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .category-card {
    margin-bottom: 30px;
  }
  
  .category-card-inner {
    padding: 20px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .icon-bg-circle {
    width: 75px;
    height: 75px;
  }
  
  .category-title {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .empty-state-card {
    padding: 40px 30px;
  }
  
  .empty-state-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .empty-state-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .category-card-inner {
    padding: 15px;
  }
  
  .category-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .feature-item {
    font-size: 12px;
  }
  
  .empty-state-card {
    padding: 30px 20px;
  }
}

/* Courses Hero Section Styles */
.courses-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1e3a5f, #2a4f80);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 150px;
  overflow: hidden;
}

/* Animated Background Elements */
.animated-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.element-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  animation: float 15s infinite ease-in-out;
}

.element-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -50px;
  animation: float 18s infinite ease-in-out reverse;
}

.element-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 15%;
  animation: float 12s infinite ease-in-out;
}

.element-4 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 20%;
  animation: float 10s infinite ease-in-out reverse;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.courses-hero-section .container {
  position: relative;
  z-index: 2;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1e3a5f, #2a4f80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.badge-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Hero Title */
.hero-title {
  color: white;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(to right, #ffffff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
  background: linear-gradient(to right, #f8f9fa, #e63946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Courses Stats Grid */
.courses-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.courses-hero-section .stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.courses-hero-section .stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.courses-hero-section .stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e63946, #dc3545) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 20px;
}

.courses-hero-section .stat-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.courses-hero-section .stat-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

/* Curved Separator */
.curve-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.curve-separator svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

/* Button Styles */
.shadow-hover {
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
  transform: translateY(-2px);
}

/* Courses CTA Section Styles */
.courses-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.courses-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.courses-cta-section .container {
  position: relative;
  z-index: 2;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2a4f80 50%, #1e3a5f 100%);
  border-radius: 25px;
  padding: 50px 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.3);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float-cta 20s linear infinite;
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.cta-buttons {
  position: relative;
  z-index: 3;
}

@keyframes float-cta {
  0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

/* Additional Responsive Styles for Hero and CTA */
@media (max-width: 991.98px) {
  .courses-hero-section {
    min-height: 80vh;
    padding: 80px 0 120px;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .courses-stats-grid {
    max-width: 300px;
  }
  
  .courses-hero-section .stat-card {
    padding: 20px 15px;
  }
  
  .courses-hero-section .stat-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .courses-hero-section {
    min-height: 70vh;
    padding: 60px 0 100px;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .courses-stats-grid {
    grid-template-columns: 1fr;
    max-width: 250px;
  }
  
  .hero-badge {
    padding: 6px 12px;
  }
  
  .badge-icon {
    width: 28px;
    height: 28px;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.7rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .courses-hero-section .stat-card {
    padding: 15px 10px;
  }
  
  .courses-hero-section .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .courses-hero-section .stat-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 30px 15px;
  }
}
