/* GLOBAL RESET & REVEAL.JS OVERRIDES */
* {
  box-sizing: border-box;
}

.reveal {
  font-family: "Inter", sans-serif;
  color: #1a1a2e;
  background-color: #fafbfc;
}

.reveal h1,
.reveal h2,
.reveal h3 {
  font-family: "Poppins", sans-serif;
  text-transform: none;
  letter-spacing: normal;
  text-shadow: none;
  margin: 0;
  color: #1a1a2e;
}

/* COMMON SLIDE CONTAINER */
.slide-container {
  width: 1280px;
  height: 720px;
  position: relative;
  padding: 40px 70px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  margin: 0 auto;
  text-align: left;
}

/* BORDERS */
.bl-blue {
  border-left: 8px solid #3b82f6;
}

.bl-red {
  border-left: 8px solid #ef4444;
}

.bl-green {
  border-left: 8px solid #10b981;
}

.bl-orange {
  border-left: 8px solid #f59e0b;
}

.bl-purple {
  border-left: 8px solid #8b5cf6;
}

.bl-dark {
  border-left: 8px solid #1a1a2e;
}

/* COMMON LAYOUTS */
.header {
  padding-bottom: 25px;
}

.header h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.subtitle {
  font-size: 18px;
  color: #64748b;
  font-weight: 600;
  margin-top: 8px;
}

.content {
  flex: 1;
  display: flex;
  gap: 35px;
}

.content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-center {
  align-items: center;
  justify-content: center;
}

.w-right {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.w-right-lg {
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.meta-footer {
  position: absolute;
  bottom: 15px;
  right: 70px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

/* COMMON COMPONENT STYLES */
.card {
  background: #ffffff;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
}

.list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-style li {
  font-size: 18px;
  color: #475569;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.check-icon {
  font-size: 18px;
  color: #10b981;
}

.gradient-box-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.gradient-box-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25);
}

.gradient-box-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.gradient-box-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
}

.gradient-box-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.25);
}

.badge-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.badge-red {
  background: #ef4444;
}

.badge-blue {
  background: #3b82f6;
}

.badge-orange {
  background: #f59e0b;
}

.def-box {
  border-left: 5px solid;
  border-radius: 12px;
  padding: 35px;
}

.def-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.def-text {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
}

.note-banner {
  border: 3px solid;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

/* SPECIFIC SLIDE FIXES */
/* Slide 1 */
.s1-title {
  font-size: 72px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.s1-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 20px 60px;
  background: #eff6ff;
  border-radius: 12px;
  display: inline-block;
  border: 3px solid #3b82f6;
}

/* Slide 2 & 24 */
.info-cards {
  display: flex;
  gap: 40px;
  width: 100%;
}

.info-card {
  flex: 1;
  background: #ffffff;
  border: 3px solid #e5e7eb;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Levels 1-5 common */
.country-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: #f1f5f9;
}

.level-number {
  font-family: "Poppins";
  font-size: 60px;
  font-weight: 800;
  opacity: 0.9;
  margin-bottom: 8px;
}

/* Level Learning */
.learning-card {
  background: #ffffff;
  border: 3px solid;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.learning-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
