.banner-container {
    margin: 20px auto;
    
}
.left-banner {
    height: 500px;
    margin-bottom: 20px;
}
.left-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.right-banner img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.banner-content h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.banner-content h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.banner-content p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.banner-wrapper {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}
.banner-wrapper:hover img {
    transform: scale(1.05);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 70%);
    border-radius: 8px;
}
@media (max-width: 768px) {
    .banner-container {
        padding: 0 10px;
    }
    .left-banner {
        height: 250px;
    }
    .left-banner img {
        height: 250px;
    }
    .right-banner img {
        height: 120px;
    }
}
/* Banner Button */
.banner_button {
    background-color: #36454F; /* Dark gray background */
    color: #fff; /* White text */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 6px 12px;
    border: none;
    border-radius: 50px; /* Rounded corners */
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover Effect */
.banner_button:hover {
    background-color: #ffd700 !important; /* Golden color on hover */
    color: #36454F; /* Dark gray text on hover */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}

/* Focus Effect */
.banner_button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.6); /* Focus glow effect */
}
