/* ==============================
   SGM COMPUTER EDUCATION - STYLE.CSS
   Corporate | Modern | Clean | Bootstrap Friendly
   ============================== */

/* Google Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: "Inter", sans-serif;
  background-color: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Corporate Header */
.corporate-header {
  background: linear-gradient(135deg, #0a2342, #0b3d91);
  color: white;
  border-bottom: 4px solid #00b4d8;
}

.subtitle {
  opacity: 0.85;
  font-size: 1.1rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2342;
  border-left: 6px solid #00b4d8;
  padding-left: 12px;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b3d91;
  margin-bottom: 20px;
}

/* Module Cards */
.module-card {
  background: white;
  border-radius: 12px;
  border-left: 6px solid #00b4d8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-left-color: #0077b6;
}

.module-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a2342;
}

/* Bullets */
.bullet-list li {
  margin-bottom: 8px;
  padding-left: 5px;
  font-size: 1.05rem;
}

.bullet-list li::marker {
  color: #0077b6;
  font-weight: bold;
}

/* Footer */
.corporate-footer {
  background: #0a2342;
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Smooth Fade Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}
.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}
