/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Header and Footer */
header, footer {
    background-color: #004080;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Header CTA Button */
.btn-get-started {
    background-color: #004080;
    color: white;
    font-size: 1.25rem;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

    .btn-get-started:hover {
        background-color: #003366;
    }

@media (max-width: 576px) {
    .btn-get-started {
        width: 100%;
        font-size: 1.1rem;
    }
}

/* Navbar */
.custom-nav-brand {
    font-weight: bold;
    color: #004080 !important;
    font-size: 1.5rem;
}

/* Carousel */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
    display: block;
    margin: 0 auto;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
}

.carousel-item .d-flex {
    background: linear-gradient(to right, #004080, #007bff);
    min-height: 400px;
    padding: 2rem;
}

/* Responsive Carousel Caption */
@media (max-width: 576px) {
    .carousel-caption {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

        .carousel-caption h5 {
            font-size: 1.1rem;
        }

        .carousel-caption p {
            font-size: 0.9rem;
        }

        .carousel-caption .btn {
            font-size: 0.85rem;
            padding: 0.3rem 0.75rem;
        }
}

/* Dashboard Card with Gradient Background */
.dashboard-card {
    background: linear-gradient(to bottom right, #004080, #008000);
    /*padding: 1rem;*/
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
/*    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
}

    .dashboard-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    /* Optional: Overlay Gradient on Image */
    .dashboard-card.with-overlay {
        position: relative;
    }

        .dashboard-card.with-overlay::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 64, 128, 0.5), rgba(0, 123, 255, 0.5));
            z-index: 1;
            border-radius: 12px;
            pointer-events: none;
        }

    .dashboard-card img {
        position: relative;
        z-index: 0;
    }

/* Map Section */
.map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: auto;
}

/* Footer Navigation */
footer ul {
    padding-left: 0;
    list-style: none;
    margin: 10px 0 0 0;
}

    footer ul li {
        display: inline;
        margin: 0 10px;
    }

    footer ul a {
        color: white;
        text-decoration: none;
    }

        footer ul a:hover {
            text-decoration: underline;
        }

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(to right, #f0f8ff, #e6f0ff);
    padding: 60px 20px;
    text-align: center;
}

    .why-choose-us h2 {
        font-size: 2.5rem;
        color: #004080;
        margin-bottom: 40px;
    }

.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.reason-card {
    background-color: white;
    border: 2px solid #004080;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .reason-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 64, 128, 0.2);
    }

    .reason-card h4 {
        color: #004080;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .reason-card p {
        font-size: 0.95rem;
        color: #333;
    }

/* Responsive Layout */
@media (max-width: 576px) {
    .reasons {
        flex-direction: column;
        align-items: center;
    }
}

.partners-technology {
    background: linear-gradient(to right, #175e9b, #fff8e6);
    padding: 60px 20px;
    text-align: center;
}

    .partners-technology h2 {
        font-size: 2.5rem;
        color: #004080;
        margin-bottom: 40px;
    }

.partners-schools {
    background: linear-gradient(to right, #175e9b, #fff8e6);
    padding: 60px 20px;
    text-align: center;
}

    .partners-schools h2 {
        font-size: 2.5rem;
        color: #004080;
        margin-bottom: 40px;
    }


.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partners-card {
    background-color: white;
    border: 2px solid #004080;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-card img{
    height: 150px;
    width:200px;
}
    .partners-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 64, 128, 0.2);
    }

    .partners-card h4 {
        color: #004080;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .partners-card p {
        font-size: 0.95rem;
        color: #333;
    }

/* Responsive Layout */
@media (max-width: 576px) {
    .partners {
        flex-direction: column;
        align-items: center;
    }
}

.registration-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .registration-form {
        padding: 15px;
    }
}

