<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    font-size: 14px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 60px; /* Adjust the height of the logo as needed */
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
}

    .nav-links li {
        margin: 0 10px;
    }

    .nav-links a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
    }

.enroll-btn {
    background: orange;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 500px;
    background-image: url('../assets/images/b-2.png');
    
    background-position: top;
    background-size: cover;
    width: 100%;
    position: relative;
}

    .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: rgba(210, 192, 192, 0.7); */
        display: flex;
        justify-content: center;
        align-items: center;
    }

.hero-logo {
    max-width: 300px;
    opacity: 0.8;
}

/* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            flex-direction: column;
            text-align: center;
            display: none;
        }

        .navbar {
            flex-wrap: wrap;
        }

        .nav-links.active {
            display: flex;
        }
    }

    .about-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 20px;
        background-color: #f9f9f9;
    }

    .content {
        flex: 1;
        padding: 20px;
    }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

    .discover-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: orange;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
    }

    .image-container {
        flex: 1;
        position: relative;
        text-align: center;
    }

    .circle-image img {
        width: 80%;
        border-radius: 50%;
        object-fit: cover;
    }

    .overlay-info {
        position: absolute;
        bottom: 20px;
        right: 20px;
        text-align: center;
    }

    .small-image img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: -50px;
    }

    .info {
        background-color: rgb(253, 169, 13);
        color: white;
        position: absolute;
        padding: 10px;
        border-radius: 50%;
        width: 189px;
        height: 135px;
        top: 83%;
        display: flex;
        right: 75%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .info h2 {
            font-size: 1.5rem;
            margin: 0;
        }

        .info p {
            font-size: 0.9rem;
            margin: 0;
        }

    /* Responsive Design */
    @media (max-width: 768px) {
        .about-section {
            flex-direction: column;
        }

        .content {
            text-align: center;
        }

        .circle-image img {
            width: 100%;
        }
    }

    .services-section {
        text-align: center;
        padding: 20px;
        padding-top: 7rem;
    }

        .services-section h1 {
            color: #0000FF;
            margin-bottom: 30px;
        }

    .services-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 0 auto;
        max-width: 1200px;
    }

    .service-card {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        width: 300px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

        .service-card:hover {
            transform: scale(1.05);
        }

        .service-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .service-card .card-title {
            background-color: #0000FF;
            color: #fff;
            font-size: 1.2em;
            padding: 10px;
            text-align: center;
        }

        .service-card .card-content {
            padding: 15px;
            font-size: 0.95em;
            color: #555;
        }

    @media (max-width: 768px) {
        .service-card {
            width: 90%;
        }
    }

    @media (max-width: 480px) {
        .services-section h1 {
            font-size: 1.5em;
        }

        .social-links {
            display: none;
        }
    }

    .progress-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #f9f9f9;
    }

        .progress-section h2 {
            color: #0000ff;
            font-size: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .progress-section h2::before {
                content: "➔";
                color: #0000ff;
                margin-right: 10px;
            }

        .progress-section p {
            margin: 20px 0;
            font-size: 1.2rem;
            color: #000;
            line-height: 1.5;
        }

    .progress-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .stat-box {
        background: #ffffff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .stat-box h3 {
            font-size: 2rem;
            color: #0000ff;
            margin: 0;
        }

        .stat-box p {
            font-size: 1rem;
            color: #0000ff;
            margin-top: 10px;
        }

    .existence-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 2rem 20px 9rem;
        background-color: #f9f9f9;
    }

        .existence-section .map {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            padding: 20px;
            text-align: center;
        }

            .existence-section .map img {
                width: 100%;
                max-width: 400px;
                height: auto;
            }

        .existence-section .details {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            padding: 20px;
        }

    .details h2 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 10px;
        text-align: center;
    }

    .details p {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 20px;
        color: #555;
    }

    .location-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .location-list li {
            font-size: 1rem;
            color: #333;
        }


    .testimonials-section {
        text-align: center;
        padding: 50px 20px;
    }

        .testimonials-section h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .testimonials-section p {
            font-size: 1.2rem;
            color: #555;
        }

    .testimonial-card {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        text-align: left;
        position: relative;
        background: #fff;
        margin: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            top: -35px;
            left: 20px;
            border: 3px solid #fff;
        }

    .testimonial-content {
        margin-left: 110px;
    }

    .testimonial-name {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .testimonial-role {
        color: #777;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        color: #555;
    }

    .testimonial-icons {
        color: orange;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .testimonial-stars {
        color: orange;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .testimonial-card {
            padding: 30px 15px;
        }

        .testimonial-content {
            margin-left: 0;
            text-align: center;
        }

        .testimonial-card img {
            position: relative;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    .footer {
        background-color: #000;
        color: #fff;
        padding: 40px 20px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }

    .footer-logo img {
        width: 150px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .footer-links a {
        display: block;
        color: #ccc;
        text-decoration: none;
        margin-bottom: -23px;
        font-size: 0.9rem;
    }

        .footer-links a:hover {
            color: #fff;
        }

    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 3px;
        line-height: 25px;
    }

    .footer-contact a {
        color: #fff;
        text-decoration: none;
    }

    .footer-social {
        margin-top: 20px;
    }

        .footer-social a {
            color: #fff;
            font-size: 1.2rem;
            margin-right: 15px;
            text-decoration: none;
        }

            .footer-social a:hover {
                color: orange;
            }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        border-top: 1px solid #333;
        padding-top: 10px;
        font-size: 0.9rem;
    }

        .footer-bottom span {
            color: yellow;
        }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
        }

        .footer-section {
            text-align: center;
        }
    }
</pre></body></html>