/* ===== PAGE BASE ===== */
.aibe-page {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7ff;
  padding: 20px;
  color: #222;
}

/* ===== HEADER ===== */
.aibe-header {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.aibe-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.aibe-header p {
  opacity: 0.9;
}

/* ===== GRID ===== */
.aibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 25px;
}

/* ===== CARD ===== */
.aibe-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.aibe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ICON */
.aibe-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* TEXT */
.aibe-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* COLOR VARIANTS */
.aibe-card.syllabus { border-left: 5px solid #4f46e5; }
.aibe-card.pyq { border-left: 5px solid #10b981; }
.aibe-card.notes { border-left: 5px solid #f59e0b; }
.aibe-card.mock { border-left: 5px solid #ef4444; }
.aibe-card.strategy { border-left: 5px solid #9333ea; }

/* ===== SECTION ===== */
.aibe-section {
  margin-top: 40px;
}

.aibe-section h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #4f46e5;
}

/* ===== LIST ===== */
.aibe-list {
  background: white;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.7;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}


/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .aibe-header h1 {
    font-size: 1.5rem;
  }
}
