
        body {
            font-family: "Poppins", sans-serif;
            background-color: #f8f9fa;
        }

        .toastify {
            border-radius: 8px !important;
            font-weight: 500;
            font-family: "Poppins", sans-serif;
         }

        /* === Enhanced Navbar === */
        nav.navbar {
            background: linear-gradient(135deg, #5b6fe3 0%, #8154a2 50%, #f3a6fb 100%);
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
            padding: 1rem 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle animated gradient overlay */
        nav.navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }
        
        .navbar-brand {
            position: relative;
            z-index: 2;
        }
        
        .navbar-brand img {
            height: 42px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-brand span {
            background: linear-gradient(to right, #ffffff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .navbar-nav {
            position: relative;
            z-index: 2;
        }
        
        .navbar-nav .nav-link {
            color: #ffffff !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            margin: 0 0.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        /* Hover effect with background */
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .navbar-nav .nav-link:hover::before {
            transform: translateY(0);
        }
        
        .navbar-nav .nav-link:hover {
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* Active link indicator */
        .navbar-nav .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.5);
            padding: 0.5rem 0.75rem;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.8);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        /* === Enhanced Footer === */
        footer {
            /*background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);*/
            background: linear-gradient(135deg, #5b6fe3 0%, #8154a2 50%, #f3a6fb 100%);
            box-shadow: 0 -4px 20px rgba(102, 126, 234, 0.4);
            font-size: 0.95rem;
            color: #e0e7ff;
            padding: 2.5rem 0 1.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Subtle top accent line */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
        }

        /* Decorative background pattern */
        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        footer .container {
            position: relative;
            z-index: 1;
        }

        footer p {
            margin-bottom: 0.75rem;
        }

        /* Social links section */
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #c7d2fe;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #f093fb);
            transition: transform 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        .footer-links a:hover::before {
            transform: translateX(-50%) scaleX(1);
        }

        /* Tech stack section */
        .footer-tech {
            font-size: 0.9rem;
            color: #a5b4fc;
            line-height: 1.8;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        .footer-tech a {
            color: #c7d2fe;
            text-decoration: none;
            border-bottom: 1px dotted rgba(199, 210, 254, 0.4);
            transition: all 0.2s ease;
        }

        .footer-tech a:hover {
            color: #f093fb;
            border-bottom-color: #f093fb;
        }

        /* Copyright section */
        .footer-copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(199, 210, 254, 0.2);
            font-size: 0.9rem;
            color: #a5b4fc;
        }

        /* Separator dots */
        .separator {
            color: #667eea;
            margin: 0 0.2rem;
        }


        .card:hover {
            transform: translateY(-5px);
            transition: 0.3s ease;
        }

        .card:hover .btn {
            background-color: var(--bs-primary);
            color: #fff;
        }

        /* Smooth fade-in animation for success page */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }