/* EduGlow Courses Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background: #ffffff;
    color: #333;
  }
  
  /* HEADER FIX */
  .header-area {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* HERO SECTION */
  .courses-hero {
    padding: 80px 5%;
    background: linear-gradient(135deg, #ffe1ff, #ffd6b5);
    text-align: center;
  }
  
  .courses-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
  }
  
  .courses-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #555;
  }
  
  /* COURSES GRID */
  .courses-section {
    padding: 60px 5%;
  }
  
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .course-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.2s ease;
  }
  
  .course-box:hover {
    transform: translateY(-5px);
  }
  
  .course-box img {
    width: 70px;
    margin-bottom: 15px;
  }
  
  .course-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .course-box p {
    color: #666;
    font-size: 15px;
  }
  
  /* BUTTON */
  .btn-learn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: linear-gradient(45deg, #ff9ad6, #ff7bfa);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  /* -----------------------------------
   5️⃣ WHY CHOOSE EDUGLOW SECTION
--------------------------------------*/
.why-eduglow {
    padding: 70px 0;
    background: #f9f7ff;
}

.why-eduglow h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-eduglow h2 span {
    color: #7b3cff;
}

.why-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
}

.why-box h4 {
    font-size: 22px;
    color: #7b3cff;
    margin-bottom: 12px;
}

.why-box p {
    font-size: 15px;
    color: #555;
}


/* -----------------------------------
   8️⃣ STUDENT SUCCESS STORIES SECTION
--------------------------------------*/
.success-stories {
    padding: 80px 0;
    background: #ffffff;
}

.success-stories h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.success-stories h2 span {
    color: #ff6adf;
}

.story-card {
    background: #fff0fb;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
    transition: 0.45s ease;
    min-height: 180px;
}

.story-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
}

.story-card p {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}

.story-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #7b3cff;
}

/* Responsive */
@media (max-width: 992px) {
    .why-box, .story-card {
        margin-bottom: 25px;
    }
}

  
  /* FOOTER */
  .footer {
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
    background: #fafafa;
    font-size: 14px;
    color: #666;
  }
  .course-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .course-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .courses-list .row > div {
    margin-bottom: 25px;
  }
  