        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #eee;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background-color: white;
            border: 1px solid #FE9900;
            position: fixed;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        header ul {
            display: flex;
            gap: 20px;
        }

        header li {
            list-style-type: none;
        }

        .mobile-name{
            display: none;
        }

        .btn1 {
            width: 100px;
            height: 30px;
            outline: none;
            background-color: white;
            color: #FE9900;
            border: 1px solid #FE9900;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn2 {
            width: 180px;
            height: 30px;
            outline: none;
            background-color: #FE9900;
            color: #000;
            border: 1px solid #FE9900;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 100px 60px 60px;
            gap: 40px;
            background: linear-gradient(white,white, #FE9900,#FE9900);
            min-height: 100vh;
        }

        .hero-content {
            flex: 1;
            padding-left: 20px;
        }

        .hero-img {
            flex: 1;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('hero.png') ;
            min-height: 80vh;
            width: 99%;
            background-size: cover;
            border-radius: 10px;
        }

        .hero-header {
            margin-bottom: 20px;
            font-size: 3.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            max-width: 500px;
            margin-bottom: 10px;
        }

        .buttons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }

        .btn3 {
            width: 130px;
            height: 40px;
            border: 1px solid #FE9900;
            border-radius: 2px;
            outline: none;
            background-color: #FE9900;
            color: #000;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
             box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .btn4 {
            width: 130px;
            height: 40px;
            border: 1px solid #333;
            border-radius: 2px;
            outline: none;
            background-color: white;
            color: #333;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
             box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .btn1:hover, .btn2:hover, .btn3:hover, .btn4:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .btn2:hover,.btn3:hover{
            background-color: #fe9800bc;
            color: #666;
        }

        .btn4:hover {
            background-color: #f8f8f8;
        }

        .hero-content ul {
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
            gap: 60px;
        }

        .hero-content li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .category {
            padding: 60px 20px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url('hero-image.png');
            background-size: cover;
        }

        .cat-header {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #000;
        }

        .cat-text {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-item {
            background-color: white;
            border-radius: 10px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #FE9900;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .category-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .category-item:hover::before {
            transform: scaleX(1);
        }

        .category-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            background-color: rgba(255, 215, 0, 0.2);
            border-radius: 50%;
            margin-bottom: 15px;
            color: #FE9900;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .category-item:hover .category-icon {
            background-color: #FE9900;
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .category-item h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: white;
        }

        .category-item span {
            color: #FE9900;
            font-size: 0.9rem;
        }

        .reason-section{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10%;
            padding-top: 20px;
        }

        .for-buyer{
            background-color: white;
            padding: 15px;
            height: 330px;
            width: 270px;
            border-radius: 10px;
            line-height: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .for-seller{
            background-color: white;
            padding: 15px;
            height: 330px;
            width: 270px;
            border-radius: 10px;
            line-height: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .shop-btn{
            width:150px;
            height: 35px;
            color: #000;
            outline: none;
            background-color: #FE9900;
            border: 1px solid #FE9900;
            border-radius: 2px;
             box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .seller-btn{
            width:100px;
            height: 35px;
            color: #000;
            outline: none;
            background-color: #FE9900;
            border: 1px solid #FE9900;
            border-radius: 2px;
             box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .get-started-btn{
             width:180px;
            height: 35px;
            color: #000;
            outline: none;
            background-color: #FE9900;
            border: 1px solid #FE9900;
            border-radius: 2px;
             box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .get-div{
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 28px;
            padding-bottom: 29px;
        }

        footer{
            background-color: #FE9900;
            padding-bottom: 20px;
        }

        .footer{
            display: flex;
            gap: 150px;
            flex-wrap: wrap;
            padding: 15px;
            justify-content: center;
            padding-top: 35px;
            background-color: #FE9900;
            margin-bottom: 50px;
        }

        .footer ul {
            list-style-type: none;
            line-height: 1.5;
            color: #666;
        }

        .footer p{
            line-height: 1.5;
            color: #666;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .modal-header h2 {
            color: #333;
            font-size: 1.8rem;
        }

        .close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close:hover {
            color: #333;
        }

        .modal-subtext {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .user-type-toggle {
            display: flex;
            margin-bottom: 20px;
            background-color: #f5f5f5;
            border-radius: 5px;
            overflow: hidden;
        }

        .user-type-btn {
            flex: 1;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            background: transparent;
            font-weight: 500;
        }

        .user-type-btn.active {
            background-color: #FE9900;
            color: white;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-group input:focus {
            border-color: #FE9900;
            outline: none;
        }

        .login-btn {
            width: 100%;
            padding: 12px;
            background-color: #FE9900;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .login-btn:hover {
            background-color: #e68900;
        }

        .modal-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        .modal-footer a {
            color: #FE9900;
            text-decoration: none;
            transition: color 0.3s;
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        .forgot-password {
            text-align: right;
            margin-top: 10px;
        }

        .forgot-password a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .forgot-password a:hover {
            color: #FE9900;
        }

        /* Responsiveness */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 100px 30px 50px;
            }
            
            .hero-content {
                padding-left: 0;
                margin-bottom: 40px;
            }
            
            .hero-content p {
                margin: 0 auto;
            }
            
            .buttons {
                justify-content: center;
            }
            
            .hero-content ul {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-header {
                font-size: 2.5rem;
            }
            
            header ul {
                gap: 10px;
            }
            
            .btn2 {
                width: 120px;
            }
            
            .hero-content ul {
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            header {
                flex-wrap: wrap;
            }
            
            header h1 {
                font-size: 1rem;
            }
            
            .hero-header {
                font-size: 2rem;
            }
            
            .buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }

            .hero-img{
                min-height: 50vh;
                width: 100%;
                margin-top: -45px;
            }

            .btn1, .btn2{
                width: 80px;
            }

            .for-buyer{
                background-color: white;
                padding: 15px;
                height: 330px;
                width: 270px;
                border-radius: 10px;
                line-height: 30px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                margin-bottom: 20px;
            }

            .footer{
                gap: 20px;
                justify-content: space-evenly;
                padding: 5px;
            }

            footer{
                padding-top: 15px;
            }

            .footer div{
                margin-bottom: 20px;
            }
            
            .modal-content {
                width: 95%;
                margin: 10% auto;
                padding: 20px;
            }
        }