/* =========================================
   MODERN GLASS HERO BANNER (FINAL FIX)
   ========================================= */

/* 1. Container Setup - Strict Full Screen */
.home_banner_area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    /* Force exact viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0 !important;
    /* Remove any padding that might shift layout */
}

/* 2. Fixed Background (Parallax) */
/* We use a fixed pseudo-element to guarantee it stays still */
.home_banner_area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/banner/home.jpg) no-repeat center center;
    background-size: cover;
    z-index: -99;
    will-change: transform;
}

/* Background Zoom Animation */
@keyframes zoomInBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.home_banner_area::before {
    animation: zoomInBg 20s infinite alternate;
}

/* 3. Overlay */
.home_banner_area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 43, 91, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

/* 4. Glass Card Content */
.home_banner_area .banner_inner {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.glass-hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 60px 40px;

    /* Responsive Sizing */
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

/* 5. Typography Reset */
.glass-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff !important;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.glass-hero-content p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 6. Button Reset (Aggressive) */
/* Target specifically to override theme styles */
.glass-hero-content .main_btn,
.home_banner_area .main_btn {
    position: relative !important;
    display: inline-block !important;
    background: #D4AF37 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0 40px !important;
    height: 55px !important;
    line-height: 55px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3) !important;
    margin-top: 20px;
    right: auto !important;
    bottom: auto !important;
}

.glass-hero-content .main_btn:hover,
.home_banner_area .main_btn:hover {
    background: #fff !important;
    color: #002B5B !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Hidden Pseudo-elements to kill the yellow box/brackets */
.glass-hero-content .main_btn::before,
.glass-hero-content .main_btn::after,
.home_banner_area .main_btn::before,
.home_banner_area .main_btn::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: transparent !important;
}

/* 7. Global Masking (Stop Invasion) */
/* Force solid background on EVERYTHING following the banner */
section,
footer,
.feature-area,
.about-area,
.service-area,
.new-service-area,
.newsletter-area,
.testimonials-area,
.contact-area,
.footer-area {
    position: relative;
    z-index: 10;
    background-color: #f9f9ff;
}

/* Restore White backgrounds where needed */
.feature-area,
.about-area,
.testimonials-area,
.quote-area {
    background-color: #fff;
}

/* Fix Invisible Text in Quote Area */
.quote-area h2,
.quote-area .text-white {
    color: #002B5B !important;
    /* Title: Navy Blue */
}

.quote-area h5 {
    color: #D4AF37 !important;
    /* Subtitle: Gold (Standard) */
}

/* Responsive Font Sizes */
@media (max-width: 991px) {
    .glass-hero-content h1 {
        font-size: 42px;
    }

    .glass-hero-content {
        padding: 40px 20px;
    }
}