@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.5;
    background-color: #F4F7FC; /* Sleek creamy background */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    width: 1rem;
    height: 1rem;
}

/* Header Styles */
.header {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
}

/* ===============================
   PREMIUM TOP BAR – ATHAVAN PAPERS
   Orange #FF6B35 | Blue #1F3A70
   =============================== */

/* =====================================
   PREMIUM SOFT TOP BAR – DASHBOARD STYLE
   ===================================== */

.top-bar {
    display: none;
    margin-top: 20px;
}

@media (min-width: 1024px) {
    .top-bar {
        display: block;
    }
}

.top-bar .container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 30px;
    background: #eef1f4;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Soft Neumorphism Shadow */
    box-shadow:
        12px 12px 30px rgba(0,0,0,0.08),
        -8px -8px 20px rgba(255,255,255,0.9);
}

/* LEFT SIDE */

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone {
    font-size: 14px;
    font-weight: 600;
    color: #1F3A70;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone .icon {
    background: #1F3A70;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* LINKS */

.customer-support,
.links a {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: 0.3s ease;
}

.customer-support:hover,
.links a:hover {
    color: #FF6B35;
}

/* RIGHT SIDE */

.user-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* SOCIAL ICONS – SOFT ROUND BUTTONS */

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef1f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F3A70;
    font-size: 14px;

    box-shadow:
        6px 6px 12px rgba(0,0,0,0.08),
        -4px -4px 10px rgba(255,255,255,0.9);

    transition: all 0.3s ease;
}

.icon-link:hover {
    background: #FF6B35;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow:
        8px 8px 18px rgba(0,0,0,0.12);
}


/* ======================================
   PREMIUM MAIN HEADER – ATHAVAN PAPERS
   Orange #FF6B35 | Blue #1F3A70
   ====================================== */

/* Main Header */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 20px 0;
    max-width: 1280px;
    margin: auto;
}

/* Logo */
.logo img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* ================= SEARCH BAR ================= */

.search-container {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: center;
}

#searchForm {
    width: 100%;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    box-shadow: 0 8px 25px rgba(31,58,112,0.08);
    transition: all 0.3s ease;
}

#searchForm:focus-within {
    border-color: #FF6B35;
    box-shadow: 0 8px 30px rgba(255,107,53,0.25);
}

#searchInput {
    flex: 1;
    border: none;
    padding: 14px 22px;
    font-size: 16px;
    outline: none;
    color: #111827;
}

#searchInput::placeholder {
    color: #9CA3AF;
}

/* Search Button */
#searchForm input[type="submit"] {
    background: linear-gradient(135deg, #FF6B35, #E4572E);
    color: #ffffff;
    border: none;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
}

#searchForm input[type="submit"]:hover {
    background: linear-gradient(135deg, #E4572E, #cc3d1a);
}

/* ================= AUTOCOMPLETE ================= */

.ui-autocomplete {
    max-height: 420px;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: #ffffff;
    padding: 0;
}

.ui-menu-item {
    padding: 12px 18px;
    border-bottom: 1px solid #F1F5F9;
}

.ui-menu-item:last-child {
    border-bottom: none;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: #F4F7FC;
    color: #1F3A70;
}

/* Suggestion Layout */
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.suggestion-image {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
}

.suggestion-name {
    font-weight: 600;
    color: #111827;
}

.suggestion-sku {
    font-size: 13px;
    color: #6B7280;
}

.suggestion-price {
    font-weight: 600;
    color: #FF6B35;
}

/* ================= USER ACTIONS ================= */

.user-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user-actions a {
    text-decoration: none;
}

/* Icon Buttons */
.icon-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F4F7FC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F3A70;
    font-size: 18px;
    transition: all 0.3s ease;
}

.icon-button:hover {
    background: #FF6B35;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.35);
}

