body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: transparent;
    color: white;
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .navbar-brand {
    color: white;
}

header .navbar-nav .nav-link {
    color: white;
}

header .navbar-nav .nav-link:hover {
    color: #ccc;
}

#banner {
    background: url(../Assets/afternoon.jpg) no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about_dream{
    background-color: #f1f1f1; 
    padding: 8rem 0 2rem; /* Add padding-top for spacing from the banner */
    text-align: center!important; 
}

#about_dream h1 {
    color: #333; 
    
}

#about_dream h3 {
    color: #333; 

}

#about_dream p {
    color: #333; 
    font-size: x-large;
}



#contact {
    background-color: #f1f1f1;
    padding: 5rem 0;
}

#contact form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    margin-bottom: 1.5rem;
}

#contact label {
    font-weight: bold;
}

#contact input,
#contact textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

#contact button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#promo-banner {
    background-color: #2f2f30;
    padding: 5rem 0;
    color: white;
}

#promo-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

#promo-banner h2 {
    font-size: 2rem;
}

footer {
    background-color: #343a40;
    color: white;
}


#team .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#team .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

#team .card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#team .card-body {
    padding: 1.5rem;
}
