:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --white: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
  }
  
  /* Navigation */
  nav {
    display: flex;
    justify-content: center;
    background: var(--white);
    padding-top: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  }
  
  nav a {
    color: var(--dark);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
  }
  
  nav a:hover,
  nav a:focus {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
  }
  
  nav i {
    margin-right: 0.5rem;
    color: var(--primary);
  }
  
  /* Header */
  header {
    background: linear-gradient(#25c5eb, var(--primary-dark));
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
  }
  
  .header-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-accent {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  }
  
  .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  }
  
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  /* Sections */
  section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--dark);
  }
  
  h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
  }
  
  .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray);
  }
  
  /* Features */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.8rem;
  }
  
  .feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  /* Courses */
  .courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .course-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .course-card:hover {
    transform: translateY(-10px);
  }
  
  .course-img {
    height: 180px;
    background-size: cover;
    background-position: center;
  }
  
  .course-content {
    padding: 1.5rem;
  }
  
  .course-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  .course-meta span {
    display: flex;
    align-items: center;
  }
  
  .course-meta i {
    margin-right: 0.5rem;
    color: var(--accent);
  }
  
  /* Stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  .stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  /* Testimonials */
  .testimonials {
    background: var(--light);
  }
  
  .testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .testimonial::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(37, 99, 235, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
  }
  
  .author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
  
  .author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  /* Team */
  .team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .team-member {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--light-gray);
  }
  
  .team-social {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
  }
  
  .team-social a:hover {
    background: var(--primary);
    color: white;
  }
  
  /* Contact Form */
  form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
  }
  
  input,
  textarea,
  select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .form-submit {
    text-align: center;
  }
  
  /* Footer */
  footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 1.5rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  
  .footer-column p,
  .footer-column a {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: white;
  }
  
  .footer-social {
    display: flex;
    margin-top: 1.5rem;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }
  
  .copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
  }
  
  /* Custom Dash List Style */
  .dash-list {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
  }
  
  .dash-list li {
    position: relative;
    padding-left: 1.2em; /* Add space for the dash */
    margin-bottom: 0.5em; /* Space between items */
  }
  
  .dash-list li::before {
    content: "-"; /* Add a dash before each item */
    position: absolute;
    left: 0;
    color: #000; /* Match the text color */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    nav {
      flex-wrap: wrap;
      padding: 1rem;
      justify-content: center; /* Center everything */
  }

  .nav-links {
      margin-top: 0px !important;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; /* Center the links */
      gap: 0.5rem; /* Space between items */
      width: 100%; /* Take full width */
  }

  nav a {
      padding: 5px 5px;
      margin: 0; /* Remove individual margins */
      font-size: 0.7rem;
      /* flex: 0 0 calc(50% - 0.5rem); 2 items per row accounting for gap */
      box-sizing: border-box; /* Include padding in width calculation */
      text-align: center; /* Center text within each item */
  }
  
    header {
      padding: 3rem 0;
    }

  
    header h1 {
      font-size: 2.2rem;
    }
  
    .header-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  
    .btn {
      width: 100%;
    }
  
    section {
      padding: 3rem 1rem;
    }
  }
  .logo img {
    height: 70px; /* Adjust the size of the logo */
    width: auto;
  }

  .nav-links{
    margin-top: 20px;
  }
  .team img {
    width: 150px; /* Set a fixed width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Optional: Make the images circular */
}
