

        /* About section */
        .about-journey-section {
            background: linear-gradient(135deg, #e0f0ff 0%, #ffffff 100%);
            padding: 60px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            box-shadow: inset 0 0 60px #d0e7ff;
            border-radius: 15px;
            max-width: 900px;
            margin: 50px auto;
        }

        .about-heading {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            color: #004080;
            margin-bottom: 30px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0, 64, 128, 0.3);
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--text-muted);
            text-align: justify;
            letter-spacing: 0.02em;
            font-weight: 500;
            padding: 0 15px;
            word-spacing: 0.1em;
        }
@media (max-width: 768px) {



            .about-journey-section {
                padding: 40px 15px;
                max-width: 100%;
            }

            .about-heading {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .about-text {
                font-size: 1rem;
                line-height: 1.6;
            }
}




        /* vision mission */
        .vision-mission-section {
            padding: 60px 20px;
            background: var(--bg-color);
            color: var(--text-color);
            font-family: 'Segoe UI', sans-serif;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 40px;
            position: relative;
            text-transform: uppercase;
        }

        .section-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1c3b70;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .vision-box,
        .mission-box {
            max-width: 900px;
            margin: 0 auto 40px auto;
            background: var(--card-bg);
            padding: 30px 25px;
            border-radius: 12px;
            box-shadow: var(--card-shadow); border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

        .vision-box:hover,
        .mission-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover);
        }

        .vm-heading {
            font-size: 1.8rem;
            color: #0d47a1;
            margin-bottom: 20px;
            text-align: center;
        }

        .vm-paragraph {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }

        .mission-list {
            padding-left: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .mission-list li {
            margin-bottom: 10px;
            list-style: disc;
        }
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .vision-box, .mission-box {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .vm-heading {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .vm-paragraph, .mission-list {
        font-size: 1rem;
        line-height: 1.6;
    }
}


/* peos */
        .peo-mission-mapping-section {
            padding: 50px 20px;
            background-color: #f0f5ff;
            font-family: 'Segoe UI', sans-serif;
        }

        .mapping-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #0d47a1;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .mapping-heading::after {
            content: '';
            width: 70px;
            height: 4px;
            background: #0d47a1;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .table-responsive {
            overflow-x: auto;
        }

        .mapping-table {
            width: 100%;
            border-collapse: collapse;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .mapping-table thead {
            background-color: #1c3b70;
            color: white;
        }

        .mapping-table th,
        .mapping-table td {
            padding: 15px 20px;
            text-align: center;
            font-size: 1rem;
        }

        .mapping-table tbody tr:nth-child(even) {
            background-color: #f2f6fc;
        }

        .mapping-table td:first-child,
        .mapping-table th:first-child {
            font-weight: bold;
            background: #e3edff;
            color: #003366;
        }

        @media (max-width: 768px) {
            .mapping-heading {
                font-size: 1.6rem;
            }

            .mapping-table th,
            .mapping-table td {
                font-size: 0.9rem;
                padding: 10px;
            }
        }

        /* Copyright */
        .cse-copyright {
            margin: 40px auto;
            text-align: center;
            font-size: 15px;
            color: #1a237e;
            padding: 14px 24px;
            background-color: #e3f2fd;
            border: 1px solid #bbdefb;
            border-radius: 8px;
            max-width: 700px;
            font-family: 'Segoe UI', 'Roboto', sans-serif;
            box-shadow: 0 4px 12px rgba(21, 101, 192, 0.1);
            transition: transform 0.3s ease;
        }

        /* Footer */
        .sticky-footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #0d47a1;
            color: white;
            display: flex;
            justify-content: center;
            z-index: 1000;
            padding: 10px 0;
            box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
        }
    
