body {
    font-family: 'Poppins', sans-serif;
    background: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.logo {
    width: 200px;
    margin: 20px auto;
    display: block;
}

.hero {
    background: url('images/sbl-background.png') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}
.container {
            max-width: 800px;
            margin: auto;
            background: #1E1E1E;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
}

.btn {
    background: #03bf63; 
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #00E676; /* A slightly brighter green for hover effect */
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.4);
}


.contact input,
.contact textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    color: white; /* Ensures text is white */
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #aaa; /* Light gray for placeholder text */
}


footer {
    padding: 20px 0;
}
