 body {
    /* Set a linear gradient background */
    background: linear-gradient(135deg, #4A90E2, #F5A623);
    color: white; /* Text color */
    font-family: 'Arial', sans-serif; /* Font family */
    font-size: 16px; /* Base font size */
}

/* Success alert styles */
.alert-success {
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-left: 6px solid #28a745;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

/* Error alert styles */
.alert-error {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border-left: 6px solid #dc3545;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

/* Close button inside alert */
.alert-success .close-btn,
.alert-error .close-btn {
    color: inherit;
    float: right;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background: none;
    line-height: 20px;
}

.alert-success .close-btn:hover,
.alert-error .close-btn:hover {
    color: #000;
}



/* Banner Section */
#banner {
    background-image: url('images/emaa1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

/* About Us Image */
#about img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Styling */
footer {
    margin-top: 30px;
}
 #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #333;
            color: white;
            text-align: center;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        /* Hover effect */
        #back-to-top:hover {
            background-color: #555;
            transform: scale(1.1);
        }

        /* Show button when user scrolls down */
        #back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        .executive-member img {
    border: 5px solid #f8f9fa;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.executive-member h5 {
    margin-top: 10px;
    font-weight: bold;
}

.executive-member p {
    color: #555;
    margin-bottom: 0;
}

#executive {
    background-color: #f9f9f9;
}

#executive h2 {
    margin-bottom: 40px;
    color: white;
    
}
#banner h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#banner p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Adjusting individual sections if needed */
#banner {
    background: linear-gradient(135deg, #4A90E2, #F5A623);

    padding: 100px 0; /* Banner can have extra padding */
}

#banner a.btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
}
/* Contact Section */
#contact {
    background-color: #fff;
    padding: 60px 0;
}

#contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: black;
}


#contact .form-label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

#contact .form-control {
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
}

#contact button {
    font-size: 1rem;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
}

/* About Us Section */
#about {
     background: linear-gradient(135deg, #4A90E2, #F5A623);
    background-color: white;
    padding: 60px 0;
}

#about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: bold;
}



#about .btn-outline-primary {
    font-size: 1rem;
    padding: 10px 30px;
    border-radius: 30px;
}

/* Projects Section */
#projects {
    background-color: white;
    padding: 60px 0;
    color: white;
    font-weight: bold;
    
}

#projects h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: black;
}

section {
    background: linear-gradient(135deg, #4A90E2, #F5A623);

    color: white; /* This will ensure the text is readable against the gradient */
    padding: 50px 0; /* You can adjust the padding as needed */
}

/* Mission and Vision Section */
#mission-vision {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#mission-vision h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#mission-vision p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    font-weight:bold;
}

.mission, .vision {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.mission:hover, .vision:hover {
    transform: translateY(-10px);
}

.mission h2, .vision h2 {
    color: #007bff;
}


.mission p, .vision p {
    color: #555;
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    #mission-vision h2 {
        font-size: 2rem;
    }

    #mission-vision p {
        font-size: 1rem;
    }
}
