 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            padding-top: 80px; /* Adjust based on navbar height */
            scroll-behavior: smooth; /* Smooth scrolling */
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            color: #333;
			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: 24px;
            font-weight: bold;
            /* text-transform: uppercase; */
            letter-spacing: 1px;
        }

        .navbar-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            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: #333;
            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: #100247;
			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;
		}
        .footer {
            background-color: #000;
            color: white;
			height:50px;
            text-align: center;
            padding: 10px;
			width:100%;
        }
		.my{
			align:left;
			margin-left:50px;
			font-weight:700;
			color:#DE3163;
		}
		.my p a{
			color:#fff;
			text-decoration:none;
		}
        /* 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: 10px;
                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; 
            }
        }
				/* Social Icons Styles */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap:wrap;
            margin-top: 20px;
        }

        .social-icon {
            color: #fff;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #f0f0f0);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, background 0.4s ease, box-shadow 0.3s ease, filter 0.3s ease;
            text-align: center;
            font-size: 28px;
        }

        .social-icon:hover {
            transform: rotate(20deg) scale(1.15);
            background: linear-gradient(45deg, #ff4081, #ffcccb);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            filter: brightness(1.2);
        }

        .social-icon:active {
            transform: scale(0.95);
        }

        .social-icon i {
            pointer-events: none;
        }

        .social-icon:focus {
            outline: none;
        }

		/* other page*/
		.box {
            background: linear-gradient(145deg, #2e2e2e, #1a1a1a);
            width: 800px;
			margin:50px;
            padding: 20px;
            border: 2px solid #4CAF50;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            position: relative;
			top:100px;
            color: white;
            display: flex;
            flex-direction: column;
            overflow: hidden;
			
        }
        .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        .title {
            font-size: 26px;
            font-weight: 600;
            background: #4CAF50;
            padding: 15px;
            color: white;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 12px 12px 0 0;
            margin: -20px -20px 0 -20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .content {
            font-size: 18px;
            color: #ccc;
            padding: 15px;
            background-color: #2a2a2a;
            border-radius: 12px;
            flex: 1;
            overflow-y: auto; /* Allow scrolling */
            box-sizing: border-box;
            line-height: 1.8;
        }
		.btn-container { 
            display: flex;
            /*justify-content: space-between;*/
            margin-top: 15px;
            position: sticky; /* Make the button container stick to the bottom */
            bottom: 10px;
            background: linear-gradient(145deg, #2e2e2e, #1a1a1a); /* Match the background */
            border-radius: 0 0 12px 12px; /* Match the box border radius */
        }
         .btn {
            cursor: pointer;
            color: white;
            background: linear-gradient(145deg, #45a049, #3a8a42);
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 20px;
            transition: background 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
         .btn:hover {
            background: linear-gradient(145deg, #3a8a42, #318038);
            transform: translateY(-3px);
        }
		a{
			text-decoration:none;
			Color:#fff;
		}
        @media (max-width: 768px) { 
            .box {
                width: 90%;
                padding: 15px;
            }
            .title {
                font-size: 22px;
                padding: 10px;
            }
            .content {
                font-size: 16px;
            }
            .copy-btn, .btn {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
		 .p{
			font-size:1.5rem;
		}
		.container{
			width:80%;
			margin-left:50px;
			line-height:2.5;
		}
		.font{
			font-size:20px;
		}