.elementor-2612 .elementor-element.elementor-element-9fd054f{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9aac601 *//* ===========================
   GLOBAL STYLES
=========================== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}

section {
  padding: 60px 20px;
}

h1, h2, h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   CTA BUTTON
=========================== */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ee0979, #ff6a00);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  background: linear-gradient(to right, #004aad, #007bff);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
}

.hero h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10px;
  color: #e9f3ff;
}

.hero p {
  font-size: 1.1rem;
  margin: 20px auto;
  max-width: 800px;
}

/* ===========================
   STATS / HIGHLIGHTS
=========================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 30px;
}

.stat-box {
  background: #f8f9ff;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e3e8ff;
}

.stat-box h3 {
  font-size: 2rem;
  color: #004aad;
}

.stat-box p {
  font-size: 1rem;
  margin-top: 5px;
  color: #333;
}

/* ===========================
   SUBJECT GRID
=========================== */
.subjects {
  background: #f7fbff;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.subject-box {
  background: #fff;
  padding: 22px;
  border: 1px solid #e4e6f0;
  border-radius: 14px;
  transition: 0.3s;
  text-align: center;
}

.subject-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* ===========================
   FEATURES SECTION
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e4e6f0;
  transition: 0.3s ease;
}

.feature:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .subject-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .stats, .subject-grid, .features-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */