* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Logo Centered */
        .logo-container {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height:70px;
                    width:100%;
        }

        .logo-container img {
            width:300PX;
            display: block;
        }
        .navbar {
            background-color: #333;
            height: 30px;
                    width:100%;
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-links {
            display: flex;
        }

        .nav-links ul {
            list-style: none;
            display: flex;
        }

        .nav-links ul li {
            margin: 0 10px;
            position: relative;
        }

        .nav-links ul li a {
            color: white;
            text-decoration: none;
            font-size: 17px;
            padding: 8px 10px;
            display: block;
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 30px;
            left: 0;
            background-color: #444;
            display: none;
            flex-direction: column;
            width: 200px;
            border-radius: 5px;
        }

        .dropdown a {
            padding: 8px 10px;
            color: white;
            text-decoration: none;
            display: block;
        }

        .nav-links ul li:hover .dropdown {
            display: flex;
        }

        /* Mobile Menu Button */
        .menu-button {
            background-color: #444;
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
            font-size: 18px;
            display: none;
            position: absolute;
            right: 10px;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            background-color: #333;
            position: absolute;
            top: 50px;
            right: 10px;
            width: 220px;
            border-radius: 5px;
        }

        .mobile-menu a, .mobile-dropdown a {
            padding: 12px;
            color: white;
            text-decoration: none;
            font-size: 18px;
            display: block;
        }

        .mobile-menu a:hover, .mobile-dropdown a:hover {
            background-color: #555;
        }

        /* Mobile Dropdown */
        .mobile-dropdown {
            display: none;
            flex-direction: column;
            background-color: #444;
        }

        .mobile-dropdown.show {
            display: flex;
        }

        .mobile-dropdown-btn {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            padding: 12px;
            width: 100%;
            text-align: left;
            cursor: pointer;
        }

        .mobile-dropdown-btn:hover {
            background-color: #555;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .menu-button {
                display: block;
            }

            .mobile-menu.show {
                display: flex;
            }
        }
/* Footer Styling */
        footer {
            background-color: #333;
            color: white;
            width:100%;
            padding: 15px;
            text-align: center;
            margin-top: 50px;
            font-size: 12px; /* Decreased text size */
        }

        .footer-info {
            font-size: 11px; /* Smaller text for info */
            margin-bottom: 5px;
        }

        .social-icons {
            margin-top: 5px;
        }

        .social-icons span {
            margin: 0 8px;
            font-size: 12px; /* Smaller icon text */
            display: inline-block;
        }

        .footer-text {
            font-size: 10px; /* Smallest text for copyright */
            margin-top: 5px;
        }

