/* ===================================================
   UKG Admission – Academic Premium Design
   =================================================== */
/* ================= Split Intro Section ================= */

.intro-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  align-items: center;
  background: linear-gradient(120deg, #1b3c59, #2d5c88);
  padding: 30px 50px;
  border-radius: 28px;
  color: #fff;
  margin-bottom: 80px;
  
}

.intro-text h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #f2f6fb;
  text-align:justify;
}

.intro-image img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* ---------------- Responsive ---------------- */

@media (max-width: 900px) {
  .intro-split {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 30px;
  }

  .intro-image img {
    max-height: 300px;
  }
}

:root {
  --primary: #1b3c59;
  --secondary: #f4b400;
  --light: #f4f7fb;
  --dark: #222;
}

/* Base */
.ukg-content {
  background: var(--light);
  padding: 70px 15px;
  color: var(--dark);
}

.container1 {
  max-width: 1200px;
  margin: auto;
}

/* ================= HERO ================= */
.intro-box {
  background: linear-gradient(120deg, var(--primary), #2d5c88);
  padding: 70px 40px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 70px;
}

.intro-box h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.intro-box p {
  font-size: 18px;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
}

/* ================= FEATURE STRIP ================= */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 80px;
}

.info-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  border-top: 6px solid var(--secondary);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.info-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.info-card p,
.info-card li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.info-card ul {
  padding-left: 18px;
}

/* ================= TIMELINE ================= */
.routine-section {
  margin-bottom: 90px;
}

.section-head {
  text-align: center;
  margin-bottom: 55px;
}

.section-head h2 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 700;
}

.section-head p {
  font-size: 16px;
  color: #555;
}

.routine-grid {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-left: 30px;
}

.routine-grid::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary);
  border-radius: 4px;
}

.routine-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.routine-card::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 28px;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
}

.routine-card h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ================= STATS ================= */
.extra-section {
  margin-bottom: 90px;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.extra-card {
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
  padding: 40px 30px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.extra-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
}

/* ================= CTA ================= */
.cta-box {
  background: linear-gradient(120deg, var(--secondary), #ffd35a);
  padding: 20px 30px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.cta-box h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.cta-box p {
  font-size: 17px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 16px 42px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #102638;
  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .intro-box h2 {
    font-size: 28px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .cta-box h3 {
    font-size: 26px;
  }

  .routine-grid {
    padding-left: 20px;
  }
}

/* ================= Assessment Section ================= */

.assessment-section {
  margin-bottom: 90px;
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.assessment-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border-left: 6px solid var(--secondary);
}

.assessment-box h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.assessment-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ================= Parent Section ================= */

.parent-section {
  margin-bottom: 100px;
}

.parent-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 35px;
  align-items: center;
}

.parent-content {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.08);
}

.parent-content h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
}

.parent-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.parent-content ul {
  padding-left: 18px;
}

.parent-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.parent-highlight {
  background: linear-gradient(135deg, var(--primary), #2d5c88);
  padding: 45px 35px;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.parent-highlight h4 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.parent-highlight p {
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .parent-wrap {
    grid-template-columns: 1fr;
  }
}
