
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Base Styles */

/* Digital Learning Section */
.digital-learning-section {
  padding: 60px 0;
}
.digital-learning-section h2 {
  color: #004080;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.digital-learning-section p {
  font-size: 1rem;
  color: #555;
}
.digital-learning-section img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Smart Classroom Features */
.smart-classroom-features {
  background: #f7faff;
}
.smart-classroom-features h2 {
  color: #002b5b;
}
.feature-box {
  background: #fff;
  border: 2px solid #e8f0fe;
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  border-color: #0056b3;
}
.feature-box h4 {
  color: #0056b3;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.feature-box p {
  color: #444;
  font-size: 0.95rem;
}

/* Why Digital Learning */
.why-digital-learning {
  background: #ffffff;
}
.why-digital-learning p {
  color: #444;
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.why-digital-learning ul {
  list-style: none;
  max-width: 700px;
  margin: 30px auto;
  padding: 0;
}
.why-digital-learning ul li {
  background: #e9f2ff;
  margin: 10px 0;
  padding: 12px 15px;
  border-left: 5px solid #0078d7;
  border-radius: 5px;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, #004d99, #0073e6);
  color: #fff;
  padding: 70px 0;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.cta-section .btn {
  display: inline-block;
  background: #fff;
  color: #0056b3;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-section .btn:hover {
  background: #ffcc00;
  color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .row {
    display: block;
  }
  .col-lg-6, .col-md-6, .col-lg-4 {
    width: 100%;
    margin-bottom: 25px;
  }
  .innerHeading-wrap h1 {
    font-size: 2rem;
  }
}
