﻿/*BANNER STYLES */
.custom-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-image: url('../images/banner 4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    margin: 50px auto;
    border-radius: 20px;
    max-width: 1200px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.banner-box {
    max-width: 800px;
    width: 100%;
}

.custom-banner h1 {
    font-size: 36px;
    color: #FF8126;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}


.my-custom-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #0F3057;
    border: 2px solid #0F3057;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

    .my-custom-btn:hover {
        background-color: #ff8126;
        color: #0f3057;
        border-color: #ff8126;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 129, 38, 0.4);
    }

@media (max-width: 768px) {
    .custom-banner {
        padding: 40px 15px;
        margin: 30px auto;
    }

        .custom-banner h1 {
            font-size: 24px;
        }

    .my-custom-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
