/* md and above screens */
@media (min-width: 768px) {
  /* Navigation Styles */

  .navbar {
    border-bottom: none;
  }

  /* Hero Section */

  .hero-image {
    height: 50vh;
  }

  /* Our Features Styles*/

  .feature-title {
    font-size: 1.5em;
  }

  /* Courses Section Styles */

  .courses-section h2 {
    font-size: 36px;
  }

  /* Course Features Section Styles */

  .trait-card h5 {
    font-size: 1.25rem;
  }

  .trait-card p {
    font-size: 1rem;
  }

  /* Our Team Section Styles */

  .team-section h2 {
    font-size: 2.25em;
  }

  /* About & Contact Styles */

  .about-main-title {
    font-size: 2rem;
  }

  .about-icon {
    width: 50px;
    height: 50px;
  }

  .about-icon i {
    font-size: 24px;
  }

  .course-filters button {
    width: auto;
  }
}

/* Mobile dropdown styles */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0.5rem;
    border: none;
    box-shadow: none;
    background-color: transparent;
    transform: none !important;
  }
  
  .dropdown-menu.show {
    display: block;
  }
  
  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
    background-color: var(--light-logo-accent);
    display: block;
    text-decoration: none;
    color: var(--text-headlines);
    font-weight: 500;
  }
  
  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: var(--logo-accent);
    color: var(--background);
    transform: none;
    text-decoration: none;
  }
  
  .dropdown-toggle {
    position: relative;
  }
  
  .dropdown-toggle::after {
    content: "▼";
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
    display: inline-block;
  }
  
  .dropdown-toggle.active::after {
    transform: rotate(180deg);
  }
  
  /* Offcanvas specific styles */
  .offcanvas .dropdown-menu {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .offcanvas .dropdown-item {
    margin-bottom: 0.5rem;
  }
}
