body {
  font-family: 'Akshar', 'Poppins', 'Montserrat', sans-serif;
  background: linear-gradient(to right, #f0f4ff, #e0f7fa);
  
}

.navbar .container-fluid {
  background-color: #004d99;
}

.navbar-nav .nav-link {
  color: white !important;
}

.hero {
  background: url('https://source.unsplash.com/1600x600/?school,classroom') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.section {
  padding: 60px 20px;
}

.footer {
  background-color: #003366;
  color: white;
  padding: 20px 0;
}

.btn-custom {
  background-color: #007bff;
  color: white;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #0056b3;
}
.top-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
}
.top-header img {
  max-height: 60px;
}
.top-header .btn {
  font-weight: 500;
  border-radius: 20px;
  padding: 5px 12px;
  box-shadow: none;
  border: none;
  color: white;
  transition: background-color 0.3s ease;
}

.top-header .btn-danger {
  background-color: #c62828;
}

.top-header .btn-success {
  background-color: #2e7d32;
}

.top-header .btn-warning {
  background-color: #f9a825;
  color: #212529; /* dark text on yellow */
}

.top-header .btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.top-header {
  background: linear-gradient(90deg, #dff0ff, #e6faff, #d0eaff);
  border-bottom: 1px solid #cce0f0;
  font-size: 0.95rem;
}
.marquee-container {
  font-size: 1rem;
  font-weight: 500;
}
.marquee-container i {
  margin-right: 6px;
}
.marquee-container span {
  white-space: nowrap;
}
/* Slider Image Fixed Size */
.slider-img {
  object-fit: contain; /* Ensure full image is visible, not cropped */
  height: 400px;
  width: 100%;
  background-color: #f8f9fa; /* Optional: light background for non-full images */
}
/* for gallery */
.img-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.img-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.text-muted {
  text-align: center;
}