﻿@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #f1f5f4; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #08915e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.Title h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 20px;
    background-color: #08915e; /*var(--accent-color);*/
    border-radius: 3px;
}

.AimNObjective {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}
/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.history .about-content h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.history .about-content p {
    margin-bottom: 30px;
}

.history .about-content .timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

    .history .about-content .timeline:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .history .about-content .timeline .timeline-item {
        position: relative;
        margin-bottom: 30px;
    }

        .history .about-content .timeline .timeline-item:last-child {
            margin-bottom: 0;
        }

        .history .about-content .timeline .timeline-item .timeline-dot {
            position: absolute;
            left: -35px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

        .history .about-content .timeline .timeline-item .timeline-content h4 {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: var(--heading-color);
        }

        .history .about-content .timeline .timeline-item .timeline-content p {
            margin-bottom: 0;
        }

.history .about-image {
    position: relative;
}

    .history .about-image img {
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .history .about-image .mission-vision {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

@media (max-width: 768px) {
    .history .about-image .mission-vision {
        grid-template-columns: 1fr;
    }
}

.history .about-image .mission-vision .mission,
.history .about-image .mission-vision .vision {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

    .history .about-image .mission-vision .mission h3,
    .history .about-image .mission-vision .vision h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
        position: relative;
        padding-left: 15px;
    }

        .history .about-image .mission-vision .mission h3:before,
        .history .about-image .mission-vision .vision h3:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 5px;
            height: 20px;
            background-color: var(--accent-color);
            border-radius: 3px;
        }

    .history .about-image .mission-vision .mission p,
    .history .about-image .mission-vision .vision p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

.history .core-values {
    margin-top: 30px;
}

    .history .core-values h3 {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .history .core-values .value-card {
        background-color: var(--surface-color);
        padding: 30px 20px;
        border-radius: 10px;
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

        .history .core-values .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .history .core-values .value-card .value-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            margin-bottom: 20px;
        }

            .history .core-values .value-card .value-icon i {
                font-size: 32px;
                color: var(--accent-color);
            }

        .history .core-values .value-card h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .history .core-values .value-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

.mission {
    transition: transform 0.3s ease-in-out;
}

    div.mission:hover {
        transform: scale(1.05); /* Slightly enlarges the element */
    }



.vision {
    transition: transform 0.3s ease-in-out;
}

    div.vision:hover {
    transform: scale(1.05); /* Slightly enlarges the element */
    }

.School-Photo {
    max-width: 200px;
    margin-bottom:20px;
}


