        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

       html, body {
            background-color: #f8f9faff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #fdfafaff;
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            position: relative;
            margin: 20px 20px 0;
            border-radius: 20px;
            overflow: hidden;
            height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://leo.it.tab.digital/s/wkwNBwJaKRMY8RW/preview') center/cover no-repeat;
        }

      /* Top Bar Styling */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(214, 210, 210, 0.5);
            border: 1px solid #fff;
            padding: 15px 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: absolute;
            top: 20px;
            left: 80px;
            right: 90px;
            border-radius: 20px;
            z-index: 1000;
        }

        .logo a {
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 30px;
            margin-right: 10px;
        }

        .top-nav {
            display: flex;
            gap: 30px;
           
        }

        .top-nav a {
            text-decoration: none;
            color: #fdfafaff;
            font-weight: 500;
            transition: color 0.3s;
        }

        .top-nav a:hover {
            color: #28a745;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #28a745;
        }

        .btn-book {
            background-color: #28a745;
            color: white;
        }

        .btn-login {
            background-color: white;
            color: #28a745;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .hero-content {
            position: absolute;
            top: 150px;
            left: 80px;
            max-width: 700px;
            text-align: left;
            
        }

        .hero-content h1 {
            font-size: 50px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #f5f7faff;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #fcfdfdff;
            
        }

        .rating-box {
            background-color: rgba(214, 210, 210, 0.5);
            border: 1px solid #fff;
            padding: 30px;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 25px;
            backdrop-filter: blur(3px);
            position: absolute;
            right: 90px;
            top: 170px;
            text-align: left;
            z-index: 2;
        }

        .rating-value {
            font-size: 58px;
            font-weight: bold;
            color: #fbfcfdff;
            margin-bottom: 5px;
        }

        .rating-text {
            text-align: left;
            font-size: 14px;
            color: #f4f5f8ff;
            margin-bottom: 10px;
        }

        .stars {
            color: #f59e0b;
            font-size: 20px;
        }

        .explore-button {
            background-color: #28a745;
            color: white;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 3;
            position: relative;
        }

        .explore-button:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        /* Service Navigation */
        .service-nav {
            position: relative;
            background-color: white;
            margin: 30px 100px 0;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            display: flex;
            margin-top: -20px;
            justify-content: space-between;
            align-items: center;
            z-index: 1;
        }

        .service-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-left:70px;
        }

        .service-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 10px 15px;
            border-radius: 10px;
            border: 1px solid #aeaeafff;
            min-width: 80px;
        }
        /* Mobile responsive improvements for service buttons */
        @media (max-width: 768px) {
            .service-nav {
                margin: 25px 15px 25px;
                padding: 15px;
                gap: 15px;
                flex-direction: column;
            }

            .service-buttons {
                gap: 20px !important;
                margin-left: 0 !important;
                justify-content: space-evenly;
                flex-wrap: nowrap;
            }
            
            .service-btn {
                min-width: 70px;
                padding: 8px 12px;
                flex: 0 0 auto;
            }

            .search-container {
                margin-right: 0;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .service-buttons {
                gap: 15px !important;
                padding: 0 10px;
            }
            
            .service-btn {
                min-width: 65px;
                padding: 8px 10px;
            }
            
            .service-btn i {
                font-size: 18px;
            }
            
            .service-btn span {
                font-size: 12px;
            }
        }

        @media (max-width: 400px) {
            .service-buttons {
                gap: 12px !important;
                padding: 0 5px;
            }
            
            .service-btn {
                min-width: 60px;
                padding: 6px 8px;
            }
            
            .service-btn i {
                font-size: 16px;
            }
            
            .service-btn span {
                font-size: 11px;
            }
        }

        .service-btn:hover {
            background-color: #6fe797ff;
        }

        .service-btn i {
            font-size: 22px;
            color: #28a745;
            margin-bottom: 8px;
        }

        .service-btn span {
            font-size: 14px;
            color: #4a5568;
           
        }

                .search-container {
                    display: flex;
                    align-items: center;
                    background: #f8f9fa;
                    border-radius: 10px;
                    padding: 8px 15px;
                    /* Reduced horizontal padding */
                    flex: 0 0 50%;
                    border: 1px solid #acaeb1ff;
                    margin-right: 70px;
                    /* Add these properties to prevent overflow */
                    max-width: 100%;
                    box-sizing: border-box;
                }
        
                .search-container input {
                    flex: 1;
                    border: none;
                    background: transparent;
                    padding: 12px;
                    font-size: 16px;
                    outline: none;
                    /* Prevent input from causing overflow */
                    min-width: 0;
                    width: 100%;
                }
        
                .search-container button {
                    background: #28a745;
                    color: white;
                    border: none;
                    border-radius: 10px;
                    padding: 12px 20px;
                    /* Reduced padding */
                    cursor: pointer;
                    font-weight: 600;
                    transition: background 0.3s;
                    /* Ensure button stays within container */
                    white-space: nowrap;
                    flex-shrink: 0;
                   
                }
        .search-container button:hover {
            background: #218838;
        }

        /* Featured Products */
        .featured-products {
            margin: 50px 100px 0;
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        .featured-products h2 {
            font-size: 32px;
            margin-bottom: 40px;
            font-weight: bold;
        }

        .products-wrapper {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .products-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            transition: transform 0.5s ease;
            padding: 10px;
        }

        .product-card {
            flex: 0 0 calc(33.333% - 20px);
            background-color: #f8f9faff;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #252525ff;
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
            min-width: 300px;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-card img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            margin-bottom: 15px;
            gap:0;
        }

        .product-info h3 {
            text-align: left;
            font-size: 14px;
            margin: 10px 0;
            gap:0;
        }

        .product-info p {
            text-align: left;
            font-size: 12px;
            color: #555;
            margin-bottom: 8px;
             gap:0;
        }

        .product-info .price {
            font-size: 12px;
            font-weight: bold;
            color: #28a745;
            margin: 10px 0;
        }

        .action-btn {
            background-color: #28a745;
            color: white;
            padding: 12px 20px;
            width: 100%;
            font-size: 14px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .action-btn:hover {
            background-color: #218838;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            color: #333;
            margin-top: 20px;
            gap: 20px;
        }

        .pagination-controls {
            display: flex;
            gap: 10px;
        }

        .pagination-controls button {
            background-color: #f1f1f1;
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pagination-controls button:hover {
            background-color: #28a745;
            color: white;
        }

        /* Journey Section */
        .journey-section {
            padding: 50px 60px 0;
            background-color: #f7f7f7;
            margin: 0 35px;
        }

        .journey-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            gap: 40px;
            margin-right: 50px;
            text-align: justify;
        }

        .journey-text {
            flex: 1;
        }

        .journey-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .journey-text p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .journey-btn {
            background-color: #28a745;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .journey-btn:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .journey-image {
            flex: 1;
            text-align: center;
        }

        .journey-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Partners Section */
        .partners-section {
            padding: 50px 60px 0;
            background-color: #f8f9faff;
          
        
        }

        .partners-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
                margin-right: 50px;
                
        }

        .partners-text {
            flex: 1;
            margin-left: 35px;
            text-align: justify;
        }

        .partners-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .partners-text p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .partners-container {
            flex: 1;
              border: 1px solid black;
            padding: 30px;
            border-radius: 10px;
            padding-left: 0px;
        }

        .partners-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .partners-logos img {
            height: 40px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .partners-logos img:hover {
            opacity: 1;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 50px 60px;
            background-color: #f8f9faff;
            text-align: center;
            margin: 0 35px;
            position: relative;
        }

        .testimonials-section h2 {
            font-size: 2.2rem;
            margin-bottom: 40px;
            font-weight: 700;
            color: #333;
        }

        .testimonials-wrapper {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .testimonials-container {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
            padding: 10px;
        }

        .testimonial-card {
            flex: 0 0 calc(28.333% - 0px);
            background-color: #f8f9faff;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid #000;
            text-align: left;
            transition: transform 0.3s ease;
            min-width: 200px;
            [padding]-bottom: 80px;
            gap: 2px !important;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
        }

        .profile-img img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .testimonial-text h3 {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .testimonial-stars {
            font-size: 1rem;
            color: #fbc02d;
            margin-bottom: 10px;
        }

        .rating {
            font-size: 0.9rem;
            color: #999;
            margin-left: 5px;
        }

        .testimonial-text p {
            font-size: 10px;
            line-height: 1.5;
            color: #555;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .testimonial-btn {
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .testimonial-btn:hover {
            background-color: #218838;
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 60px;
            margin-top: 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #28a745;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }

        /* Carousel controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .carousel-btn {
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-btn:hover {
            background-color: #218838;
            transform: scale(1.1);
        }

        /* Animation for auto-scrolling */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-300px * 3 - 30px * 3)); }
        }

        .auto-scroll {
            animation: scroll 20s linear infinite;
        }

        .products-wrapper:hover .auto-scroll,
        .testimonials-wrapper:hover .auto-scroll {
            animation-play-state: paused;
        }

        /* ===== MOBILE RESPONSIVE STYLES ===== */
       
/* ===== MOBILE RESPONSIVE STYLES - RATING BOX ONLY ===== */
@media (max-width: 1200px) {
    .rating-box {
        right: 30px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .rating-box {
        padding: 20px;
        top: 150px;
        right: 30px;
    }
    
    .rating-value {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    /* Rating box - positioned at bottom right for mobile */
    .rating-box {
        position: absolute;
        right: 20px;
        bottom: 50px;
        top: auto;
        left: auto;
        margin: 0;
        padding: 15px 25px;
        width: auto;
        min-width: 140px;
        text-align: center;
    }
    
    .rating-value {
        font-size: 42px;
    }
    
    .stars {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    /* Even smaller rating box on very small screens */
    .rating-box {
        padding: 12px 20px;
        bottom: 40px;
        right: 15px;
        min-width: 120px;
    }
    
    .rating-value {
        font-size: 36px;
    }
    
    .stars {
        font-size: 16px;
    }
    
    .rating-text {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    /* Tiny rating box on very small screens */
    .rating-box {
        padding: 10px 15px;
        bottom: 30px;
        right: 10px;
        min-width: 100px;
    }
    
    .rating-value {
        font-size: 32px;
    }
    
    .rating-text {
        font-size: 11px;
    }
    
    .stars {
        font-size: 14px;
    }
}

        @media (max-width: 1200px) {
            .hero, .service-nav {
                margin-left: 30px;
                margin-right: 30px;
            }
          
            .top-bar {
               margin-right: 20px;
            }
            
            .hero-content {
                left: 40px;
            }
            
          
            .featured-products, .journey-section, .partners-section, .testimonials-section, footer {
                margin-left: 30px;
                margin-right: 30px;
            }
        }

        @media (max-width: 992px) {
            .hero {
                height: 20px;
            }
            
            .top-nav {
                gap: 20px;
            }
            
            .hero-content {
                top: 130px;
                left: 30px;
                max-width: 45%;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
          
            .service-nav {
                flex-direction: column;
                gap: 20px;
                margin: 20px 30px 0;
            }
            
            .search-container {
                width: 100%;
                flex: auto;
                margin-left: 4px !important; 
            }
            .journey-content{
                margin-right: 10px;
            }
            .journey-content, .partners-content {
                flex-direction: column;
            }
            
            .partners-container {
                margin-left: 0;
                margin-top: 30px;
            }
            
            .pagination {
                flex-direction: column;
                gap: 15px;
            }
            .product-card{
                
            }
            .product-card {
                flex: 0 0 calc(50% - 10px);
            }


        }
        /* Media Queries for Responsive Behavior */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 30px 10px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 10px) !important;
        min-width: 200px;
    }
    
    .testimonial-text p {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        gap: 5px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 7px) !important;
        min-width: 220px;
        padding: 12px;
    }
    
    .testimonial-text h3 {
        font-size: 14px;
    }
    
    .testimonial-text p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 20px 5px;
        margin: 0 10px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 5px) !important;
        min-width: 200px;
    }
    
    .profile-img img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text h3 {
        font-size: 12px;
    }
    
    .testimonial-text p {
        font-size: 10px;
    }
}
 /* Mobile responsive styles for screens up to 768px */
@media (max-width: 768px) {
    .hero {
        height: 550px !important; /* Reduced height on mobile */
        background-size: cover !important; /* Ensure the image covers the space */
        background-position: center  !important; /* Keep the background centered */
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* Further adjustments for very small screens (below 576px) */
@media (max-width: 576px) {
    .hero {
        height: 430px !important; /* Further reduce height on very small screens */
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }
}
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .top-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                z-index: 1000;
                gap: 15px;
                border-radius: 0 0 20px 20px;
            }
            
            .top-nav.active {
                display: flex;
            }
            
            .top-nav a {
                color: #333;
                padding: 10px 0;
                border-bottom: 1px solid #eee;
                width: 100%;
                text-align: center;
            }
            
            .top-bar {
                background-color: transparent;
            border: 1px solid #fff;
                flex-wrap: wrap;
                padding: 15px;
                position: relative;
                top: 10px;
                left: 10px;
                right: 10px;
            }
            
            .logo {
                order: 1;
            }
          
            .logo img {
            height: -100px;
           
        }
            .mobile-menu-btn {
                order: 2;
            }
            
            .auth-buttons {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
                display: none;
            }
            
            .auth-buttons.active {
                display: flex;
            }
            
            .hero {
                margin: 10px;
                height: 700px;
            }
            
            .hero-content {
                position: relative;
                top: 100px;
                left: 0;
                max-width: 100%;
                padding: 0 20px;
                text-align: left; /* Keep content aligned left on mobile */
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
          
            .service-nav {
                flex-direction: column;
                margin: -40px 20px;
                padding-right: -10px;
            }
            
            .service-buttons {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                padding-right: -20px;
                margin-left: -20px;
              
            }
            
                        * {
                            margin: 0;
                            padding: 0;
                            box-sizing: border-box;
                            font-family: 'Poppins', sans-serif;
                        }
            
                        html,
                        body {
                            background-color: #f8f9faff;
                            color: #333;
                            line-height: 1.6;
                            overflow-x: hidden;
                        }
            
                        /* Mobile Menu */
                        .mobile-menu-btn {
                            display: none;
                            background: none;
                            border: none;
                            font-size: 24px;
                            color: #fdfafaff;
                            cursor: pointer;
                            z-index: 1001;
                        }
            
                        /* Hero Section */
                        .hero {
                            position: relative;
                            margin: 20px 20px 0;
                            border-radius: 20px;
                            overflow: hidden;
                            height: 600px;
                            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://leo.it.tab.digital/s/wkwNBwJaKRMY8RW/preview') center/cover no-repeat;
                        }
            
                        /* Top Bar Styling */
                        .top-bar {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            background-color: rgba(214, 210, 210, 0.5);
                            border: 1px solid #fff;
                            padding: 15px 30px;
                            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                            position: absolute;
                            top: 20px;
                            left: 80px;
                            right: 90px;
                            border-radius: 20px;
                            z-index: 1000;
                        }
            
                        .logo a {
                            font-size: 16px;
                            font-weight: bold;
                            text-decoration: none;
                            color: #333;
                            display: flex;
                            align-items: center;
                        }
            
                        .logo img {
                            height: 30px;
                            margin-right: 10px;
                        }
            
                        .top-nav {
                            display: flex;
                            gap: 30px;
                        }
            
                        .top-nav a {
                            text-decoration: none;
                            color: #fdfafaff;
                            font-weight: 500;
                            transition: color 0.3s;
                        }
            
                        .top-nav a:hover {
                            color: #28a745;
                        }
            
                        .auth-buttons {
                            display: flex;
                            gap: 15px;
                        }
            
                        .btn {
                            padding: 10px 20px;
                            border-radius: 25px;
                            font-weight: 600;
                            cursor: pointer;
                            transition: all 0.3s;
                            border: 2px solid #28a745;
                        }
            
                        .btn-book {
                            background-color: #28a745;
                            color: white;
                        }
            
                        .btn-login {
                            background-color: white;
                            color: #28a745;
                        }
            
                        .btn:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                        }
            
                        .hero-content {
                            position: absolute;
                            top: 150px;
                            left: 80px;
                            max-width: 700px;
                            text-align: left;
                        }
            
                        .hero-content h1 {
                            font-size: 50px;
                            font-weight: 800;
                            margin-bottom: 20px;
                            line-height: 1.2;
                            color: #f5f7faff;
                        }
            
                        .hero-content p {
                            font-size: 18px;
                            margin-bottom: 30px;
                            color: #fcfdfdff;
                        }
            
                        .rating-box {
                            background-color: rgba(214, 210, 210, 0.5);
                            border: 1px solid #fff;
                            padding: 30px;
                            border-radius: 12px;
                            display: inline-block;
                            margin-bottom: 25px;
                            backdrop-filter: blur(3px);
                            position: absolute;
                            right: 90px;
                            top: 170px;
                            text-align: left;
                            z-index: 2;
                        }
            
                        .rating-value {
                            font-size: 58px;
                            font-weight: bold;
                            color: #fbfcfdff;
                            margin-bottom: 5px;
                        }
            
                        .rating-text {
                            text-align: left;
                            font-size: 14px;
                            color: #f4f5f8ff;
                            margin-bottom: 10px;
                        }
            
                        .stars {
                            color: #f59e0b;
                            font-size: 20px;
                        }
            
                        .explore-button {
                            background-color: #28a745;
                            color: white;
                            padding: 14px 30px;
                            font-size: 16px;
                            font-weight: 600;
                            border: none;
                            border-radius: 25px;
                            cursor: pointer;
                            transition: all 0.3s;
                            z-index: 3;
                            position: relative;
                        }
            
                        .explore-button:hover {
                            background-color: #218838;
                            transform: translateY(-2px);
                            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
                        }
            
                        /* Service Navigation */
                        .service-nav {
                            position: relative;
                            background-color: white;
                            margin: 30px 100px 0;
                            border-radius: 15px;
                            padding: 20px;
                            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                            display: flex;
                            margin-top: -20px;
                            justify-content: space-between;
                            align-items: center;
                            z-index: 1;
                        }
            
                        .service-buttons {
                            display: flex;
                            gap: 15px;
                            flex-wrap: wrap;
                            justify-content: center;
                            margin-left: 70px;
                        }
            
                        .service-btn {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            background: none;
                            border: none;
                            cursor: pointer;
                            transition: all 0.3s;
                            padding: 10px 15px;
                            border-radius: 10px;
                            border: 1px solid #aeaeafff;
                        }
            
                        .service-btn:hover {
                            background-color: #6fe797ff;
                        }
            
                        .service-btn i {
                            font-size: 22px;
                            color: #28a745;
                            margin-bottom: 8px;
                        }
            
                        .service-btn span {
                            font-size: 14px;
                            color: #4a5568;
                        }
            
                        .search-container {
                            display: flex;
                            align-items: center;
                            background: #f8f9fa;
                            border-radius: 10px;
                            padding: 8px 25px;
                            flex: 0 0 50%;
                            border: 1px solid #acaeb1ff;
                            margin-right: 70px;
                        }
            
                        .search-container input {
                            flex: 1;
                            border: none;
                            background: transparent;
                            padding: 12px;
                            font-size: 16px;
                            outline: none;
                        }
            
                        .search-container button {
                            background: #28a745;
                            color: white;
                            border: none;
                            border-radius: 10px;
                            padding: 20px 20px;
                            cursor: pointer;
                            font-weight: 600;
                            transition: background 0.3s;
                        }
            
                        .search-container button:hover {
                            background: #218838;
                        }
            
                        /* Featured Products */
                        .featured-products {
                            margin: 50px 100px 0;
                            text-align: center;
                            overflow: hidden;
                            position: relative;
                        }
            
                        .featured-products h2 {
                            font-size: 32px;
                            margin-bottom: 40px;
                            font-weight: bold;
                        }
            
                        /* Testimonials */
                        .testimonials-section {
                            padding: 50px 60px;
                            background-color: #f8f9faff;
                            text-align: center;
                            margin: 0 35px;
                            position: relative;
                        }
            
                        .testimonials-section h2 {
                            font-size: 2.2rem;
                            margin-bottom: 40px;
                            font-weight: 700;
                            color: #333;
                        }
            
                        .testimonials-wrapper {
                            overflow: hidden;
                            width: 100%;
                            position: relative;
                        }
            
                        .testimonials-container {
                            display: flex;
                            gap: 30px;
                            transition: transform 0.5s ease;
                            padding: 10px;
                        }
            
                        .testimonial-card {
                            flex: 0 0 calc(28.333% - 0px);
                            background-color: #f8f9faff;
                            border-radius: 10px;
                            padding: 15px;
                            border: 1px solid #000;
                            text-align: left;
                            transition: transform 0.3s ease;
                            min-width: 200px;
                            gap: 2px !important;
                        }
            
                        .testimonial-card:hover {
                            transform: translateY(-10px);
                        }
            
                        .profile-img img {
                            width: 50px;
                            height: 50px;
                            border-radius: 50%;
                            margin-bottom: 10px;
                        }
            
                        .testimonial-text h3 {
                            font-size: 12px;
                            font-weight: 600;
                            margin-bottom: 10px;
                        }
            
                        .testimonial-stars {
                            font-size: 1rem;
                            color: #fbc02d;
                            margin-bottom: 10px;
                        }
            
                        .rating {
                            font-size: 0.9rem;
                            color: #999;
                            margin-left: 5px;
                        }
            
                        .testimonial-text p {
                            font-size: 10px;
                            line-height: 1.5;
                            color: #555;
                        }
            
                        .testimonial-controls {
                            display: flex;
                            justify-content: center;
                            gap: 15px;
                            margin-top: 30px;
                        }
            
                        .testimonial-btn {
                            background-color: #28a745;
                            color: white;
                            border: none;
                            border-radius: 50%;
                            width: 40px;
                            height: 40px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            cursor: pointer;
                            transition: all 0.3s;
                        }
            
                        .testimonial-btn:hover {
                            background-color: #218838;
                            transform: scale(1.1);
                        }
            
                        /* Footer */
                        footer {
                            background-color: #333;
                            color: white;
                            padding: 40px 60px;
                            margin-top: 0;
                        }
            
                        .footer-content {
                            display: flex;
                            justify-content: space-between;
                            flex-wrap: wrap;
                        }
            
                        .footer-section {
                            flex: 1;
                            min-width: 200px;
                            margin-bottom: 20px;
                        }
            
                        .footer-section h3 {
                            margin-bottom: 15px;
                            font-size: 18px;
                        }
            
                        .footer-section p,
                        .footer-section a {
                            color: #ccc;
                            margin-bottom: 10px;
                            display: block;
                            text-decoration: none;
                        }
            
                        .footer-section a:hover {
                            color: #28a745;
                        }
            
                        .footer-bottom {
                            text-align: center;
                            margin-top: 20px;
                            padding-top: 20px;
                            border-top: 1px solid #555;
                        }
            
                        /* User Profile Styles */
                        .user-profile-container {
                            position: relative;
                            display: flex;
                            align-items: center;
                            gap: 15px;
                        }
            
                        .user-profile {
                            width: 35px;
                            height: 35px;
                            border-radius: 50%;
                            background-color: #ddd;
                            background-size: cover;
                            background-position: center;
                            cursor: pointer;
                            border: 2px solid #fff;
                            position: relative;
                        }
            
                        .user-info {
                            display: flex;
                            flex-direction: column;
                            align-items: flex-end;
                        }
            
                        .user-name {
                            font-weight: 600;
                            font-size: 12px;
                            color: #fdfafaff;
                        }
            
                        .user-role {
                            font-size: 10px;
                            color: #e8e8e8;
                        }
            
                        .dropdown-menu {
                            position: absolute;
                            top: 50px;
                            right: 0;
                            background-color: white;
                            border-radius: 8px;
                            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                            min-width: 160px;
                            padding: 8px 0;
                            z-index: 1000;
                            display: none;
                        }
            
                        .dropdown-menu.show {
                            display: block;
                        }
            
                        .dropdown-item {
                            padding: 8px 16px;
                            cursor: pointer;
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            color: #333;
                            text-decoration: none;
                            font-size: 14px;
                            transition: background-color 0.2s;
                        }
            
                        .dropdown-item:hover {
                            background-color: #f5f5f5;
                        }
            
                        .dropdown-divider {
                            height: 1px;
                            background-color: #eee;
                            margin: 4px 0;
                        }
            
            
                        /* Featured Products - Horizontal Scroll Layout */
                        .featured-products {
                            margin: 50px 100px 0;
                            text-align: center;
                            overflow: hidden;
                            position: relative;
                        }
            
                        .featured-products h2 {
                            font-size: 32px;
                            margin-bottom: 40px;
                            font-weight: bold;
                            color: #333;
                        }
            
                        .featured-products-wrapper {
                            overflow: hidden;
                            width: 100%;
                            position: relative;
                        }
            
                        .featured-products-container {
                            display: flex;
                            gap: 25px;
                            padding: 20px 10px;
                            overflow-x: auto;
                            scroll-behavior: smooth;
                            scrollbar-width: none;
                            /* Firefox */
                            -ms-overflow-style: none;
                            /* IE and Edge */
                        }
            
                        .featured-products-container::-webkit-scrollbar {
                            display: none;
                            /* Chrome, Safari and Opera */
                        }
            
                        .featured-product-card {
                            flex: 0 0 300px;
                            background: white;
                            border-radius: 15px;
                            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                            overflow: hidden;
                            transition: all 0.3s ease;
                            border: 1px solid #e0e0e0;
                        }
            
                        .featured-product-card:hover {
                            transform: translateY(-5px);
                            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
                        }
            
                        .featured-product-image {
                            width: 100%;
                            height: 180px;
                            overflow: hidden;
                        }
            
                        .featured-product-image img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 0.3s ease;
                        }
            
                        .featured-product-card:hover .featured-product-image img {
                            transform: scale(1.05);
                        }
            
                        .featured-product-info {
                            padding: 20px;
                            text-align: left;
                        }
            
                        .featured-product-info h3 {
                            font-size: 18px;
                            font-weight: 600;
                            margin-bottom: 8px;
                            color: #333;
                            line-height: 1.3;
                        }
            
                        .featured-company {
                            font-size: 14px;
                            color: #666;
                            margin-bottom: 8px;
                            display: flex;
                            align-items: center;
                            gap: 5px;
                        }
            
                        .featured-company i {
                            color: #28a745;
                        }
            
                        .featured-description {
                            font-size: 13px;
                            color: #777;
                            margin-bottom: 12px;
                            line-height: 1.4;
                        }
            
                        .featured-location {
                            font-size: 13px;
                            color: #555;
                            margin-bottom: 12px;
                            display: flex;
                            align-items: center;
                            flex-wrap: wrap;
                            gap: 5px;
                        }
            
                        .featured-location i {
                            color: #dc3545;
                        }
            
                        .featured-delivery-badge {
                            font-size: 11px;
                            padding: 3px 8px;
                            border-radius: 10px;
                            font-weight: 500;
                        }
            
                        .featured-price {
                            font-size: 20px;
                            font-weight: bold;
                            color: #28a745;
                            margin-bottom: 15px;
                        }
            
                        .featured-action-btn {
                            width: 100%;
                            padding: 12px;
                            background: linear-gradient(135deg, #28a745, #20c997);
                            color: white;
                            border: none;
                            border-radius: 8px;
                            font-size: 14px;
                            font-weight: 600;
                            cursor: pointer;
                            transition: all 0.3s ease;
                        }
            
                        .featured-action-btn:hover {
                            background: linear-gradient(135deg, #218838, #1ea085);
                            transform: translateY(-2px);
                        }
            
                        .no-items {
                            text-align: center;
                            color: #666;
                            font-size: 16px;
                            padding: 40px;
                            width: 100%;
                        }
            
                        /* Scroll Controls */
                        .scroll-indicators {
                            display: flex;
                            justify-content: center;
                            gap: 15px;
                            margin-top: 25px;
                        }
            
                        .scroll-btn {
                            width: 45px;
                            height: 45px;
                            border-radius: 50%;
                            background: #28a745;
                            color: white;
                            border: none;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            font-size: 16px;
                        }
            
                        .scroll-btn:hover {
                            background: #218838;
                            transform: scale(1.1);
                        }
            
                        .scroll-btn:disabled {
                            background: #ccc;
                            cursor: not-allowed;
                            transform: none;
                        }
            
                        /* Mobile Responsive */
                        @media (max-width: 1200px) {
                            .featured-products {
                                margin: 50px 30px 0;
                            }
            
                            .featured-product-card {
                                flex: 0 0 280px;
                            }
                        }
            
                        @media (max-width: 768px) {
                            .featured-products {
                                margin: 40px 20px 0;
                            }
            
                            .featured-products h2 {
                                font-size: 28px;
                                margin-bottom: 30px;
                            }
            
                            .featured-product-card {
                                flex: 0 0 260px;
                            }
            
                            .featured-products-container {
                                gap: 20px;
                                padding: 15px 5px;
                            }
            
                            .scroll-btn {
                                width: 40px;
                                height: 40px;
                            }
                        }
            
                        @media (max-width: 480px) {
                            .featured-products {
                                margin: 30px 15px 0;
                            }
            
                            .featured-products h2 {
                                font-size: 24px;
                            }
            
                            .featured-product-card {
                                flex: 0 0 240px;
                            }
            
                            .featured-product-info {
                                padding: 15px;
                            }
            
                            .featured-product-info h3 {
                                font-size: 16px;
                            }
                        }
            
                        /* ===== MOBILE RESPONSIVE STYLES ===== */
                        @media (max-width: 1200px) {
            
                            .hero,
                            .service-nav {
                                margin-left: 30px;
                                margin-right: 30px;
                            }
            
                            .top-bar {
                                margin-right: 20px;
                            }
            
                            .hero-content {
                                left: 40px;
                            }
            
                            .featured-products,
                            .testimonials-section,
                            footer {
                                margin-left: 30px;
                                margin-right: 30px;
                            }
            
                            .rating-box {
                                right: 30px;
                                padding: 20px;
                            }
            
                            .testimonial-card {
                                flex: 0 0 calc(33.333% - 10px);
                            }
                        }
            
                        @media (max-width: 992px) {
                            .hero {
                                height: 20px;
                            }
            
                            .top-nav {
                                gap: 20px;
                            }
            
                            .hero-content {
                                top: 130px;
                                left: 30px;
                                max-width: 45%;
                            }
            
                            .hero-content h1 {
                                font-size: 36px;
                            }
            
                            .service-nav {
                                flex-direction: column;
                                gap: 20px;
                                margin: 20px 30px 0;
                            }
            
                            .search-container {
                                width: 100%;
                                flex: auto;
                                margin-left: 4px !important;
                            }
            
                            .testimonials-section {
                                padding: 30px 10px;
                            }
            
                            .testimonial-card {
                                flex: 0 0 calc(33.333% - 10px) !important;
                                min-width: 200px;
                            }
            
                            .testimonial-text p {
                                font-size: 10px;
                            }
            
                            .rating-box {
                                padding: 20px;
                                top: 150px;
                                right: 30px;
                            }
            
                            .rating-value {
                                font-size: 50px;
                            }
                        }
            
                        @media (max-width: 768px) {
                            .mobile-menu-btn {
                                display: block;
                            }
            
                            .top-nav {
                                display: none;
                                position: absolute;
                                top: 100%;
                                left: 0;
                                right: 0;
                                background-color: white;
                                flex-direction: column;
                                padding: 20px;
                                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                z-index: 1000;
                                gap: 15px;
                                border-radius: 0 0 20px 20px;
                            }
            
                            .top-nav.active {
                                display: flex;
                            }
            
                            .top-nav a {
                                color: #333;
                                padding: 10px 0;
                                border-bottom: 1px solid #eee;
                                width: 100%;
                                text-align: center;
                            }
            
                            .top-bar {
                                background-color: transparent;
                                border: 1px solid #fff;
                                flex-wrap: wrap;
                                padding: 15px;
                                position: relative;
                                top: 10px;
                                left: 10px;
                                right: 10px;
                            }
            
                            .logo {
                                order: 1;
                            }
            
                            .logo img {
                                height: -1000px;
                            }
            
                            .mobile-menu-btn {
                                order: 2;
                            }
            
                            .auth-buttons {
                                order: 3;
                                width: 100%;
                                justify-content: center;
                                margin-top: 15px;
                                display: none;
                            }
            
                            .auth-buttons.active {
                                display: flex;
                            }
            
                            .hero {
                                margin: 10px;
                                height: 550px !important;
                                background-size: cover !important;
                                background-position: center !important;
                            }
            
                            .hero-content {
                                position: relative;
                                top: 100px;
                                left: 0;
                                max-width: 100%;
                                padding: 0 20px;
                                text-align: left;
                            }
            
                            .hero-content h1 {
                                font-size: 32px;
                            }
            
                            .hero-content p {
                                font-size: 16px;
                            }
            
                            .service-nav {
                                flex-direction: column;
                                margin: -40px 20px;
                                padding-right: -10px;
                            }
            
                            .service-buttons {
                                flex-direction: row;
                                flex-wrap: wrap;
                                justify-content: center;
                                padding-right: -20px;
                                margin-left: -20px;
                            }
            
                            @media (max-width: 768px) {
                                .search-container {
                                    flex-direction: row;
                                    padding: 8px 12px;
                                    /* Reduced padding for mobile */
                                    margin-right: 0;
                                    margin-left: 0;
                                    width: 100%;
                                    /* Ensure it doesn't cause overflow on mobile */
                                    margin: 0 10px;
                                }
            
                                .search-container input {
                                    flex: 1;
                                    margin-bottom: 0;
                                    margin-right: 10px;
                                    /* Reduced margin */
                                    padding: 10px;
                                    font-size: 14px;
                                    /* Smaller font for mobile */
                                }
            
                                .search-container button {
                                    width: auto;
                                    margin-left: 0;
                                    /* Remove negative margin */
                                    padding: 10px 15px;
                                    /* Balanced padding */
                                    white-space: nowrap;
                                    border-radius: 8px;
                                    font-size: 14px;
                                    /* Smaller font for mobile */
                                }
                            }
            
                            @media (max-width: 480px) {
                                .search-container {
                                    padding: 6px 10px;
                                    margin: 0 5px;
                                }
            
                                .search-container input {
                                    padding: 8px;
                                    font-size: 13px;
                                    margin-right: 8px;
                                }
            
                                .search-container button {
                                    padding: 8px 12px;
                                    font-size: 13px;
                                }
                            }
            
                            .featured-products,
                            .testimonials-section,
                            footer {
                                margin: 40px 15px 0;
                                padding: 30px 20px;
                            }
            
                            .featured-products h2 {
                                font-size: 28px;
                            }
            
                            .testimonials-section h2 {
                                font-size: 28px;
                            }
            
                            .testimonials-container {
                                gap: 5px;
                            }
            
                            .testimonial-card {
                                flex: 0 0 calc(33.333% - 7px) !important;
                                min-width: 220px;
                                padding: 12px;
                            }
            
                            .testimonial-text h3 {
                                font-size: 14px;
                            }
            
                            .testimonial-text p {
                                font-size: 11px;
                            }
            
                            /* Rating box - positioned at bottom right for mobile */
                            .rating-box {
                                position: absolute;
                                right: 20px;
                                bottom: 50px;
                                top: auto;
                                left: auto;
                                margin: 0;
                                padding: 15px 25px;
                                width: auto;
                                min-width: 140px;
                                text-align: center;
                            }
            
                            .rating-value {
                                font-size: 42px;
                            }
            
                            .stars {
                                font-size: 18px;
                            }
            
                            .rating-text {
                                font-size: 14px;
                            }
            
                            .user-info {
                                display: none;
                            }
            
                            .user-profile {
                                width: 32px;
                                height: 32px;
                            }
                        }
            
                        @media (max-width: 576px) {
                            .hero {
                                height: 430px !important;
                            }
            
                            .top-bar {
                                padding: 10px;
                                margin-right: 20px;
                            }
            
                            .auth-buttons {
                                flex-direction: column;
                                gap: 10px;
                            }
            
                            .btn {
                                width: 100%;
                                text-align: center;
                            }
            
                            .hero-content {
                                top: 60px;
                                text-align: left;
                            }
            
                            .hero-content h1 {
                                font-size: 28px;
                            }
            
                            .hero-content p {
                                font-size: 14px;
                            }
            
                            .service-btn {
                                padding: 8px;
                            }
            
                            .service-btn i {
                                font-size: 18px;
                            }
            
                            .service-btn span {
                                font-size: 12px;
                            }
            
                            .featured-products h2 {
                                font-size: 24px;
                            }
            
                            .testimonials-section {
                                padding: 20px 5px;
                                margin: 0 10px;
                            }
            
                            .testimonials-section h2 {
                                font-size: 24px;
                            }
            
                            .testimonial-card {
                                flex: 0 0 calc(33.333% - 5px) !important;
                                min-width: 200px;
                            }
            
                            .profile-img img {
                                width: 40px;
                                height: 40px;
                            }
            
                            .testimonial-text h3 {
                                font-size: 12px;
                            }
            
                            .testimonial-text p {
                                font-size: 10px;
                            }
            
                            .carousel-btn,
                            .testimonial-btn {
                                width: 35px;
                                height: 35px;
                            }
            
                            .footer-content {
                                flex-direction: column;
                            }
            
                            /* Even smaller rating box on very small screens */
                            .rating-box {
                                padding: 12px 20px;
                                bottom: 40px;
                                right: 15px;
                                min-width: 120px;
                            }
            
                            .rating-value {
                                font-size: 36px;
                            }
            
                            .stars {
                                font-size: 16px;
                            }
            
                            .rating-text {
                                font-size: 12px;
                            }
                        }
            
                        @media (max-width: 400px) {
                            .hero {
                                height: 800px;
                            }
            
                            .logo a {
                                font-size: 16px;
                            }
            
                            .hero-content h1 {
                                font-size: 24px;
                            }
            
                            .explore-button {
                                padding: 12px 20px;
                                font-size: 14px;
                            }
            
                            /* Service button styles now handled by improved responsive rules above */
            
                            .featured-products,
                            .testimonials-section,
                            footer {
                                padding: 30px 15px;
                            }
            
                            /* Tiny rating box on very small screens */
                            .rating-box {
                                padding: 10px 15px;
                                bottom: 30px;
                                right: 10px;
                                min-width: 100px;
                            }
            
                            .rating-value {
                                font-size: 32px;
                            }
            
                            .rating-text {
                                font-size: 11px;
                            }
            
                            .stars {
                                font-size: 14px;
                            }
                        }
            
                        @media (max-width: 768px) {
                            #search-button {
                                margin-left: -0px;
                            }
                        }
            
            .featured-products, .journey-section, .partners-section, .testimonials-section, footer {
                margin: 40px 15px 0;
                padding: 30px 20px;
            }
            
            .featured-products h2 {
                font-size: 28px;
            }
            
            .journey-content {
                flex-direction: column;
            }
            
            .journey-text, .journey-image {
                width: 100%;
                height: -10%;
            }
             /* ===== MOBILE RESPONSIVE STYLES ===== */
        @media (max-width: 768px) {
            /* Hide rating box on mobile */
            .rating-box {
                display: none !important;
            }
            
            /* Reduce journey image height on mobile */
            .journey-image img {
                max-height: 250px !important;
                width: auto !important;
                object-fit: cover !important;
            }
            
            /* Adjust journey section spacing */
            .journey-section {
                padding: 30px 20px 0 !important;
            }
            
            /* Adjust journey content layout */
            .journey-content {
                flex-direction: column-reverse !important;
                gap: 20px !important;
                margin-right: 0 !important;
            }
            
            /* Make journey text full width */
            .journey-text {
                width: 100% !important;
            }
        }

        @media (max-width: 576px) {
            /* Further reduce journey image height on very small screens */
            .journey-image img {
                max-height: 200px !important;
            }
        }
            
            .testimonials-section h2 {
                font-size: 28px;
            }
            
            .pagination {
                flex-direction: column;
                gap: 15px;
            }

            .product-card, .testimonial-card {
                flex: 0 0 calc(100% / 3 - 20px);
                min-width: 300px;
            }
           
            /* Smaller product cards on mobile */
            .product-card {
                min-width: 220px;
                padding: 15px;
                margin: 0 5px;
            }
            
            .product-card img {
                height: 80px;
                margin-bottom: 10px;
            }
            
            .product-info h3 {
                font-size: 13px;
                margin: 8px 0;
            }
            
            .product-info p {
                font-size: 11px;
                margin-bottom: 6px;
            }
            
            .product-info .price {
                font-size: 11px;
            }
            
            .action-btn {
                padding: 8px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 750px;
            }
            
            .top-bar {
                padding: 10px;
                margin-right: 20px;
            }
            
            .auth-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .hero-content {
                top: 60px;
                text-align: left; /* Keep content aligned left on mobile */
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
         
            
            .service-btn {
                padding: 8px;
            }
            
            .service-btn i {
                font-size: 18px;
            }
            
            .service-btn span {
                font-size: 12px;
            }
            
            .featured-products h2 {
                font-size: 24px;
            }
            
            .product-card, .testimonial-card {
                flex: 0 0 calc(100% / 2 - 15px);
                padding: 15px;
                min-width: 200px;
            }
            
            .action-btn {
                padding: 10px;
            }
            
            .journey-text h2 {
                font-size: 24px;
            }
          
            
            .partners-text h3 {
                font-size: 22px;
             
            }
            
            .partners-logos img {
                height: 30px;
            }
            
            .testimonials-section h2 {
                font-size: 24px;
            }

            .carousel-btn, .testimonial-btn {
                width: 35px;
                height: 35px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            /* Further adjustments for smaller screens */
            .product-card {
                min-width: 200px;
                padding: 12px;
            }
        }

        @media (max-width: 400px) {
            .hero {
                height: 800px;
            }
            
            .logo a {
                font-size: 16px;
            }
            
            .hero-content h1 {
                font-size: 24px;
            }
            
            .explore-button {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            /* Service button styles now handled by improved responsive rules above */
            
            .featured-products, .journey-section, .partners-section, .testimonials-section, footer {
                padding: 30px 15px;
            }
            
            .product-card, .testimonial-card {
                flex: 0 0 100%;
            }
            
       
            
            .product-card {
                min-width: 180px;
                padding: 10px;
            }
            
            .product-card img {
                height: 70px;
            }
        }

        /* Fix for partner-text margin on mobile */
        @media (max-width: 768px) {
            .partners-text {
                margin-left: 0 !important;
                margin-right: 10px;
                text-align: justify !important;
            }
            
            .partners-content {
                margin-right: 0 !important;
            }
            
            .partners-section {
                padding: 30px 15px !important;
                margin: 0 15px !important;
            }
        }

        @media (max-width: 576px) {
            .partners-text {
                padding: 0 10px;
            }
            
            .partners-container {
                margin-top: 20px !important;
            }
        }

        @media (max-width: 768px) {
    #search-button {
        margin-left: -0px;  /* Adjust the value as needed */
    }
}

