:root {
  --primary-color: #0d6efd;
  --secondary-color: #198754;
  --accent-color: #fd7e14;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.set img {
  height: 80px;
}

.hero-section {
  background: linear-gradient(rgb(13 110 253 / 26%), rgb(13 110 253 / 10%)), url(img/banner.jpg) center / cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

.feature-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.staff-card {
  text-align: center;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.staff-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.course-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.contact-info {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
}

.blog-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  height: 200px;
  object-fit: cover;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .page-section {
      display: none;
    } */

.page-section.active {
  display: block;
}

.footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 0;
}