/* LKG Admission Page Styling */

.lkg-content {
  padding: 60px 15px;
  background: #f9fbff;
  
}

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

/* Intro Box */
.intro-box {
  text-align: center;
  margin-bottom: 50px;
}

.intro-box h2 {
  font-size: 34px;
  color: #0b3c5d;
  margin-bottom: 15px;
  font-weight: 700;
}

.intro-box p {
  font-size: 17px;
  color: #555;
  max-width: 850px;
  margin: auto;
  line-height: 1.7;
}

/* Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Cards */
.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.info-card h3 {
  font-size: 22px;
  color: #f0aa00;
  margin-bottom: 15px;
}

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

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

.info-card ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

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

.info-card ol li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #0b3c5d, #1c6ea4);
  padding: 45px 30px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.cta-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-box p {
  font-size: 16px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #f0aa00;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffd35a;
  transform: scale(1.05);
}

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

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




/* Extra Sections */

.extra-section,
.trust-section {
  margin-top: 70px;
}

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

.section-head h2 {
  font-size: 32px;
  color: #0b3c5d;
  margin-bottom: 10px;
  font-weight: 700;
}

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

/* Extra Grid */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.extra-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.extra-card h3 {
  font-size: 22px;
  color: #f0aa00;
  margin-bottom: 15px;
}

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

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

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.trust-box {
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.trust-box:hover {
  transform: translateY(-6px);
}

.trust-box span {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.trust-box h4 {
  font-size: 18px;
  color: #0b3c5d;
  margin-bottom: 10px;
  font-weight: 600;
}

.trust-box p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .section-head h2 {
    font-size: 26px;
  }
}
/* Routine Section */
.routine-section {
  margin-top: 70px;
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.routine-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.routine-card h4 {
  font-size: 17px;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.routine-card p {
  font-size: 14px;
  color: #555;
}

/* Ratio Section */
.ratio-section {
  margin-top: 80px;
  text-align: center;
}

.ratio-box {
  background: linear-gradient(135deg, #f0aa00, #ffd35a);
  padding: 50px 20px;
  border-radius: 20px;
  max-width: 500px;
  margin: auto;
}

.ratio-box h3 {
  font-size: 60px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 800;
}

.ratio-box p {
  font-size: 16px;
  color: #333;
}

/* FAQ Section */
.faq-section {
  margin-top: 80px;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  padding: 22px 25px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-item h4 {
  font-size: 17px;
  color: #0b3c5d;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: #555;
}
