body {
    scroll-behavior: smooth;
}

.navbar,
footer {
    background-color: #003366;
}

.navbar a,
.navbar-brand,
footer {
    color: white !important;
}

/* Base desktop styles */
.brand-logo {
    width: 50px;
}

.brand-text {
    font-size: 24px;
}

/* Mobile-specific styles */
@media (max-width: 576px) {
    .brand-logo {
        width: 32px;
    }

    .brand-text {
        font-size: 14px;
    }
}

.navbar-nav .nav-link {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
    /* Bootstrap primary */
    font-weight: 600;
    transform: translateX(5px);
}

/* Styling for Login Buttons */
.navbar-nav .btn {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.navbar-nav .btn:hover {
    background-color: #0b5ed7;
    color: #fff;
}

header.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;
    border-left: 5px solid #003366;
    padding-left: 10px;
}

.section-title-center {
    margin-bottom: 1rem;
}

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 99;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

.card-icon {
    font-size: 2rem;
    color: #003366;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
  }
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.gallery img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

