/* Global Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-8px);
}

.card h2 {
    color: var(--mycolor);
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

.card h3 {
    color: var(--mycolor);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    /* line-height: 1.8; */
}

.card ul {
    list-style: none;
}

.card ul li {

    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.card ul li:before {
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.mission-vision {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.mission,
.vision {
    flex: 1;
}

.mission h3,
.vision h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--mycolor);
}

.mission p,
.vision p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    .about-text{
        text-align: justify;
    }

    .card {
        padding: 30px;
    }

    .card h2 {
        font-size: 2rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 1rem;
    }

    .mission-vision {
        flex-direction: column;
    }

    .mission,
    .vision {
        flex: none;
        margin-bottom: 30px;
    }

    .card ul li {
        font-size: 1rem;
        padding: 10px 0;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }
    .about-text{
        text-align: justify;
    }

    .card {
        padding: 20px;
        border-radius: 10px;
    }

    .card h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .mission h3,
    .vision h3 {
        font-size: 1.3rem;
    }

    .card ul li {
        font-size: 0.95rem;
    }
    
}
