/* Background Setup */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.background-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center/cover;
    filter: blur(1px); /* Adds an elegant blur */
    z-index: -2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: -1;
}

/* Content Box */
.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    font-family: "Poppins", sans-serif;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent box */
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px); /* Frosted glass effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustment for Small Screens */
@media (max-width: 768px) {
    .content {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 80%;
        text-align: center;
    }
}

/* Quote Styling */
.quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Description Styling */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

