 /* --- General Reset & Fonts --- */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }
        body { background: #fdfdfd; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; margin: 0; padding: 0; }

        /* --- Top Bar --- */
        .top-bar { background: #fff; border-bottom: 1px solid #eee; padding: 10px 0; font-size: 13px; color: #666; }
        .promo span { color: #e74c3c; font-weight: bold; }
        .top-links select { border: none; background: transparent; cursor: pointer; color: #666; outline: none; }

        /* --- Main Branding Bar --- */
        .main-bar { background: #fff; padding: 15px 0; border-bottom: 1px solid #f1f1f1; }
        .logo-text { font-size: 28px; font-weight: 800; color: #1a1a1a; letter-spacing: -1px; }
        .logo-text span { color: #f07e02; }

        .search-box { position: relative; max-width: 400px; width: 100%; margin: 0 20px; }
        .search-box input { width: 100%; padding: 10px 20px; border-radius: 30px; border: 1px solid #ddd; background: #f9f9f9; outline: none; }
        .search-box i { position: absolute; right: 15px; top: 12px; color: #999; }

        /* --- Social Icons Styling --- */
        .social-icons { display: flex; align-items: center; gap: 15px; }
        .social-link { 
            font-size: 18px; 
            color: #555; 
            transition: transform 0.2s, color 0.2s; 
        }
        .social-link:hover { transform: translateY(-3px); }
        
        /* Brand Specific Colors on Hover */
        .fa-facebook-f:hover { color: #1877F2; }
        .fa-instagram:hover { color: #E4405F; }
        .fa-youtube:hover { color: #FF0000; }
        .fa-linkedin-in:hover { color: #0A66C2; }
        .fa-x-twitter:hover { color: #000000; }

        /* --- Navigation Core --- */
        .nav-bar { background: #fff; position: relative; box-shadow: 0 2px 5px rgba(0,0,0,0.05); z-index: 1000; }
        .nav-list { display: flex; justify-content: center; align-items: center; }
        .nav-item { position: relative; }
        .nav-item.has-mega { position: static; }
        
        .nav-link { display: block; padding: 15px 20px; font-weight: 500; color: #333; font-size: 15px; }
        .nav-link:hover, .active-link { color: #f07e02 !important; }
        .nav-link i { font-size: 10px; margin-left: 5px; }

        /* --- Dropdowns --- */
        .dropdown-menu-custom, .mega-menu {
            position: absolute; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            visibility: hidden; opacity: 0; transform: translateY(10px); transition: 0.3s ease;
            border-top: 2px solid #f07e02;
        }
        .nav-item:hover .dropdown-menu-custom, .nav-item:hover .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); }

        .dropdown-menu-custom { top: 100%; left: 0; min-width: 220px; padding: 10px 0; }
        .dropdown-menu-custom li a { display: block; padding: 10px 20px; font-size: 14px; color: #555; border-bottom: 1px solid #f9f9f9; }
        .dropdown-menu-custom li a:hover { background: #fff8f4; color: #f07e02; padding-left: 25px; }

        /* --- Mega Menu --- */
        .mega-menu { top: 100%; left: 0; width: 100%; padding: 40px 0; }
        .mega-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 20px; max-width: 1300px; margin: 0 auto; padding: 0 20px; }
        .mega-col h3 { font-size: 15px; font-weight: 700; margin-bottom: 15px; color: #222; text-transform: uppercase; }
        .mega-col li a { font-size: 13px; color: #666; display: block; padding: 4px 0; }
        .mega-col li a:hover { color: #f07e02; }

        /* --- Mobile Styles --- */
        .mobile-toggle { display: none; font-size: 22px; cursor: pointer; margin-left: 15px; }

        @media (max-width: 992px) {
            .top-bar, .search-box, .contact { display: none; }
            .mobile-toggle { display: block; }
            .nav-bar { display: none; position: absolute; width: 100%; top: 100%; background: #fff; }
            .nav-bar.show { display: block; }
            .nav-list { flex-direction: column; align-items: flex-start; }
            .nav-item { width: 100%; }
            .dropdown-menu-custom, .mega-menu { position: static; visibility: visible; opacity: 1; display: none; transform: none; box-shadow: none; border: none; background: #fdfdfd; }
            .nav-item:hover .dropdown-menu-custom, .nav-item:hover .mega-menu { display: block; }
            .mega-grid { grid-template-columns: 1fr 1fr; }
        }







         /* --- Slider CSS --- */
    .hero-slider {
        position: relative;
        overflow: hidden;
    }

    .slide-image {
        height: 80vh; /* Adjust height as needed */
        min-height: 500px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .slide-content {
        max-width: 600px;
        text-align: left;
    }

    /* Animations */
    .carousel-item.active .heading { animation: fadeInUp 0.8s both 0.3s; }
    .carousel-item.active .subheading { animation: fadeInUp 0.8s both 0.1s; }
    .carousel-item.active .description { animation: fadeInUp 0.8s both 0.5s; }
    .carousel-item.active .slide-btns { animation: fadeInUp 0.8s both 0.7s; }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .subheading {
        color: #f07e02; /* Geeken Orange */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: block;
    }

    .heading {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .heading span {
        color: #fff;
        font-weight: 300;
    }

    .description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    /* Buttons */
    .btn-primary-geeken {
        background: #f07e02 !important;
        color: white !important;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        border: none;
    }

    .btn-primary-geeken:hover {
        background: #a04000 !important;
        color: white !important;
    }

    /* Indicators & Controls */
    .carousel-indicators [button] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
    }

    .carousel-control-prev, .carousel-control-next {
        width: 5%;
        opacity: 0;
        transition: 0.3s;
    }

    .hero-slider:hover .carousel-control-prev, 
    .hero-slider:hover .carousel-control-next {
        opacity: 1;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .heading { font-size: 2.2rem; }
        .slide-image { height: 60vh; }
        .slide-content { text-align: center; margin: 0 auto; }
    }

















     .top-categories-minimal { background: #fff; width: 100%; overflow: hidden; }
    .category-slider-minimal { margin: 0 -15px; opacity: 0; transition: opacity 0.5s; }
    /* Prevent layout shift - show when slick is initialized */
    .category-slider-minimal.slick-initialized { opacity: 1; }

    .category-slide { padding: 10px 15px; outline: none; }
    .minimal-cat-card {
        display: block;
        text-align: center;
        text-decoration: none;
        color: #333;
    }
    .minimal-img-box {
        width: 100%;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        background: #f8f8f8; /* Changed to light gray to see it better in UI */
        border-radius: 8px;
    }
    .minimal-img-box img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    .minimal-cat-card h6 {
        font-weight: 600;
        font-size: 14px;
        margin: 0;
        color: #222;
    }
    .minimal-cat-card:hover img { transform: scale(1.1); }
    /* Slick Arrow Styling */
    .slick-prev:before, .slick-next:before { color: #f07e02 !important; }









.offer-card {
        position: relative;
        height: 280px; /* Uniform height for all cards */
        border-radius: 12px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        padding: 30px;
    }

    /* Darkening overlay for text readability */
    .offer-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .offer-overlay {
        position: relative;
        z-index: 2;
    }

    .offer-card:hover {
        transform: translateY(-5px);
    }

    .offer-tag {
        display: inline-block;
        padding: 4px 15px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 15px;
        font-weight: 600;
        backdrop-filter: blur(4px);
    }

    .offer-title {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .offer-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .btn-link {
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    /* Mobile optimization */
    @media (max-width: 768px) {
        .offer-card {
            height: 220px;
        }
        .offer-title {
            font-size: 1.4rem;
        }
    }










    :root {
        --accent: #f07e02;
        --glass: rgba(255, 255, 255, 0.7);
    }

    .ls-2 { letter-spacing: 2px; }

    /* Futuristic Card Design */
    .product-item { padding: 15px; }
    
    .futuristic-card {
        background: #fff;
        border-radius: 24px;
        padding: 12px;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border: 1px solid #f0f0f0;
        position: relative;
    }

    .image-box {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 1/1.2;
        background: #f8f9fa;
    }

    .image-box img {
        width: 100%; height: 100%; object-fit: fill;
        transition: transform 0.8s ease;
    }

    /* Glass Badge */
    .badge-glass {
        position: absolute; top: 15px; left: 15px; z-index: 5;
        padding: 6px 14px; background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,0.3);
        border-radius: 30px; font-size: 11px; font-weight: 700;
    }

    /* Hover Glass Actions */
    .hover-glass-actions {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.1); backdrop-filter: blur(0px);
        display: flex; align-items: center; justify-content: center;
        gap: 15px; opacity: 0; transition: 0.4s;
    }

    .action-circle {
        width: 50px; height: 50px; border-radius: 50%; border: none;
        background: #fff; color: var(--accent); font-size: 18px;
        transform: translateY(20px); transition: 0.4s;
    }

    .futuristic-card:hover .hover-glass-actions { opacity: 1; backdrop-filter: blur(4px); }
    .futuristic-card:hover .action-circle { transform: translateY(0); }
    .futuristic-card:hover .image-box img { transform: scale(1.1); }

    /* Content Styling */
    .content-box { padding: 20px 10px 10px; }
    
    .category-pill {
        background: #fff3eb; color: var(--accent);
        padding: 4px 12px; border-radius: 30px; font-size: 11px; font-weight: 700;
    }

    .rating-mini { font-size: 13px; font-weight: 700; color: #333; }
    .rating-mini i { color: #ffc107; }

    .product-name a {
        font-size: 1.2rem; font-weight: 800; color: #222;
        text-decoration: none; transition: 0.3s;
    }

    .price-wrapper { margin-top: 15px; position: relative; display: flex; align-items: center; }
    .price-main { font-size: 1.4rem; font-weight: 900; color: #222; z-index: 2; background: #fff; padding-right: 10px;}
    .price-line { height: 2px; flex-grow: 1; background: #f0f0f0; position: relative; }
    
    /* Navigation */
    .nav-btn {
        width: 55px; height: 55px; border-radius: 50%; border: 1px solid #eee;
        background: #fff; transition: 0.4s; font-size: 20px;
    }
    .nav-btn:hover { background: var(--accent); color: #fff; transform: rotate(-10deg); }

    /* Mobile Tweaks */
    @media (max-width: 576px) {
        .futuristic-card { border-radius: 15px; }
        .product-name a { font-size: 1rem; }
        .price-main { font-size: 1.1rem; }
    }














.furniture-slider-section { background: #fff; overflow: hidden; }

    /* Collection Badge - Based on your uploaded images */
    .collection-badge {
        display: inline-block;
        padding: 6px 20px;
        border: 1px solid #333;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Slider Item Style */
    .furniture-item { padding: 0 10px; }
    
    .product-wrap {
        background: #fdfdfd;
        border-radius: 12px;
        aspect-ratio: 3/4;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s ease;
    }

    .product-wrap img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }

    .furniture-item:hover .product-wrap {
        transform: translateY(-10px);
    }

    /* Modern Navigation Arrows */
    .nav-arrow {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .nav-arrow:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    /* Mobile Responsive Logic */
    @media (max-width: 991px) {
        .collection-intro { text-align: center; }
        .slider-nav-wrapper { justify-content: center; margin-bottom: 30px; }
        .display-5 { font-size: 2rem; }
    }








  .reviews-section { background-color: #fcfcfc; }
    
    .header-line {
        width: 60px;
        height: 3px;
        background: #f07e02;
        margin-top: 15px;
    }

    .review-item { padding: 15px; }

    .review-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        height: 100%;
        position: relative;
        transition: transform 0.3s ease;
    }

    .review-card:hover { transform: translateY(-5px); }

    .quote-icon {
        font-size: 30px;
        color: #f1f1f1;
        position: absolute;
        top: 20px;
        right: 30px;
    }

    .rating-stars { color: #ffc107; font-size: 14px; }

    .review-text {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        font-style: italic;
    }

    .customer-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
    }

    .customer-img img { width: 100%; height: 100%; object-fit: cover; }

    /* Custom Slick Dots */
    .reviews-slider .slick-dots { bottom: -40px; }
    .reviews-slider .slick-dots li button:before { color: #f07e02; font-size: 12px; }

    /* Mobile Responsive adjustments */
    @media (max-width: 576px) {
        .review-card { padding: 30px 20px; }
        .display-6 { font-size: 1.8rem; }
    }






 .futuristic-footer {
        background: #0a0a0a;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    /* Gradient Glow Effect */
    .futuristic-footer::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(211, 84, 0, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: 0.3s ease;
        font-size: 15px;
    }
    .footer-links a:hover {
        color: #f07e02;
        padding-left: 8px;
    }

    /* Social Icons with Glow */
    .social-icon {
        width: 40px; height: 40px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #fff; text-decoration: none;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .social-icon:hover {
        background: #f07e02;
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(211, 84, 0, 0.5);
    }

    /* Glass Newsletter Input */
    .input-glass-group {
        display: flex;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50px;
        padding: 5px;
        backdrop-filter: blur(10px);
    }
    .glass-input {
        background: transparent;
        border: none;
        padding: 10px 20px;
        color: #fff;
        flex-grow: 1;
        outline: none;
    }
    .glass-btn {
        background: #f07e02;
        border: none;
        border-radius: 50px;
        padding: 10px 25px;
        color: #fff;
        font-weight: 700;
        transition: 0.3s;
    }
    .glass-btn:hover { background: #e67e22; }

    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }

    /* Mobile Responsive UI */
    @media (max-width: 768px) {
        .futuristic-footer { text-align: center; }
        .social-glow { justify-content: center; }
        .input-glass-group { margin: 0 auto; max-width: 400px; }
        .footer-links a:hover { padding-left: 0; transform: scale(1.05); display: inline-block; }
    }

















    .clients-section {
        background: #ffffff;
        overflow: hidden;
        padding: 60px 0;
    }

    /* Gradient Mask for fading edges */
    .marquee-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .marquee-content {
        display: flex;
        width: max-content;
        animation: scroll 30s linear infinite;
    }

    .client-logo {
        padding: 0 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .client-logo img {
        height: 40px;
        width: auto;
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.4s ease;
    }

    /* Futuristic Interaction */
    .client-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

    /* Infinite Animation Logic */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Pause on hover so users can see clients clearly */
    .marquee-container:hover .marquee-content {
        animation-play-state: paused;
    }

    @media (max-width: 768px) {
        .client-logo { padding: 0 30px; }
        .client-logo img { height: 30px; }
        .marquee-content { animation-duration: 20s; } /* Slightly faster on mobile */
    }