body {
  background: linear-gradient(rgba(250, 250, 250, 0.937), rgba(8, 52, 117, 0.942)), url('../img/img.jpg') no-repeat center center fixed; 
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 80px;
  scroll-behavior: smooth;
}

.stylish-navbar {
  background: linear-gradient(to right, #ffffff, #cce0ff, #99c2ff, #66a3ff);
  padding: 12px 0;
  border-bottom: 1px solid #e6f0ff;
}

.navbar-brand {
  font-size: 1.7rem;
  color: #004aad !important;
  display: flex;
  align-items: center;
}

.nav-underline {
  position: relative;
  font-weight: 600;
  color: #003366 !important;
  transition: all 0.3s ease;
}

.nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #004aad;
  transition: width 0.3s ease;
}

.nav-underline:hover::after {
  width: 100%;
}

/* Hero Section Slant Style */
.hero-slant-section {
  position: relative;
  height: 89vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.slanted-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(#66b3ff00, #00336681);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  z-index: 1;
}

.hero-student-slant {
  position: absolute;
  bottom: -25px;
  right: 0%;
  z-index: 3;
}

.hero-student-slant img {
  width: 500px;
  height: auto;
  object-fit: contain;
}

.hero-logo-slant {
  position: absolute;
  top: 23%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.hero-logo-slant img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 200px 200px;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-logo-slant img:hover {
  transform: scale(1.03);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.btn-get-started {
  margin-top: 60px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #004aad, #66b2ff);
  color: #fff;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #004aad, #042342);
  color: #fff;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: #003366;
  font-weight: 800;
}

.hero-text p {
  font-size: 1.5rem;
  color: #333;
  margin-top: 20px;
}

.feature-card {
  transition: transform 0.3s;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 3rem;
  color: #004aad;
}

.feature-box {
  flex: 0 0 19%;
  min-width: 160px;
}

@media (max-width: 1200px) {
  .feature-box {
    flex: 0 0 48%;
  }
}

@media (max-width: 768px) {
  .feature-box {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-section {
    text-align: center;
  }
}
