/*--------------------------------------------------------------
# qr-code-Hero Section (Updated for center text and white color)
--------------------------------------------------------------*/

#qr-code-hero {
    width: 100%;
    height: 80vh;
    background: #323232;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* centers text horizontally */
    color: #ffffff !important; /* makes all text white */
}

#qr-code-hero .container {
    padding-top: 0; /* remove top padding to center vertically */
    position: relative;
    z-index: 2;
}

.qr-code-hero-heading {
    color: #ffffff !important; /* white text */
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.qr-code-hero-sub-heading {
    color: #ffffff !important; /* white text for sub-heading */
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    max-width: 800px;
    text-align: center !important;
}

/* Optional: darker overlay for better text contrast */
.over-lapping {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .qr-code-hero-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .qr-code-hero-sub-heading {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    } 
} 
