body {
    /* Navbar is transparent overlay, so no top padding needed */
    padding-top: 0;
}

/* Navbar Customization */
.navbar-custom {
    background: rgba(0, 0, 0, 0.7);
    /* See-through dark background */
    backdrop-filter: blur(10px);
    /* Glassmorphism blur */
    transition: background 0.3s ease-in-out;
    padding: 15px 0;
    /* More height */
}

.navbar-custom .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-custom .nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-custom .nav-link:hover {
    color: #ffc107 !important;
    /* Warning color for hover */
}

/* Toggler Custom */
.navbar-toggler {
    border: none;
    outline: none;
}


.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1526256262350-7da7584cf5eb') center/cover;
}

.typing-cursor {
    display: inline-block;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    font-weight: 300;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.page-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c') center/cover;
    background-attachment: fixed;
}


/* Footer Styling */
.footer {
    background-color: #1a1a1a !important;
    /* Darker than standard bg-dark */
    font-size: 0.9rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #198754 !important;
    /* Bootstrap success color */
    text-decoration: none;
}

.footer h5 {
    letter-spacing: 1px;
}

.footer .btn-floating {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .btn-floating:hover {
    background-color: #198754;
    border-color: #198754;
    color: white;
}