/* static/css/styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

.hero {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5); /* Optional: add a dark overlay for better text contrast */
    padding: 0;
    border-radius: 0;
}

footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

.brand-revision {
    color: #01574c; /* Blue */
    
}

.brand-ke {
    color: #0e0f0e; /* Green */
    
}

.carousel-item img {
    height: 300px;
    object-fit: cover;
}

.jumbotron {
    background-color: rgba(1, 87, 67, 0.5); /* Semi-transparent background */
    display: flex;
    flex-direction: column; /* Ensure vertical alignment of content */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text within the jumbotron */
    min-height: 50vh; /* Ensure it takes up at least half of the viewport height */
    padding: 20px;
    color: #fff; /* Make text white for contrast */
    border-radius: 8px;
}

.subject-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.subject-card:hover {
    transform: scale(1.02);
}

.carousel-item img {
    height: 200px;
    object-fit: cover;
}

.list-group-item {
    padding: 0.5rem;
}
.appstore-section .card {
    border: none;
    border-radius: 10px;
}

.appstore-section .btn {
    border-radius: 5px;
}

.appstore-section h2 {
    font-size: 2rem;
    color: #333;
}
