
:root {
  --primary-color: #1E4FA1;
  --dark-blue: #0F2F6B;
  --secondary-color: #e1550f;
}
body {
    padding-top: 80px;
}
.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    transition: 0.3s ease;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}
.primaryColor {
  color: var(--primary-color) !important;
}
/* Default Navbar */
.custom-navbar {
    transition: all 0.4s ease;
    background: transparent;
    z-index: 999;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When Scrolled */
.custom-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background: #d3e5ff;
    backdrop-filter: blur(10px);
}
.navbar-brand {
  font-size: 26px;
  letter-spacing: 0.5px;
}

.brand-apply {
  color: var(--dark-blue);
}

.brand-center {
  color: var(--primary-blue);
}

.brand-360 {
  color: var(--accent-orange);
  font-weight: 800;
}

.brand-dot {
  color: var(--primary-blue);
  font-size: 16px;
  margin-left: 2px;
}

/* Nav Links */
/* default color when navbar is transparent */
.custom-navbar .navbar-nav .nav-link {
  color: var(--dark-blue);
  font-weight: 500;
  transition: 0.3s ease;
}

/* on scroll when background becomes light blue/white */
.custom-navbar.scrolled .navbar-nav .nav-link {
  color: black !important;
}

.custom-navbar .navbar-nav .nav-link:hover {
  color: var(--accent-orange);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    background: url("/static/images/education_hero.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay for text readability */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(23, 23, 115, 0.85) 0%,
        rgba(61, 61, 209, 0.75) 40%,
        rgba(234, 128, 34, 0.45) 100%
    );
}

/* Ensure text stays above overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
  font-size: 48px;
}

.card {
  border-radius: 12px;
}
.feature-icon {
  font-size: 28px;
  background: #fff3cd;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  margin: 0 auto;
}

.ac-footer {
  background: var(--primary-color);
  color: #fff;
}

.ac-footer-top {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-blue) 70%
  );
}

.ac-footer-brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0;
}

.ac-footer-brand span {
  color: var(--secondary-color);
}

.ac-footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.ac-footer-text {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ac-footer-list li {
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.84);
  word-break: break-word;
}

.ac-footer-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ac-footer-list a:hover {
  color: var(--secondary-color);
}

.ac-footer-bottom {
  background: rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ac-footer-bottom small {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 767.98px) {
  .ac-footer {
    margin-top: 2.5rem !important;
  }

  .ac-footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ac-footer-title {
    margin-bottom: 10px;
  }

  .ac-footer-list li {
    margin-bottom: 6px;
  }
}