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

        /* Scroll Progress Bar*/
#progress-container {
    position: fixed ;
    top: 1px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 99990;
    /* background: #f3f3f3; */
  }
  
  #progress-bar {
    position: fixed;
    top: 0.3px;
    left: 0;
    width: 0%;
    height: 6px;
    width: 0;
    background: linear-gradient(90deg, rgba(27, 27, 27, 0.762) 0%, rgb(61, 61, 61) 50%, rgba(38, 38, 38, 0.679) 100%);
    box-shadow: 0 0 4px rgba(255, 244, 221, 0.7), 0 0 10px rgba(255, 255, 255, 0.496);
    transition: width 0.09s ease-in-out;
    /* border-radius: 10px; */
  }
  
        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        /* Header Styling */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 15px 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo p {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        .navigation .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .navigation .nav-links li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .navigation .nav-links li a:hover {
            color: #007BFF;
        }

        .utils .nav-links {
            list-style: none;
            display: flex;
            gap: 15px;
        }

        .utils .nav-links li {
            font-size: 18px;
            color: #333;
            cursor: pointer;
            transition: color 0.3s;
        }

        .utils .nav-links li:hover {
            color: #007BFF;
        }

 
    


        /* Footer Styling */
        .footer {
            background-color: #fff;
            padding: 20px 30px;
            text-align: center;
            border-top: 1px solid #ddd;
            position: fixed;
            width: 100%;
            bottom: 0;
        }

     

        @media (max-width: 768px) {
          
         
            .header .menu {
                display: block;
            }
            .navigation .nav-links {
                display: none;
                flex-direction: column;
                gap: 10px;
                background-color: #fff;
                position: absolute;
                top: 60px;
                left: 30px;
                padding: 10px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
                border-radius: 4px;
            }
            .navigation .nav-links.active {
                display: flex;
            }
        }
    