  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF4B2B;
            --secondary: #FF416C;
            --accent: #FFD700;
            --dark: #1a1a2e;
            --darker: #16213e;
            --light: #f8f9fa;
            --gray: #a0a0a0;
            --card-bg: #ffffff;
            --gradient-1: linear-gradient(135deg, #fd6314, #fe5a2c);
            --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
            --shadow-xl: 0 30px 80px rgba(0,0,0,0.2);
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #fefefe;
            overflow-x: hidden;
            color: var(--dark);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 10px;
        }

        /* Animated Background Shapes */
        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: floatShape 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 500px;
            height: 500px;
            background: #FF416C;
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 400px;
            height: 400px;
            background: #667eea;
            bottom: -150px;
            left: -100px;
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            width: 300px;
            height: 300px;
            background: #f5576c;
            top: 50%;
            left: 50%;
            animation-delay: -10s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(100px, -100px) scale(1.1); }
            50% { transform: translate(-50px, -200px) scale(0.9); }
            75% { transform: translate(-100px, 50px) scale(1.05); }
        }

        /* Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;            
            padding: 0.2rem 5%;
            background: rgb(255 255 255);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transform: rotate(-10deg);
            transition: transform 0.3s;
        }

        .logo:hover .logo-icon {
            transform: rotate(0deg) scale(1.1);
        }

        .logoimgsec{
            width: 170px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: color 0.3s;    font-size: 18px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 10px 30px rgba(255,75,43,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,75,43,0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #FF4B2B;
            color: #FF4B2B;
        }

        .btn-outline:hover {
            background: var(--gradient-1);
            color: white !important;
            border-color: transparent;
            transform: translateY(-3px);
        }

        .btn-light {
            background: white;
            color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            /*background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../img/banner.jfif) center / cover; */
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* padding: 4rem 5%; */
            /* min-height: 85vh; */
            position: relative;
        }

        .hero-content {
            flex: 1;
            padding-left: 5rem;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,75,43,0.1);
            color: var(--primary);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1a1a2e 0%, #FF416C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content h1 .highlight {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .hero-visual {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 3D Rotating Car */
        .car-3d-container {
            perspective: 1000px;
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .car-3d {
            width: 400px;
            height: 250px;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate3D 15s infinite linear;
        }

        @keyframes rotate3D {
            0% { transform: rotateY(0deg) rotateX(5deg); }
            50% { transform: rotateY(180deg) rotateX(-5deg); }
            100% { transform: rotateY(360deg) rotateX(5deg); }
        }

        .car-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,75,43,0.3) 0%, transparent 70%);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            0% { opacity: 0.5; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        /* Trusted Brands */
        .trusted-brands {
            padding: 3rem 5%;
            background: white;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .brands-scroll {
            display: flex;
            gap: 4rem;
            align-items: center;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
        }

        .brand-item {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ccc;
            transition: color 0.3s;
            cursor: pointer;
        }

        .brand-item:hover {
            color: var(--primary);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Search Section */
        .search-section {
            padding: 0 5%;
            margin-top: -4rem;
            position: relative;
            z-index: 10;
        }

        .search-box {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .search-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .search-tab {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            background: #f0f0f0;
        }

        .search-tab.active {
            background: var(--gradient-1);
            color: white;
        }

        .search-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            align-items: end;
        }

        .search-field {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .search-field label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .search-field input,
        .search-field select {
            padding: 1rem 1.2rem;
            border: 2px solid #e8e8e8;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #fafafa;
        }

        .search-field input:focus,
        .search-field select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(255,75,43,0.1);
            background: white;
        }

        /* How It Works */
        .how-it-works {
            padding: 6rem 5%;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header .subtitle {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--gradient-1);
            z-index: 0;
            border-radius: 10px;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            transition: transform 0.3s;
        }

        .step-card:hover {
            transform: translateY(-10px);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            font-weight: 800;
            box-shadow: 0 10px 30px rgba(255,75,43,0.3);
        }

        .step-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Featured Cars */
        .cars-section {
            padding: 6rem 5%;
            background: #fafafa;
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
        }

        .car-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .car-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }

        .car-card.featured {
            border: 2px solid var(--accent);
        }

        .car-card.featured::before {
            content: 'ðŸ”¥ HOT DEAL';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-1);
            color: white;
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 2;
        }

        .car-image-wrapper {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .car-image-wrapper img {
            transition: transform 0.5s;
            max-width: 85%;
        }

        .car-card:hover .car-image-wrapper img {
            transform: scale(1.1) rotate(-5deg);
        }

        .car-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            display: flex;
            gap: 0.5rem;
        }

        .badge {
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .badge-new {
            background: #4facfe;
            color: white;
        }

        .badge-hot {
            background: #FF416C;
            color: white;
        }

        .car-details {
            padding: 2rem;
        }

        .car-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }

        .car-title h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .car-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--accent);
        }

        .car-specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .spec-item i {
            color: var(--primary);
            font-size: 1.1rem;
            width: 20px;
        }

        .car-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #f0f0f0;
        }

        .price-tag {
            display: flex;
            flex-direction: column;
        }

        .price-amount {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        .price-period {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* Categories */
        .categories {
            padding: 4rem 5%;
            background: white;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .category-card {
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
            background: #fafafa;
        }

        .category-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-card h3 {
            font-weight: 700;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 5%;
            background: var(--darker);
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.1);
        }

        .testimonial-stars {
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            background: var(--gradient-1);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            animation: particleFloat 10s infinite;
        }

        @keyframes particleFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-100px) rotate(180deg); }
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            border-radius: 50px;
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .newsletter-form input::placeholder {
            color: #a0a0a0;
        }

        .newsletter-form button {
            padding: 0.8rem 1.5rem;
            background: var(--gradient-1);
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--gradient-1);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a0a0a0;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: modalSlide 0.3s ease;
        }

        @keyframes modalSlide {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--gray);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }
            .hero-content {
                padding-right: 0;
                  
                margin-bottom: 3rem;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .search-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid::before {
                display: none;
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero-content h1 {
                font-size: 2.0rem;
            }
            .search-grid {
                grid-template-columns: 1fr;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media only screen and (max-width: 680px) {
            .trusted-brands{
                display:none;
            }
            .hero-content{
                    padding-left: 0rem;      margin-top: 45px;
            }
        }