:root {
        --primary: #293790;
        --accent: #1cb8ff;
        --bg: #E2E8F0;
        --card: #ffffff;
        --footer: #0b1e52;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background:#E2E8F0 !important;
        color: #13294b;
        line-height: 1.6;
    }
        .nav-container{
            padding: 15px 20px !important;
        }
   
    /* TITLES */
    .page-title {
        padding: 30px 60px;
    }

    .page-title h2 {
        font-size: 32px;
        font-weight: 800;
        color: var(--primary);
        margin: 0;
    }

    .page-title h2 span {
        font-weight: 400;
        color: var(--accent);
    }

    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    /* SEARCH */
    .search-section {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }

    .search-box {
        background: var(--bg);
        padding: 18px 25px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        gap: 15px;
        border: 2px solid var(--primary);
        max-width: 800px;
        width: 100%;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

    .search-box:focus-within {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(28, 184, 255, 0.1);
    }

    .search-box input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 16px;
        background-color: transparent;
        color: #13294b;
    }

    .search-box input::placeholder {
        color: #64748b;
    }

    .search-icon {
        color: var(--primary);
        font-size: 18px;
    }

    .filters {
        margin-top: 20px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filters button {
        padding: 10px 32px;
        border-radius: 25px;
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
        font-size: 14px;
    }

    .filters button:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(41, 55, 144, 0.2);
    }

    .filters button.active {
        background: var(--primary);
        color: white;
    }

    /* Slider wrapper */
    .slider {
        width: 90%;
        max-width: 1100px;
        margin: 0px auto 70px;
        padding: 6% 28px 6% ;
        border-radius: 16px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    /* Slides container */
    .slides-container {
        position: relative;
        width: 100%;
        min-height: 280px;
    }

    .slide {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 10px 20px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .slide img.product-img {
        width: 320px;
        height: auto;
        max-height: 240px;
        object-fit: contain;
        border-radius: 12px;
    }

    .slide .product-info {
        max-width: 520px;
    }

    .slide .product-info h3 {
        font-size: 28px;
        color: var(--primary);
        margin: 0 0 15px 0;
        font-weight: 700;
    }

    .slide .product-info p {
        font-size: 16px;
        color: #475569;
        margin: 0 0 20px 0;
        line-height: 1.7;
    }

    .slide.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .view-btn {
        background: var(--accent);
        color: #fff;
        padding: 12px 28px;
        border-radius: 8px;
        border: 0;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(28, 184, 255, 0.3);
    }

    .view-btn:hover {
        background: #1aa3e6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(28, 184, 255, 0.4);
    }

    /* Arrows */
    .arrow {
        background: transparent;
        border: 0;
        font-size: 70px;
        color: var(--primary);
        cursor: pointer;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, color 0.2s;
        z-index: 10;
    }

    .arrow:hover {
        color: var(--accent);
        transform: scale(1.1);
    }

    .arrow.left {
        position: absolute;
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .arrow.left:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .arrow.right {
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .arrow.right:hover {
        transform: translateY(-50%) scale(1.1);
    }

    /* Dots */
    .dots {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 12px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s;
    }

    .dot:hover {
        background: rgba(41, 55, 144, 0.5);
        transform: scale(1.2);
    }

    .dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }

    /* FOOTER */
    
    /* Mobile devices */
    @media (max-width: 768px) {
        .navbar {
            padding: 12px 20px;
            flex-wrap: wrap;
        }

        .menu-toggle {
            display: flex;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            gap: 0;
            background: white;
            padding: 20px 0;
            margin-top: 15px;
            border-top: 1px solid var(--bg);
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            padding: 12px 20px;
            width: 100%;
            text-align: left;
        }

        .dropdown-menu {
            position: static;
            box-shadow: none;
            background: var(--bg);
            border-radius: 0;
            margin-top: 5px;
        }

        .page-title {
            padding: 20px 20px;
        }

        .page-title h2 {
            font-size: 24px;
        }

        .search-box {
            padding: 14px 20px;
            border-radius: 30px;
        }

        .search-box input {
            font-size: 14px;
        }

        .filters {
            gap: 8px;
        }

        .filters button {
            padding: 8px 20px;
            font-size: 13px;
        }

        .slider {
            width: 95%;
            padding: 20px 15px;
            margin: 20px auto 60px;
        }

        .slides-container {
            min-height: 420px;
        }

        .slide {
            flex-direction: column;
            gap: 20px;
            padding: 10px;
            text-align: center;
        }

        .slide img.product-img {
            width: 100%;
            max-width: 280px;
        }

        .slide .product-info {
            max-width: 100%;
        }

        .slide .product-info h3 {
            font-size: 22px;
        }

        .slide .product-info p {
            font-size: 15px;
        }

        .arrow {
            font-size: 35px;
            width: 40px;
            height: 40px;
        }

        .arrow.left {
            left: 5px;
        }

        .arrow.right {
            right: 5px;
        }

        .footer {
            padding: 30px 20px;
            flex-direction: column;
            gap: 30px;
        }

        .footer-left,
        .footer-links,
        .footer-social {
            min-width: 100%;
        }
    }

    /* Small mobile devices */
    @media (max-width: 480px) {
        .page-title h2 {
            font-size: 20px;
        }

        .search-box {
            padding: 12px 18px;
        }

        .filters button {
            padding: 7px 16px;
            font-size: 12px;
        }

        .slides-container {
            min-height: 460px;
        }

        .slide .product-info h3 {
            font-size: 20px;
        }

        .slide .product-info p {
            font-size: 14px;
        }

        .view-btn {
            padding: 10px 24px;
            font-size: 14px;
        }

        .arrow {
            font-size: 28px;
            width: 35px;
            height: 35px;
        }

        .dot {
            width: 10px;
            height: 10px;
        }
    }

    /* Landscape mode optimization for mobile */
    @media (max-width: 768px) and (orientation: landscape) {
        .slides-container {
            min-height: 300px;
        }

        .slide {
            flex-direction: row;
            gap: 20px;
        }

        .slide img.product-img {
            width: 200px;
        }

        .slide .product-info {
            text-align: left;
        }
    }