/* Cart */
.cart {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {

    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .logo img {
        height: 80px;
    }

    .search-container {
        max-width: 100%;
    }
}

/* ======================================
   PREMIUM NAVIGATION – ATHAVAN PAPERS
   Orange #FF6B35 | Blue #1F3A70
   ====================================== */

.navigation {
    background: #ffffff;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.container1 {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ================= CATEGORY BUTTON ================= */

.categories-button {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #FF6B35, #E4572E);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.categories-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
}

/* ================= NAV LINKS ================= */

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 56px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 0%;
    height: 3px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1F3A70;
}

.nav-link:hover::after {
    width: 100%;
}

/* ================= MEGA MENU ================= */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 4px solid #FF6B35;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: none;
    animation: fadeDown 0.3s ease;
}

.mega-menu.active {
    display: block;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-content {
    display: flex;
    align-items: stretch;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* ================= LEFT CATEGORY PANEL ================= */

.categories-list {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #F8FAFF, #EEF3FB);
    padding: 20px 0;
    border-right: 1px solid #E5E7EB;
}

.category-item {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item a {
    text-decoration: none;
    color: inherit;
}

.category-item:hover,
.category-item.active {
    background: #ffffff;
    color: #FF6B35;
    padding-left: 30px;
}

/* ================= SUBCATEGORIES ================= */

.subcategories {
    display: none;
    flex-grow: 1;
    background: #ffffff;
    padding: 30px;
}

.subcategories.active {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.subcategory-group {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.subcategory-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F3A70;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subcategory-title a {
    text-decoration: none;
    color: #1F3A70;
}

.subcategory-title a:hover {
    color: #FF6B35;
}

.subcategory-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.subcategory-item a {
    display: block;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    color: #6B7280;
    transition: all 0.3s ease;
}

.subcategory-item a:hover {
    color: #FF6B35;
    padding-left: 8px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .subcategories.active {
        grid-template-columns: 1fr;
    }

    .categories-list {
        width: 100%;
        border-right: none;
    }

    .subcategories {
        left: 0;
        width: 100%;
        position: relative;
    }
}



/* ======================================
   PREMIUM HERO SECTION – ATHAVAN PAPERS
   Orange #FF6B35 | Blue #1F3A70
   ====================================== */

.slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    background: #ffffff;
    border-radius: 32px;
    margin: 20px auto 60px;
    max-width: 1280px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Subtle background accent */
.slide::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

/* Content */
.slide .content {
    max-width: 550px;
    z-index: 2;
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1F3A70;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(31,58,112,0.1);
}

.slide p {
    font-size: 20px;
    color: #374151;
    margin-bottom: 30px;
}

.highlight {
    color: #FF6B35;
    font-weight: 700;
}

/* Features Row */
.features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature i {
    font-size: 24px;
    color: #FF6B35;
    transition: transform 0.3s ease;
}

.feature span {
    font-weight: 600;
    color: #1F3A70;
    font-size: 14px;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255,107,53,0.25);
    background: #ffffff;
}

.feature:hover i {
    transform: rotate(10deg) scale(1.1);
}

/* Image Side */
.image-container {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.circular-image {
    width: 420px;
    height: 420px;
    border-radius: 30%;
    background: linear-gradient(135deg, #FF6B35, #E4572E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(255,107,53,0.35);
    animation: floatShape 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.circular-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
}

.circular-image img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.circular-image:hover img {
    transform: scale(1.1);
}

/* Floating Animation */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    66% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    }
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 25px;
    left: 8%;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: #CBD5E1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    width: 32px;
    border-radius: 20px;
    background: #FF6B35;
    box-shadow: 0 4px 10px rgba(255,107,53,0.4);
}

.indicator:hover:not(.active) {
    background: #1F3A70;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .circular-image {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }

    .slide h1 {
        font-size: 36px;
    }

    .slide p {
        font-size: 18px;
    }

    .slide-indicators {
        left: 50%;
        transform: translateX(-50%);
    }
}
        
 /* ======================================
   PREMIUM CATEGORIES SECTION
   Orange #FF6B35 | Blue #1F3A70
   ====================================== */

.container2 {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 20px;
}

/* Section Heading */
.container2 h2 {
    font-size: 34px;
    font-weight: 700;
    color: black;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.container2 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #E4572E);
    border-radius: 10px;
}

/* Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Category Card */
.category-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.35s ease;
    border: none;
    text-align: left;
}

/* Remove old hover glow */
.category-card::before {
    display: none;
}

.category-card:hover {
    transform: translateY(-6px);
}

/* Image Container */
.image-container1 {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Image */
.image-container1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Hover image zoom */
.category-card:hover .image-container1 {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.category-card:hover .image-container1 img {
    transform: scale(1.06);
}

/* Title */
.category-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111827;
    margin-top: 5px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.category-card:hover .category-title {
    color: #FF6B35;
}

/* Responsive */
@media (max-width: 768px) {

    .container2 {
        margin: 60px auto;
    }

    .container2 h2 {
        font-size: 26px;
    }

    .categories-grid {
        gap: 20px;
    }

    .category-card {
        padding: 20px;
    }
}
 
        
         /* featured products*/
    h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            right: 100px;
            display: inline-block;
        }

        h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: darkorange;
            border-radius: 2px;
        }

        .product-slider {
            position: relative;
            overflow: hidden;
        }

        .product-container {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            padding: 10px;
        }

        .product-card {
            min-width: 280px;
            background: white;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        }

        .product-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-title {
            font-size: 14px;
            color: #0066cc;
            margin-bottom: 8px;
            text-decoration: none;
        }

        .sku {
            color: #666;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .rating {
            color: #ffd700;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .price {
            font-size: 20px;
            color: #333;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .original-price {
            color: #666;
            text-decoration: line-through;
            font-size: 14px;
        }

        .gst-text {
            color: #666;
            font-size: 12px;
        }

        .savings {
            color: #009688;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .cart-button {
            position: absolute;
            right: 15px;
            bottom: 15px;
            background: #4834d4;
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wishlist {
            color: #666;
            text-decoration: none;
            font-size: 12px;
            margin-top: auto;
            padding-bottom: 40px;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 2;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        @media (max-width: 768px) {
            .product-card {
                min-width: 240px;
            }
        }
        
      
      
      /* Services*/  
   h5 {
            font-size: 30px;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            right: 100px;
            display: inline-block;
        }

        h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #c20606;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .service-card {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 24px;
            padding: 30px;
            gap: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            background-color: #c20606;
            width: 100px;
            height: 100px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-icon img {
            width: 60%;
            height: 60%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .service-content {
            flex-grow: 1;
        }

        .service-title {
            font-size: 16px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .order-button {
            background-color: #1F3A70; /* Using brand blue instead of random purple */
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px; /* Fully rounded */
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .order-button:hover {
            background-color: #FF6B35;
            transform: scale(0.95);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 150px;
            height: 100px;
            object-fit: contain;
        }

        .feature-title {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                flex-direction: column;
                text-align: center;
            }

            .features {
                grid-template-columns: 1fr;
            }
        }
  /* ======================================
   PREMIUM PROFESSIONAL SLIDER SECTION
   ====================================== */
.professional-slider {
    width: 100%;
    height: 65vh;
    min-height: 500px;
    margin-top: 40px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(31,58,112,0.15);
}
.professional-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1F3A70;
}
.professional-slider .slider-bg {
    position: absolute;
    inset: -5%; /* slightly larger for zoom effect */
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.professional-slider .swiper-slide-active .slider-bg {
    transform: scale(1.05); /* Ken Burns effect */
}
.professional-slider .slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(31,58,112,0.4) 100%);
    display: flex;
    align-items: center;
    padding: 0 10%;
}
.professional-slider .slider-content {
    color: #ffffff;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.professional-slider .slider-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.professional-slider .slider-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.professional-slider .btn-container {
    margin-top: 10px;
}
.professional-slider .slider-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #FF6B35, #E4572E);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}
.professional-slider .slider-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255,107,53,0.45);
    background: linear-gradient(135deg, #ff7e4f, #eb623b);
}

/* Custom Swiper Controls */
.professional-slider .custom-pagination {
    bottom: 25px !important;
}
.professional-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.4;
    transition: all 0.3s ease;
}
.professional-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #FF6B35;
    width: 32px;
    border-radius: 10px;
}
.professional-slider .custom-nav-btn {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.professional-slider .custom-nav-btn::after {
    font-size: 20px;
    font-weight: bold;
}
.professional-slider .custom-nav-btn:hover {
    background: #FF6B35;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .professional-slider { height: 50vh; min-height: 450px; border-radius: 16px; margin-top: 20px; }
    .professional-slider .slider-content { padding: 25px; margin: 15px; }
    .professional-slider .slider-content h2 { font-size: 2.2rem; }
    .professional-slider .slider-content p { font-size: 1rem; }
    .professional-slider .custom-nav-btn { display: none; }
}

  /* ======================================
   FULL WIDTH VIDEO SECTION
   ====================================== */

.full-video-section {
    position: relative;
     margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 80vh;   /* adjust height here */
    overflow: hidden;
}

/* Make video full screen */
.full-video-section iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

/* Dark overlay for text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55); /* dark blue overlay */
    z-index: 1;
}

/* Center text */
.video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.video-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-text p {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .full-video-section {
        height: 60vh;
    }

    .video-text h2 {
        font-size: 30px;
    }

    .video-text p {
        font-size: 15px;
    }
}
        
        
        
/* our featured Brands*/

.brands-section {
            padding: 80px 0;
            background: transparent;
        }

        .container5 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #2d3748;
            margin-bottom: 50px;
            font-weight: 500;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .brand-card {
            background: white;
            border-radius: 24px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 150px;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            cursor: pointer;
        }

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .brand-logo {
            max-width: 80%;
            max-height: 60px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-logo {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }

            .brand-card {
                padding: 20px;
                min-height: 120px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
        }      	

   
 .ui-autocomplete {
    max-height: 200px; /* Set the maximum height for the dropdown */
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: hidden; /* Disable horizontal scrolling */
    padding-right: 10px; /* Prevent cutoff of text */
    background-color: #fff; /* Background color for the dropdown */
    border: 1px solid #ccc; /* Border around the dropdown */
    font-family: Arial, sans-serif; /* Dropdown font */
    font-size: 14px; /* Font size */
    z-index: 1000; /* Ensure it appears above other elements */
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



/* Style for individual autocomplete items */
.ui-menu-item {
    padding: 8px 10px; /* Padding for items */
    cursor: pointer; /* Change cursor to pointer */
}

/* Highlight the item on hover or selection */
.ui-menu-item:hover, 
.ui-state-focus {
    background-color: #f0f0f0; /* Light grey background on hover */
    color: #000; /* Text color on hover */
}

@media (min-width: 1024px) {
    .top-bar {
        display: block;
    }
}
@media (max-width: 768px) {
    /* Navigation */
    .nav-links, .action-buttons {
        display: none;
    }
    .mega-menu-content {
        grid-template-columns: 1fr;
    }
    .subcategories.active {
        grid-template-columns: 1fr;
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .category-card {
        padding: 15px;
    }

    /* Featured Products */
    .product-card {
        min-width: 240px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    /* Features */
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    /* General Styles */
    .container {
        padding: 0 0.5rem;
    }

    /* Header Styles */
    .main-header {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    .logo img {
        height: 10rem;
    }
    .search-container {
        max-width: 100%;
        margin: 10px auto;
    }
    #searchForm {
        border-radius: 12px;
    }
    #searchInput {
        padding: 8px 15px;
        font-size: 14px;
    }
    #searchForm input[type="submit"] {
        padding: 0 15px;
        font-size: 12px;
    }

    /* Navigation */
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    .categories-button {
        width: 100%;
        justify-content: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-link {
        justify-content: center;
    }
    .action-buttons {
        margin-left: 0;
        justify-content: center;
    }

    /* Slide */
    .slide {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }
    .content {
        padding-right: 0;
        text-align: center;
    }
    h1 {
        font-size: 36px;
    }
    p {
        font-size: 18px;
    }
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .features {
        flex-direction: column;
        gap: 1rem;
    }
    .image-container {
        margin-top: 20px;
    }
    .circular-image {
        width: 250px;
        height: 250px;
    }
    .nav-dots {
        top: 10px;
        right: 10px;
    }
    .slide-indicators {
        bottom: -150px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .category-card {
        padding: 15px;
    }
    .image-container1 {
        padding: 20px;
    }
    .category-title {
        font-size: 14px;
    }

    /* Featured Products */
    .product-container {
        gap: 10px;
        padding: 5px;
    }
    .product-card {
        min-width: 200px;
        padding: 10px;
    }
    .product-image {
        height: 150px;
    }
    .product-title {
        font-size: 12px;
    }
    .sku {
        font-size: 10px;
    }
    .price {
        font-size: 16px;
    }
    .original-price {
        font-size: 12px;
    }
    .gst-text {
        font-size: 10px;
    }
    .savings {
        font-size: 10px;
    }
    .cart-button {
        width: 30px;
        height: 30px;
    }
    .wishlist {
        font-size: 10px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .service-icon {
        width: 80px;
        height: 80px;
    }
    .service-title {
        font-size: 14px;
    }
    .order-button {
        font-size: 14px;
        padding: 8px 20px;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 15px;
    }
    .feature-icon {
        width: 100px;
        height: 80px;
    }
    .feature-title {
        font-size: 14px;
    }

    /* Our Featured Brands */
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .brand-card {
        padding: 20px;
        min-height: 100px;
    }
    .brand-logo {
        max-height: 50px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .links {
        display: flex;
        align-items: center;
        gap: 1rem; /* Add spacing between items */
    }
    .links a {
        font-size: 1rem; /* Adjust font size for better readability */
        color: #4b5563; /* Match the text color with other links */
        text-decoration: none; /* Remove underline */
    }
    .links a:hover {
        text-decoration: underline; /* Add hover effect */
    }
    .account {
        display: flex;
        align-items: center;
        gap: 0.25rem; /* Add spacing between "My Account" and the chevron icon */
    }
    .account .icon {
        font-size: 1rem; /* Adjust icon size */
    }
}
  @media (max-width: 768px) {
    .links {
        flex-direction: column; /* Stack items vertically */
        gap: 0.5rem; /* Reduce spacing between items */
    }
    .links a {
        font-size: 0.8rem; /* Slightly smaller font size for mobile */
    }
    .account {
        gap: 0.2rem; /* Slightly reduce spacing between text and icon */
    }
    .account .icon {
        font-size: 0.9rem; /* Slightly smaller icon size */
    }
}

@media (max-width: 768px) {
    
    .nav-links {
        display: flex;
        list-style-type: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
        flex-direction: row;
    }

.nav-link {
    display: flex;
    align-items: center;
    height: 3rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover {
    color: #111827;
    border-bottom-color: #57468F;
}
}
@media (min-width: 768px) {
    h2 {
        font-size: 30px;
        color: #333;
        margin-bottom: 30px;
        position: relative;
        right: 100px;
        display: inline-block;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    h2 {
        font-size: 24px; /* Reduce font size */
        right: 0; /* Remove right positioning */
        display: block; /* Full width for better alignment */
        text-align: center; /* Center align text */
        margin: 20px auto; /* Adjust margin */
    }

    h2::after {
        width: 50%; /* Reduce underline width */
        left: 50%; /* Center the underline */
        transform: translateX(-50%); /* Ensure centering */
    }
}


@media (max-width: 768px) {
    h5 {
        font-size: 22px; /* Reduce font size */
        right: 0; /* Remove right positioning */
        display: block; /* Ensure full width */
        text-align: center; /* Center align for better UX */
        margin: 20px auto; /* Adjust margin */
    }

    h5::after {
        width: 50%; /* Reduce underline width */
        left: 50%; /* Center the underline */
        transform: translateX(-50%); /* Keep it visually centered */
    }
}