
			 * {
            margin: 0;
            padding: 0;
           
        }


        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #4070F4;
            color: #fff;
			font-weight:700;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            padding: 15px 20px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: background-color 0.3s ease;
        }
		
        .navbar-brand  {
            font-size: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            color:#fff;
			
        }

        .navbar-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
            transition: color 0.3s ease;
        }

        .navbar-toggle:hover {
            color: #555;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .navbar-menu li {
            position: relative;
        }

        .navbar-menu a {
            text-decoration: none;
            color: #fff;
            padding: 12px 20px;
            font-weight: 500;
            transition: color 0.3s ease, background 0.3s ease;
            display: flex;
            align-items: center;
            border-radius: 4px;
        }
			/* Hover menu Blue color */
        .navbar-menu a:hover, .navbar-menu a.active {
            color: #fff;
            background: #007bff;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-width: 180px;
            border-radius: 4px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            transform: translateY(10px);
        }

        .dropdown-content a {
            color: #333;
            padding: 10px 15px;
            transition: background 0.3s ease;
        }

        .dropdown-content a:hover {
            background: #4070F4;
			color:#fff;
			box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        /*Footer Styles*/
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .footer-content p {
            margin: 0;
            font-size: 14px;
            color: #ccc;
        }
       
	/*.futer{ 
			 display: flex; 
             flex-wrap: wrap; 
             justify-content: center; 
             align-items: center; 
			 background-color:#3a3a6d; 
			 width:100%; 
			 margin-top:48px; 
		 } */
        
        /* Media Queries for Responsive Navbar */
        @media (max-width: 768px) {
            .navbar-menu {
                display: flex;
                flex-direction: column;
                background: #08021a;
                position: fixed;
                top: 70px;
                left: -100%; /* Initially hidden off-screen */
                width: 65%;
                height: 100vh;
                transition: left 0.3s ease;
                border-right: 1px solid #444;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
                opacity: 0;
                visibility: hidden;
                overflow-y: auto;
                z-index: 999;
            }

            .navbar-menu.active {
                left: 0; /* Slide in from the left */
                opacity: 1;
                visibility: visible;
            }

            .navbar-toggle {
                display: block;
            }

            .navbar-menu a {
                color: #fff;
                padding: 15px;
                border-bottom: 1px solid #444;
            }

            .navbar-menu a:hover {
                background: #08021a;
				color:#fff;
            }

            .dropdown-content {
                position: static; /* Make dropdown full-width for mobile */
                background: #555;
                box-shadow: none;
                min-width: 30%;
            }

            .close-btn {
                display: block; /* Show the close button on mobile */
                background: transparent;
                border: none;
                font-size: 32px;
                font-weight: 700;
                cursor: pointer;
                padding: 12px;
                position: absolute;
                color: #ff4d4d;
                top: 5px;
                right: 15px;
            }

            .close-btn:hover {
                background-color: #fff;
                border-radius: 50%;
                height: 50px;
                width: 50px;
            }
        }
		/* Hide the close button on larger screens */
        @media (min-width: 769px) {
            .close-btn {
                display: none; 
            }
			
        }