/* navbar */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Enhanced Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }

        /* Enhanced Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }

        /* .logo:hover {
            transform: translateY(-2px);
        } */

        .logo-icon {
            /* background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); */
            color: white;
            padding: 10px;
            border-radius: 12px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:none !important;
            transition: all 0.3s ease;
        }

        /* .logo:hover .logo-icon {
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); 
            transform: scale(1.05);
        } */

        .logo-text {
            font-size: 1.375rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0062a1 0%, #0062a1 100%);
            color:#0062a1;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
        }

        /* Desktop Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #2563eb, #1e40af);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #2563eb;
            background: rgba(37, 99, 235, 0.05);
            transform: translateY(-2px);
        }


        .active {
            color: #2563eb;
            background: rgba(37, 99, 235, 0.05);
            transform: translateY(-2px);
        }


        .nav-links a:hover::before,
        .nav-links a.active::before {
            width: 20px;
        }

        /* Enhanced CTA Button */
        .cta-button {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            color: #4b5563;
        }

        .mobile-toggle:hover {
            background: rgba(37, 99, 235, 0.1);
            color: #2563eb;
            transform: scale(1.1);
        }

        /* Hamburger Menu Handle Symbol */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: currentColor;
            margin: 2px 0;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* Hamburger Animation to X */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Enhanced Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu-content {
            padding: 1.5rem;
        }

        .mobile-menu a {
            display: block;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: #2563eb;
            background: rgba(37, 99, 235, 0.08);
            transform: translateX(8px);
        }

        .mobile-menu a:hover::before,
        .mobile-menu a.active::before {
            transform: scaleY(1);
        }

        .mobile-cta {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-cta .cta-button {
            display: block;
            text-align: center;
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links,
            .cta-button {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .container {
                padding: 0 15px;
            }

            .nav {
                padding: 0.75rem 0;
            }

            .logo-text {
                font-size: 1.25rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.125rem;
            }

            .mobile-menu-content {
                padding: 1rem;
            }

            .mobile-menu a {
                padding: 0.875rem 1rem;
            }
        }

        /* Additional animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu.active {
            animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Focus states for accessibility */
        .nav-links a:focus,
        .cta-button:focus,
        .mobile-toggle:focus,
        .mobile-menu a:focus {
            outline: 2px solid #2563eb;
            outline-offset: 2px;
        }

        /* Demo content */
        /* .demo-content {
            padding: 2rem 0;
            text-align: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .demo-content p {
            font-size: 1.125rem;
            color: #6b7280;
        }
     */
/* navbar */



 
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #333;
        }

        .logo-icon {
            /* background: #2563eb; */
            color: white;
            padding: 30px;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: bold;
            /*color: #0161a1; */
            color:#0062a1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #2563eb;
            background: #eff6ff;
        }

        .cta-button {
            background: #2563eb;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #1d4ed8;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem 0;
            border-top: 1px solid #e5e7eb;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        


        




 














