/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section {
  background: url('pro-student.jpg') no-repeat center center/cover;
  height: 110vh;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(95, 0, 255, 0.6), rgba(255, 213, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.4;
}

/* Buttons */
.btn-primary {
  background-color: #101d6d;
  border: none;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 30px;
  box-shadow: none !important;
  outline: none !important;
}

.btn-warning {
  background-color: #ffc107;
  color: black;
  border: none;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 30px;
}

/* Navbar */
.navbar {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.navbar-brand img {
  height: 80px;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  margin: 0 19px;
  font-weight: bold;
  font-size: 20px;
  color: #000080 !important;
  position: relative;
  transition: all 0.3s ease;
}

/* Underline on hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #000080;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Optional: change color on hover */
.navbar-nav .nav-link:hover {
  color: #000080 !important;
}

/* Footer */
footer {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-contact {
  text-align: right;
}

.footer-social a {
  color: #1900ff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}


.footer-social a:hover i {
  color: #101d6d !important;
  transform: scale(1.2);
}
  


/* Responsive Spacing */
@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-contact {
    text-align: center;
    margin-top: 20px;
  }
}


.featured-bg {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

section.py-5.featured-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}
  .footer-bg {
     position: relative;
    width: 100%;
    min-height: 280px; /* adjust as needed */
    background: url('prrtt.webp') no-repeat center center/cover;
    background-color: rgba(255,255,255,0.85);
    background-blend-mode: lighten;
}
 
/* Override for navbar button to match homepage */
.navbar .btn-primary {
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-size: 15px !important;
}

