* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', Arial, sans-serif;
        }

        /* Top bar for contact info */
        .top-bar {
            padding: 20px 6%;
            margin-top: 0px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1rem;
            background: #3c92e8; ;
            font-size: 18px;
            color: #fff;
        }

        .margin {
            background: #fff;
            width: 3px;
            height: 18px;
        }

        .top-bar span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar i {
            color: #fff;
        }

      .header-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 4%;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}
        .logos {
            display: flex;
            align-items: center;
            align-content: center;
            gap: 10px;
        }

        .logos img {
            height: 100px;
            transition: transform 0.3s ease;
        }

        .logos img:hover {
            transform: scale(1.1);
        }

        /* Style for the logo name */
        .logos span {
            font-size: 20px; 
            font-weight: 300; 
            color: #3c92e8; 
           
           
        }

     

        .nav-list ul {
            list-style: none;
            display: flex;
            gap: 10px;
        }

        .nav-list ul li {
            position: relative;
        }

        .nav-list ul li a {
            text-decoration: none;
            color: #3c92e8; 
            font-weight: 300;
            padding: 10px 15px;
            display: block;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .nav-list ul li a:hover {
            background: #f0f0f0;
            border-radius: 5px;
            color: #000;
        }

        .subclasslist {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 150px;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            z-index: 1000;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            transform: translateY(-10px);
        }

        .nav-list ul li:hover .subclasslist {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 12px;
            border:1px solid #3c92e8;
            padding: 12px;
        }

        .hamburger div {
            width: 30px;
            height: 3px;
            background: #3c92e8;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .hamburger.active .bar1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active .bar2 {
            opacity: 0;
        }

        .hamburger.active .bar3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        @media (max-width: 1068px) {
            .hamburger {
                display: flex;
            }

        /* Navbar styling */
        .header-index {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 4%;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
            transition: all 0.3s ease;
        }

            .nav-list {
                position: fixed;
                top: 0px; /* Adjust top position to account for top bar and navbar */
                left: -100%;
                width: 80%; /* Adjust width as needed */
                height: 100vh;
                z-index: 1000;
                background: white;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
            }

            .nav-list.active {
                left: 0; /* Move navbar into view */
            }

            .nav-list ul {
                flex-direction: column;
                gap: 0;
            }

            .nav-list ul li {
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-list ul li a {
                padding: 15px;
            }

            .subclasslist {
                display: none !important;
                background: #f9f9f9;
                box-shadow: none;
                opacity: 1;
                transform: none;
            }

            .nav-list ul li.active .subclasslist {
                display: block !important;
            }

            /* Hide spans in .top-bar on mobile */
           .top-bar {
            padding: 20px 6%;
            margin-top: 0px;
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            background: #3c92e8; ;
            font-size: 18px;
            color: #fff;
        }

            /* Hide the margin div in .top-bar on mobile */
            .top-bar .margin {
                display: none;
            }
        }
        .spans{
            display: flex;
            flex-direction: column;
        }