/* =====================================================
   GLOBAL THEME VARIABLES – JIJ IAS ACADEMY
===================================================== */
:root {
  --black: #000000;
  --dark-black: #0b0b0b;
  --soft-black: #1a1a1a;
  --gold: #f4c430;
  --gold-dark: #d4a017;
  --red: #e11d48;
  --green: #22c55e;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #e5e7eb;
}

/* =====================================================
   RESET & BASE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: #222;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =====================================================
   CONTAINER
===================================================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* =====================================================
   HERO / ABOUT INTRO
===================================================== */
.about-hero {
  background:white;
  color:  #f4c430;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-tags {
  margin: 15px 0;
  color: var(--gold);
  font-weight: 700;
}

.hero-desc {
  max-width: 620px;
  color: #050000;
}

.hero-info div {
  margin: 10px 0;
  font-weight: 600;
  color: #0c0000;
}

/* =====================================================
   BUTTONS
===================================================== */
.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--green);
  color: var(--white);
}

.btn.primary:hover {
  background: #16a34a;
}

.btn.outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn.outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* =====================================================
   ENQUIRY FORM CARD
===================================================== */
.hero-form {
  background: var(--white);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: 20px;
}

.hero-form label {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid var(--gray);
}

.hero-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red), #ff3b6b);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.hero-form button:hover {
  opacity: 0.9;
}

.form-note {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 12px;
}

/* =====================================================
   SECTION COMMON
===================================================== */
.section {
  background: var(--white);
}

.section.light {
  background: linear-gradient(135deg, #111, #222);
  color: var(--white);
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 35px;
  color: var(--gold);
}

/* =====================================================
   CARDS (WHY US / FACILITIES)
===================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: var(--soft-black);
  color: var(--white);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #333;
  font-weight: 600;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* =====================================================
   VISION & MISSION – GOLD SECTION
===================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, #f4c430, #ffd966);
  padding: 60px;
  border-radius: 22px;
}

.two-col h3 {
  font-size: 26px;
  color: var(--black);
}

.two-col p {
  color: #222;
  font-weight: 500;
}

/* =====================================================
   COURSES LIST – BLACK SECTION
===================================================== */
.course-list {
  max-width: 650px;
  margin: auto;
  background: var(--black);
  color: var(--white);
  padding: 45px;
  border-radius: 18px;
}

.course-list li {
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-weight: 600;
}

.course-list li:last-child {
  border-bottom: none;
}

/* =====================================================
   STATS SECTION – RED POWER BLOCK
===================================================== */
.stats-section {
  background: black;
  color: var(--white);
}

.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stats h3 {
  font-size: 42px;
  font-weight: 900;
}

.stats p {
  font-weight: 600;
}

/* =====================================================
   FINAL CTA
===================================================== */
.cta {
  background: white;
  border-top: 4px solid var(--gold);
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .stats {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
  }

  .btn {
    margin-bottom: 12px;
  }
}
