* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
       
    }


    /* Header */
    .header {
       
        color: rgb(56, 97, 173);
        text-align: center;
        padding: 70px 20px;
    }

    .header h1 {
        font-size: 45px;
        margin-bottom: 10px;
        color: #007bff;
    }

    .header span {
        color: #ffe600;
    }

    .header p {
        font-size: 18px;
    }

    /* Main Container */
    .container {
        max-width: 1100px;
        margin: auto;
        padding: 40px 20px;
    }

    /* About Section */
    .about {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
    }

    .about-text {
        flex: 1;
    }

    .about-text h2 {
        font-size: 30px;
        margin-bottom: 15px;
        color:#2d097c;
    }

    .about-text p {
        font-size: 16px;
        color: #555;
    }

    .about-box {
        flex: 1;
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .about-box h3 {
        color: #2d097c;
        margin-bottom: 15px;
    }

    .about-box ul {
        list-style: none;
    }

    .about-box ul li {
        margin-bottom: 10px;   /* gap btw line*/
        font-size: 15px;
    }

    /* Mission Section */
    .mission {
        margin-top: 70px;
        text-align: center;
    }

    .mission h2 {
        font-size: 32px;
        color: #007bff;
        margin-bottom: 40px;
    }

    .mission p {
        max-width: 800px;
        margin: auto;
        color: #555;
    }

    /*card section */
    .guidance {
    margin-top: 80px;
    text-align: center;
    }

    .guidance h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
    }

    .desc {
    max-width: 800px;
    margin: auto;
    color: #555;
    margin-bottom: 60px;
    }

    .cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    }

    .card {
    background: #ffffff;
    padding: 25px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.177);
    }

    .card h3 {
    margin-bottom: 20px;
    color: #333;
    }

    .card p {
    font-size: 17px;
    color: #555;
    }


    
    