:root {
    --primary-color: #2c5f8b;
    --secondary-color: #f8a055;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-color: #2c3e50;

    --about_primary: #2563eb;
    /* Trust blue */
    --about_secondary: #ea580c;
    /* Energy orange */
    --about_accent: #4d7c0f;
    /* Growth green */
    --about_dark: #1e293b;
    /* Dark text */
    --about_light-bg: #f8fafc;
    /* Light background */
    --about_card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);


    --quote-font: "Georgia", serif;
    --quote-font-size: clamp(24px, 3vw, 26px);
    --quote-line-height: 1.5;
    --quote-padding: 1vw;
    --quote-border-width: 8px;
    --quote-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    --quote-letter-spacing: 1px;      
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    color: #444;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* Animated Underline */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

/* Floating Cards with Shadow */
.mission-card,
.vision-card,
.value-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.mission-card:hover::before,
.vision-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.mission-card:hover,
.vision-card:hover,
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Founder Image with Border Animation */
.founder-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.founder-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.founder-img-container:hover .founder-img {
    transform: scale(1.05);
}

.founder-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.5s ease;
}

.founder-img-container:hover::after {
    opacity: 1;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}



/* Responsive Adjustments */
@media (max-width: 768px) {

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .founder-img-container {
        margin-bottom: 30px;
    }
}






/* New section css */


.founder-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.founder-quote:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
}



/* Css for what we do */


h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section {
    /* margin-bottom: 4rem; */
    background: white;
    border-radius: 12px;
    /* padding: 3rem; */
    box-shadow: var(--card-shadow);
}


.stats-container {
    display: flex;
    justify-content: space-around;
    /* background: var(--primary); */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.stat-items {
    padding: 0 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #555;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .education-approach {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }
}


.highlight {
    color: var(--primary);
    font-weight: 600;
}


/* Default Quote Block */
.inspiring-quote {
    font-family: var(--quote-font);
    font-size: var(--quote-font-size);
    line-height: var(--quote-line-height);
    /* max-width: 800px; */
    margin: 20px auto;
    padding: var(--quote-padding);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.2s ease-in-out forwards;
    transition: all 0.5s ease-in-out;
}

.inspiring-quote p::before,
.inspiring-quote p::after {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: bold;
    position: absolute;
}

.inspiring-quote p::before {
    content: "“";
    left: -10px;
    top: -30px;
}

.inspiring-quote p::after {
    content: "”";
    right: -10px;
    bottom: -30px;
}

.inspiring-quote p {
    margin: 0;
    padding: 2vw;
    display: inline-block;
    position: relative;
    font-style: italic;
    font-weight: 400;
    max-width: 90%;
    text-align: center;
}

.inspiring-quote cite {
    display: block;
    /* font-size: clamp(18px, 2vw, 24px); */
    font-weight: bold;
    margin-top: 1vw;
    text-transform: uppercase;
    letter-spacing: var(--quote-letter-spacing);
    font-style: normal;
}

@media (max-width: 768px) {
    :root {
        --quote-padding: 6vw;
    }

    .inspiring-quote {
        padding: var(--quote-padding);
    }

    .inspiring-quote p {
        font-size: clamp(20px, 4vw, 30px);
    }

    .inspiring-quote p::before,
    .inspiring-quote p::after {
        font-size: clamp(50px, 6vw, 70px);
    }

    .inspiring-quote cite {
        font-size: clamp(16px, 1.8vw, 22px);
    }
}


/* Themes */

.patriotic-theme {
    color: #43426B;
    /* Deep Navy Blue for text */
    background: #FAF8F1;
    /* A soft vintage off-white */
    border-left: var(--quote-border-width) solid #43426B;
    /* Retro Red border */
    box-shadow: var(--quote-shadow);
}

/* Make the quotes Retro Red */
.patriotic-theme p::before,
.patriotic-theme p::after {
    color: #B3495D;
    /* Vintage Red */
}
