        /* Global Styles */
        :root {
            /* --primary-color: #2a41e8; */
             --primary-color: #3498db;
            --secondary-color: #3d4461;
            --accent-color: #ff5a5f;
            --light-gray: #f8f9fa;
            --dark-gray: #495057;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: var(--light-gray);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            text-decoration: none;
            color: var(--secondary-color);
        }

        ul {
            list-style: none;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
        }

        .btn-primary:hover {
            background-color: #1d2fb8;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo span {
            color: var(--accent-color);
        }

        nav ul {
            display: flex;
            align-items: center;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .auth-buttons {
            display: flex;
            align-items: center;
        }

        .auth-buttons a {
            margin-left: 15px;
        }

        .add-listing-btn {
            background-color: var(--accent-color);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            margin-left: 15px;
        }

        .add-listing-btn:hover {
            background-color: #e04a4f;
        }

        /* Hero Section */
        .hero {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */
            background-size: cover;
            background-position: center;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .stats {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .search-form {
            display: flex;
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            font-size: 16px;
        }

        .search-form input:focus {
            outline: none;
        }

        .search-form .search-input {
            border-right: 1px solid #eee;
        }

        .search-form .location-input {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-form .location-input i {
            position: absolute;
            left: 15px;
            color: var(--secondary-color);
        }

        .search-form .location-input input {
            padding-left: 40px;
        }

        .search-form button {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            padding: 0 25px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .search-form button:hover {
            background-color: #e04a4f;
        }

        /* Categories Section */
        .categories {
            padding: 60px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            /* font-size: 32px;
            color: var(--secondary-color);
            margin-bottom: 15px; */

          
        }
        
        

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
        }

        .category-card {
            background-color: var(--light-gray);
            border-radius: 4px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .category-card i {
            font-size: 30px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .category-card h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .category-card p {
            color: var(--dark-gray);
            font-size: 14px;
        }

        /* Featured Ads Section */
        .featured-ads {
            padding: 60px 0;
            background-color: var(--light-gray);
        }

        .ads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .ad-card {
            background-color: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .ad-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .ad-image {
            height: 180px;
            overflow: hidden;
        }

        .ad-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .ad-card:hover .ad-image img {
            transform: scale(1.05);
        }

        .ad-details {
            padding: 20px;
        }

        .ad-category {
            font-size: 12px;
            color: var(--dark-gray);
            margin-bottom: 5px;
        }

        .ad-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .ad-location {
            display: flex;
            align-items: center;
            color: var(--dark-gray);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .ad-location i {
            margin-right: 5px;
        }

        .ad-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .ad-price {
            font-weight: 600;
            color: var(--primary-color);
        }

        .ad-price .negotiable {
            font-size: 12px;
            color: var(--dark-gray);
            font-weight: normal;
        }

        .ad-views {
            font-size: 12px;
            color: var(--dark-gray);
        }

        /* Popular Locations */
        .popular-locations {
            padding: 60px 0;
            background-color: var(--white);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .location-card {
            background-color: var(--light-gray);
            padding: 20px;
            text-align: center;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .location-card:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .location-card h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .location-card p {
            font-size: 14px;
        }

        /* Latest Ads */
        .latest-ads {
            padding: 60px 0;
            background-color: var(--light-gray);
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-column p {
            margin-bottom: 15px;
            color: #b5b7c0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #b5b7c0;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--white);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
        }

        .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            padding: 0 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        .app-download {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .app-download a {
            display: inline-block;
            background-color: var(--white);
            color: var(--secondary-color);
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b5b7c0;
            font-size: 14px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight:bold ;
        }
        .section-title p {
           font-size: 18px ;
           color: #7f8c8d;
           max-width: 600px;
           margin: 0 auto;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
            }

            nav ul {
                margin: 15px 0;
            }

            .auth-buttons {
                margin-top: 15px;
            }

            .search-form {
                flex-direction: column;
            }

            .search-form input {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #eee;
            }

            .search-form button {
                width: 100%;
                padding: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title h2 {
                font-size: 28px;
            }
         
            
            .section-title p {
                font-size: 16px;
            }
             .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .categories-grid {
               grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 5px 0;
            }

            .auth-buttons {
                flex-direction: column;
                align-items: center;
            }

            .auth-buttons a {
                margin: 5px 0;
            }

            .add-listing-btn {
                margin: 10px 0 0;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 28px;
            }
        }


        



        /* keyword */



        