/* ========== ACADEMICS PAGE ONLY ========== */

.academics {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Page title */
  .academics h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #222;
  }
  
  /* Intro text */
  .academics p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
  }
  
  /* Example: course grid */
  .course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .course-card {
    background-color: #f7f7f7;
    padding: 30px;
    border-left: 6px solid #7a003c;
  }
  
  .course-card h3 {
    margin-bottom: 12px;
  }

   /* ========== TOP_A BANNER SECTION ========== */
   .top_A {
    position: relative;
    height: 50vh;
    background-image: url("top_A_bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  .top_A-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
  }

  .top_A-card {
    position: relative;
    background-color: #ffffff;
    padding: 50px 70px;
    text-align: center;
    max-width: 900px;
  }

  .top_A-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 14px 0;
  }

  .top_A-subtext {
    font-size: 1.3rem;
    color: #444;
  }
  /* ========== ACADEMIC FEATURE CARDS SECTION ========== */
.academic-features {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  /* Individual card */
  .feature-card {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Alternate layout */
  .feature-card.reverse {
    flex-direction: row-reverse;
  }
  
  /* Image side */
  .feature-card img {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Text side */
  .feature-text {
    width: 50%;
    padding: 50px;
  }
  
  .feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
  }

  .btn-learn-more{
    display: inline-block;
    padding: 14px 22px;
    border-radius: 10px;
    background-color: #7a003c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
  }

  .btn-learn-more:hover {
    filter: brightness(0.9);
  }
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .feature-card,
    .feature-card.reverse {
      flex-direction: column;
    }
  
    .feature-card img,
    .feature-text {
      width: 100%;
    }
  
    .feature-text {
      padding: 30px;
    }
  }
  