/* Courses Common Styles */
:root {
  --primary-bg: #0d0d0d;
  --gold-color: #4caf50;
  --text-white: #ffffff;
  --text-gray: #a5a5a5;
}

/* body {
  font-family: 'Roboto', sans-serif;
} */

/* Course Hero Section */
.course-hero {
  background-color: var(--primary-bg);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.hero-title {
  color: var(--gold-color);
  font-weight: 800;
  font-size: 3.5rem;
}

.hero-subtitle {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 1.5rem;
}

.hero-text {
  color: #acc1d8;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

.course-duration span {
  display: block;
}

/* Buttons */
#btn-enroll {
  background-color: var(--gold-color);
  color: #000;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px; /* Squared corners as per design */
  border: none;
  transition: all 0.3s ease;
}

#btn-enroll:hover {
  background-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
}

#btn-counseling {
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  border: 1px solid var(--gold-color);
  transition: all 0.3s ease;
}

#btn-counseling:hover {
  background-color: var(--gold-color);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-image-container {
    margin-top: 30px;
  }
}

/* Curriculum Section */
.curriculum-section {
  background-color: #f9fafe;
}

.section-title {
  color: #05113b;
  font-size: 2.5rem;
}

.accordion-item {
  border: none;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #fff;
}

.accordion-button {
  background-color: #fff;
  color: #05113b;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 25px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: #e8f0fe;
  color: #0d6efd;
}

.accordion-button:not(.collapsed) .module-badge {
  background-color: #0d6efd;
  color: #fff;
}

.accordion-body {
  padding: 25px 30px;
  background-color: #fff;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.curriculum-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.curriculum-list li {
  margin-bottom: 12px;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.curriculum-list li i {
  color: #4caf50;
  margin-top: 4px;
}

.accordion-body li::before {
    content: " " !important;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Why Choose Section */
.why-choose-section {
  background-color: #131313;
}

.text-gold {
  color: #4caf50 !important;
}

.why-list li {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-list li i {
  color: #4caf50;
  font-size: 1.2rem;
}

.feature-card {
  background-color: #182637;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.3);
}

.feature-icon {
  font-size: 32px;
  color: #4caf50;
  margin-bottom: 15px;
}

.feature-number {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.feature-text {
  color: #a5a5a5;
  font-size: 0.9rem;
}
