        /* :root {
                --primary-color: #5B2C06; 
                --secondary-color: #F2662D; 
                --accent-color: #B9F3F8;
                --text-light: #ffffff; 
                --text-dark: #1A1A1A; 
                --gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
                --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        } */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            padding-top: 80px;
        }

        .navbar {
            background: var(--gradient);
            color: var(--text-light);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
            animation: fadeInDown 0.8s ease-out;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            height: 50px;
            width: 50px;
            border-radius: 50%;
            background-color: var(--text-light);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .logo:hover {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, #ffffff, #e0f7fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .nav-links {
            color: #ffffff !important;
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover {
            color: #ffeb3b;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }

        .btn-login {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
        }

        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .btn-signup {
            background-color: var(--accent-color);
            color: white;
            box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
        }

        .btn-signup:hover {
            background-color: #d81b60;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(233, 30, 99, 0.4);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* Animation for hamburger when active */
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Keyframe animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--gradient);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: left 0.5s ease;
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .hamburger {
                display: flex;
                z-index: 1000;
            }

            .auth-buttons {
                /* display: none; */
            }

            .auth-buttons-mobile {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                margin-top: 2rem;
            }
        }

        @media (min-width: 993px) {
            .auth-buttons-mobile {
                display: none;
            }
        }




















.auth-buttons .btn-login {
  background-color: #005eff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-buttons .btn-login:hover {
  background-color: #0045c7;
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-icon {
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 150px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background-color: #f2f2f2;
}

.dropdown-menu.show {
  display: block;
}
