﻿html {
    scroll-padding-top: 70px; /* Adjust based on your navbar height */
}

body {
    font-family: 'Sora', sans-serif;
    scroll-behavior: smooth;
}

.hero {
    background-color: #1E3A5F;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.btn-primary {
    background-color: #4DA6FF;
    border-color: #4DA6FF;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.section-title {
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

footer {
    background-color: #002E5B;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.card {
    border: 2px solid rgba(0, 46, 91, 0.15);
}

.card-custom {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    max-width: 400px;
    width: 100%;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-control:focus {
    box-shadow: none;
    border-color: #4DA6FF;
}

.forgot-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-card {
    max-width: 400px;
    width: 100%;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.dropdown-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px; /* or any width that fits your design */
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ddd;
}
