/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Top Banner */
header {
    width: 100%;
    position: relative;
    overflow: hidden; /* Ensures no overflow beyond the banner area */
}

.top-banner {
    height: 75vh;
    background-color: black;
    position: relative;
    color: white;
    overflow: hidden; /* Ensures content does not overflow */
    display: flex;
    align-items: center;
    padding-left: 220px; /* Space for the rectangle and padding for alignment */
    min-height: 265px;
}

/* Pseudo-element for the background image */
.top-banner::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: url('../img/TopBanner.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain; /* Ensures the image scales to fit */
    max-width: 1000px; /* Maximum width of the image */
    z-index: 0; /* Ensures it is behind the content */
}

/* Orange Rectangle */
.logo {
    width: 80px; /* Width of the rectangle */
    height: 60px; /* Height of the rectangle */
    background-color: #FEB406; /* Orange color */
    position: absolute;
    top:30px;
    left: 0px; /* Space from the left edge */
    z-index: 1; /* Ensure it's above the background image */
}

/* Text next to the rectangle */
.logo-text {
    margin-left: 10px;
    z-index: 1;
    top: 24px;
    position: absolute;
    left: 80px;
}

footer .logo-text{
    text-align: left;
}

.logo-text .name {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.logo-text .position {
    font-size: 0.9rem;
    color: white;
}

/* Quote */
.quote {
    position: absolute;
    top: 60%; /* Adjust this value to position the quote lower */
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1; /* Ensures it is above the background image */
    color: white; /* Text color for the quote */
    font-size: 1.5rem; /* Adjust font size as needed */
    max-width: 85%; /* Optional: Ensures quote doesn't stretch too wide */
    padding: 0 2rem; /* Adds some padding to accommodate large quotation marks */

    
}



.quote p::before {
    content: '”';
    font-size: 4rem;
    color: #FEB406;
    position: absolute;
    /* top: 50%; */
    margin-top: -20px;
    margin-left: -25px;
}

.quote p::after{
    content: '”';
    font-size: 4rem;
    color: #FEB406;
    position: absolute;
    /* top: 50%; */
    margin-top: -20px;
    margin-left: 5px;
}





blockquote {
    margin: 0;
}

/* Lower Area */
.lower-area {
    background-color: #FEB406;
    color: #000;
    padding: 40px;
    text-align: center;
    padding-top: 100px;
}


.lower-area p, .lower-area h1, .lower-area h2{
    padding:0 100px;
}

.columns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
}

.column {
    background-color: #000;
    padding: 20px;
    border-radius: 0px;
    width: 45%;
    color: #FEB406;
}

.column h2 {
    margin-top: 0;
    margin-bottom:0px;
}

.column h3 {
    color: #fff;
    margin: 0;
    margin-bottom:10px;
    font-weight: 500;
    font-size: 1rem;
}




.column ul {
    list-style: none;
    padding: 0;
}

.column li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 10px;
    position: relative;
    min-height:100px;
}

.footer-content {
    justify-content: space-between;
    align-items: center;
    text-align: right;
}

.footer-logo {
    max-height: 40px; /* Adjust as needed */
}

.social-links a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-banner{
        height:380px;
    }
    /* Quote */
    .quote {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateX(0);
        text-align: center;
        font-size: 1rem;
        max-width: 77%;
        padding: 0 1.5rem;
        
    }
    /* Style for the quotation marks */
    .quote p::before,
    .quote p::after {
        font-size: 3rem; /* Adjust size as needed */
    }

    .lower-area {
        padding-top: 20px;
        padding:20px;
    }

    .lower-area p, .lower-area h1, .lower-area h2{
        padding:0;
    }

    .columns {
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;

    }
    
    .column {
        width: 90%;
    }
    
    .footer-content {
        flex-direction: column;
    
    }
    
    .social-links {
        margin-top: 10px;
    }
}
