/* Custom Banner Styling */
.custom_banner {
    background: url(../images/ban_bg.png) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.custom_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for better text readability */
    z-index: -1;
}

.custom_banner h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.custom_banner p {
    font-size: 20px;
    color: #f1f1f1;
    max-width: 700px;
    margin: 0 auto;
}

.custom_banner .btn_dflt {
    background: var(--p-color, #e4a101);
    /* Fallback color if variable missing */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 30px;
    display: inline-block;
    transition: 0.3s;
}

.custom_banner .btn_dflt:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #333;
}

/* Navigation Styles */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding: 10px 20px !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--p-color);
}

/* Sticky Header */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}