.elementor-5070 .elementor-element.elementor-element-710fa1e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-dcf8aad *//* Container */
.course-schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Title */
.course-schedule-title {
  color: #000000;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Filter Section */
.filter-section {
  margin-bottom: 40px;
  text-align: center;
}

.filter-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Filter Buttons */
.filter-btn {
  padding: 10px 24px;
  border: 2px solid #ff6b00;
  background: #ffffff;
  color: #000000;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: #ffffff;
}

/* Grid Layout for Courses */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
  gap: 25px; /* Defines the space between cards */
}

/* Course Card */
.course-card {
  background: #ffffff;
  border: 2px solid #ff6b00;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; /* Helps align content vertically */
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

/* Course Header */
.course-header {
  padding: 25px;
  cursor: pointer;
  background: #ffffff;
  position: relative;
  flex-grow: 1; /* Allows header to grow and align items */
}

/* Toggle Arrow */
.course-header::after {
  content: "▼";
  position: absolute;
  right: 25px;
  top: 32px;
  font-size: 20px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.course-card.active .course-header::after {
  transform: rotate(180deg);
}

/* Date Badge */
.course-date {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  vertical-align: middle;
}

/* Course Title */
.course-title {
  color: #000000;
  font-size: 22px;
  font-weight: 600;
  margin: 12px 0;
  line-height: 1.4;
}

/* Time */
.course-time {
  color: #666666;
  font-size: 15px;
  margin: 0;
}

/* Description (Hidden by default) */
.course-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #ffffff;
  border-top: 0;
}

.course-description p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

/* Active State - Shows Description */
.course-card.active .course-description {
  max-height: 500px;
  padding: 25px;
  border-top: 2px solid #f0f0f0;
}

/* Responsive Design */
/* For Tablets */
@media (max-width: 992px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns */
  }
}

/* For Mobile Phones */
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr; /* Switch to 1 column */
  }
  
  .course-schedule-title {
    font-size: 32px;
  }
  
  .course-header {
    padding: 20px;
  }
  
  .course-title {
    font-size: 18px;
  }
}/* End custom CSS */