body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff8e7; /* Light golden mix */
    color: #003366; /* Dark blue */
}

#background-image {
    position: fixed;
    top: 0;
    left: 0;
    height: 150px; /* Height of the image */
    width: 20px; /* Width of the image */
    background: url('your-background-image.jpg') no-repeat center center; /* Add your background image */
    background-size: cover; /* Ensure the image covers the div */
    opacity: 0.7; /* 70% transparent */
    z-index: 999; /* Ensure it's behind other content */
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f2429;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1000;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    width: 100px;
    height: 100px;
}

header {
    background: #003366;
    color: #fff;
}

.banner {
    text-align: center;
    padding: 4em 0;
    background: #fff8e7;
}

.cta-button {
    background: #ffd700; /* Light golden */
    color: #003366;
    padding: 1em 2em;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e6c200;
}

section {
    padding: 2em;
    background: #fff;
}

footer {
    text-align: center;
    padding: 1em;
    background: #003366;
    color: #fff;
}
.custom-bg-dark {
    background-color: #003366; /* Dark blue */
}
.tutor-card {
    background-color: #ffe6f2; /* Light pink background */
    border: none;
}
.tutor-card .card-body {
    text-align: center;
}
.tutor-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}
