
        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a {
            color: #fff;
            text-decoration: none;
        }

        .navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 9%;
    background: url(img/website1.webp);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo{
    font-size: 2rem;
    font-weight: 700
    ;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    list-style: none;
    margin-left: 35px;
}

.navbar ul li a {
    font-size:  20px;
    font-weight: 500;
    transition: .5s;
}

.navbar ul li:hover a ,
.navbar ul li.active a{
    color: #7cf03d;
}
.home {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 60px 9% 0;
    color: #fff;
}



        /* Body styling */
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            color: #333;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.6;
        }

        /* Section container */
        .education-container {
            max-width: 800px;
            width: 100%;
            margin-top: 20px;
        }

        /* Section styling */
        section {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Title and headings */
        h1, h2 {
            color: #333;
            margin-bottom: 10px;
            text-align: center;
        }

        h2 {
            color: #0056b3;
            margin-bottom: 15px;
        }

        p {
            color: #555;
            text-align: justify;
            
        }
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: gray;
            color: #fff;
            text-align: center;
            padding: 10px;
            font-size: 14px;
            font-weight: 500;
        }
    
   