/* Navbar Links Hover Effect */
.nav-link {
    color: #1b2a4e !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    width: fit-content;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #FAD201;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 16px);
}

.nav-link:hover {
    color: #FAD201 !important;
}

/* Button Hover Effects */
.btn-header {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 13px !important;
    color: #1b2a4e;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-header:hover {
    background-color: #1b2a4e;
    color: #121212 !important;
    border-color: #1b2a4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(27, 42, 78, 0.2);
}

.btn-header:hover i {
    color: #FAD201;
}

.btn-header i {
    transition: color 0.3s ease;
}

/* E-Flyer Link Hover */
.e-flyer-link {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 6px;
}

.e-flyer-link:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 210, 1, 0.4);
}

/* Logo Hover */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

.bg-yellow {
    background-color: #FAD201;
}

main {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.mascot-img {
    max-height: 400px;
    transition: filter 0.3s ease;
}

.mascot-img:hover {
    filter: drop-shadow(0px 15px 20px rgba(27, 42, 78, 0.2));
}

@media (min-width: 992px) {
    .mascot-img {
        max-height: 900px;
    }
}

/* Contact Page Background */
.modern-bg-blue {
    background: linear-gradient(135deg, #4da3ff 0%, #1e81b0 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

.modern-bg-blue::before, .modern-bg-blue::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.modern-bg-blue::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.modern-bg-blue::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.overlap-card {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.hover-link {
    transition: color 0.3s ease;
}
.hover-link:hover {
    color: #FAD201 !important;
}

@media (max-width: 767.98px) {
    .mobile-edge {
        border-radius: 0 !important;
    }
}