:root {
    --primary-color: #2E056B;
    --primary-hover: #1e0247;
    --accent-color: #F9E1CF;
    --accent-hover: #e5cbba;
    --dark-neutral: #1a1a1a;
    --light-neutral: #f8f9fa;
    --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: "IBM Plex Serif", Georgia, Cambria, "Times New Roman", Times, serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --glow-shadow: 0 0 15px rgba(46, 5, 107, 0.2);
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: var(--font-sans);
    color: var(--dark-neutral);
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
}

/* navbar */
.login_and_region {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    height: 50px;
    background-color: #232323;
    z-index: 101;

}

.login_and_regions_links {
    list-style: none;
    display: flex;
    justify-content: end;
    align-self: center;
    gap: 20px;
    margin-right: 20px;
    margin-top: 10px;
    color: white;

}

.navbar_container {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    height: 80px;
    background: black;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}


@media (max-width:1000px) {
    .main_nav_section {
        top: 100px !important;
    }

    .ul_main_links {
        padding-left: 0px !important;
    }

}

nav .navbar {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;

}

.logo {
    margin-left: 5%;
    width: 100px;
    height: 50px;

}

.navbar_logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #F9E1CF;
    font-size: 15px;
    font-weight: 500;
}

.links li:hover .arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #F9E1CF;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #F9E1CF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 2;
    min-width: 180px;
    width: max-content;
    padding: 10px 0;
}

nav .navbar .links li:hover .sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: black;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
}

.navbar .links li .sub-menu a:hover {
    color: gray !important;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}



.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
    margin-right: 10%;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 310px;
    padding-left: 10px;
    background: black;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: black;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: black;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 270px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 5%;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:1000px) {
    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: black;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        width: 100px;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

.categories_container_modal {
    width: 40%;
    height: auto;
    max-height: 80vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 130px;
    display: none;
    background-color: #F9E1CF;
    z-index: 102;
    color: black;
    overflow-y: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.categories_modal {
    display: flex;
    padding-top: 40px;
    /* align-items: center;
    justify-content: flex-start; */
}


.categories {
    padding: 10px;
    border-right: 1px solid gainsboro;
    overflow-y: auto;
    height: 50vh;
    min-width: 280px;


}

.categories ul {
    list-style: none;
    margin: 0;
    padding: 0;

}

.categories>ul>li {
    margin: 20px;
}

.sub_categories_list>li {
    margin: 20px;

}

.categories_open {
    cursor: pointer;
}

.sub_categories {
    padding: 10px;
    display: none;
    overflow-y: auto;
    height: 50vh;
    min-width: 280px;
}

.sub_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom_dropdown_text {
    color: #F9E1CF;
}

/* Wrapper div to contain content and footer */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Main content should take up remaining space */


@media (max-width:1000px) {
    .main-content {
        flex: 1;
        margin-top: 80px;
    }

    .navbar_container {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100%;
        height: 80px;
        background: black;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    .main_nav_section {
        top: 80px !important;
    }
}

@media (min-width:1001px) {
    .main-content {
        margin-top: 130px;
        flex: 1;

    }

    .navbar_container {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100%;
        height: 80px;
        background: black;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    .main_nav_section {
        top: 100px !important;
    }

}

/* Icon colors */
.beige_icons {
    color: #F9E1CF;
}

/* landing_page
hero section */
.hero_section {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 60vh;
    background: linear-gradient(to top, #2E056B, rgb(42, 42, 42));
    color: #F9E1CF;
}


.hero_icon_container {
    background-color: black;
    padding: 10px;
    border-radius: 50%;
}

.hero_icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* Space between icons */
}

@media (max-width: 700px) {
    .hero_icons {
        display: none;
        text-align: center;
    }

    .hero_search {
        width: 100%;
    }

    .hero_cta {
        width: 100% !important;

    }

    .hero_cta>h1 {
        min-width: 100% !important;
        text-align: center;
    }

    .hero_cta>h3 {
        min-width: 100% !important;
        text-align: center;
    }

    .hero_text {
        max-height: 100px;
        width: 100%;
    }

    .hero_section {
        display: flex;
        /* flex-direction: column; */
        justify-content: space-evenly;
        align-items: start;
        height: 30vh !important;
    }

    .hero_section>div {
        width: 100% !important;
        margin: 20px;
        height: 200px;
        /* padding: 0px; */
    }

    .hero_search_area {
        background: none !important;
        background-image: none !important;
        min-height: 200px !important;
        padding: 0px;
    }
}


.hero_icons .material-symbols-outlined {
    font-size: 48px;
    color: #fff;
}

.hero_cta>h1 {
    max-width: 600px;
    text-align: start;
    font-size: clamp(1rem, 5vw, 1.8rem);
    /* Adjust the sizes as needed */
    line-height: 1;
    /* Optional: Improves readability */
}

.hero_cta>h3 {
    max-width: 600px;
    text-align: start;
    font-size: clamp(0.5rem, 2vw, 1rem);
    /* Adjust the sizes as needed */
    line-height: 1;
    /* Optional: Improves readability */
}

.hero_btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_light_outlined {
    background-color: rgba(0, 0, 0, 0);
    color: #F9E1CF;
    border: 1px solid #F9E1CF;
    height: 40px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    /* Enables flexbox */
    align-items: center;
    /* Aligns icon and text vertically */
    justify-content: center;
    /* Centers the content horizontally */
    /* font-family: "Lato", sans-serif; */
    font-family: "IBM Plex Serif", serif;
    /* font-family: "Zilla Slab", serif; */
    /* font-family: "Roboto Slab", serif; */
    transition: all ease 0.6s;
    cursor: pointer;
    /* Adds a pointer cursor */

}

.btn_light_outlined:hover {
    background-color: #000;
    border: 1px solid #000;

}

.btn_light_solid {
    background-color: #F9E1CF;
    color: black;
    border: 1px solid #F9E1CF;
    height: 40px;
    font-weight: 400;
    font-size: 16px;
    font-family: "IBM Plex Serif", serif;
    transition: all ease 0.6s;
    display: flex;
    /* Enables flexbox */
    align-items: center;
    /* Aligns icon and text vertically */
    justify-content: center;
    /* Centers the content horizontally */
    cursor: pointer;
    /* Adds a pointer cursor */
}

.btn_light_solid:hover {
    background-color: #000;
    border: 1px solid #000;
    color: #F9E1CF;

}


.hero_search_area {
    width: 40%;
    border-top-left-radius: 20%;
    border-bottom-left-radius: 20%;
    /* height: 100%; */
    min-width: 250px;
    padding-left: 5%;
    padding-right: 5%;
    background-image: url(/assets/statics/images/landing_image1.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
}

.hero_text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align items to the start */
    gap: 5%;
    /* Adjust spacing between items */
    width: 40%;
    min-width: 280px;
    padding-left: 5%;

}

/* Hero Search Section */
.hero_search {
    background-color: #f5e3d7;
    /* Light beige */
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs container */
.search_forms_hero {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 15px;
}

/* Tabs styling */
.search_tab {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
    cursor: pointer;
    color: black;
    transition: all 0.3s ease;
}

.search_tab:hover {
    background-color: #2E056B;
    color: white;
    border-radius: 5px;
}

.active_tab {
    background-color: black;
    color: white;
    border-radius: 5px;
}

/* Search input container */
.landing_search {
    position: relative;
    display: flex;
    align-items: center;
}

.landing_search_input {
    width: 100%;
    padding: 10px 50px 10px 15px;
    /* Space for icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: "IBM Plex Serif", serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.landing_search_input:focus {
    outline: none;
    border-color: #2E056B;
}

.search_icon_button {
    position: absolute;
    right: 15px;
    top: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Search icon styling */
.search_icon {
    font-size: 24px;
    color: black;
    /* Prevent interaction with the icon */
}

.search_icon_button_nav {
    position: absolute;
    right: 15px;
    top: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.search_icon_light {
    color: black;
    font-size: 24px;

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero_search {
        max-width: 100%;
        padding: 10px;
    }

    .search_forms_hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .search_tab {
        width: 100%;
        text-align: left;
    }
}

/* our service */
.our_services {
    display: flex;
    align-items: center;
    /* Centers items vertically */
    justify-content: space-evenly;
    /* Ensures even spacing between items */
    flex-wrap: wrap;
    /* Allows wrapping for responsiveness */
    padding: 3%;
    gap: 30px;
    /* Keeps consistent spacing between items */
}


.service_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.services_text {
    max-width: 200px;
    text-align: center;
}

/* advert one */

.landing_page_horizontal_one {
    margin: 20px 0;
    width: 100%;
    height: 100px;
}

.add_contain {
    max-height: 100px;
    width: 100%;
    object-fit: contain;
    /* Keeps aspect ratio, fits within bounds */
}

.section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    /* Optional for the serif style */
    margin: 20px 0;
}

.section-title h2 {
    font-weight: bold;
    font-size: 24px;
    /* Adjust as needed */
    color: #000;
    /* Black color for text */
    margin-bottom: 5px;
    /* Space between text and underline */
    font-style: italic;
}

.section-title .underline {
    width: 60px;
    /* Length of the underline */
    height: 4px;
    /* Thickness of the underline */
    background-color: #2E056B;
    /* Purple color */
    margin: 0 auto;
    /* Center the underline */
}


.product-card {
    border: 1px solid rgba(46, 5, 107, 0.15);
    /* Soft border */
    border-radius: var(--border-radius-md);
    /* Rounded corners */
    overflow: hidden;
    /* Clip content inside border-radius */
    width: 200px;
    /* Adjust width as needed */
    font-family: var(--font-sans);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    text-align: center;
    margin: 20px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(46, 5, 107, 0.12);
    border-color: var(--primary-color);
}

/* Image Section */
.product-image img {
    width: 100%;
    height: 180px !important;
    /* Makes image responsive */
    object-fit: cover;
    /* Ensures image aspect ratio is maintained */
}

/* Label Section */
.product-label {
    background-color: #2E056B;
    /* Purple background */
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
    /* Match the bottom corners of the card */
    margin-top: -5px;
    /* Overlap the image slightly */
}

/* Details Section */
.product-details {
    padding: 10px;
    font-size: 14px;
    color: #000;
    /* Black text */
    text-align: start;
}

.product-details p {
    margin: 5px 0;
    /* Space between lines */
}

/* discount section */
/* Base styling for discounts_section */
.discounts_section {
    display: flex;
    /* Default: Flexbox for flexible layout */
    flex-wrap: wrap;
    /* Allows wrapping for responsive layouts */
    gap: 20px;
    /* Space between items */
    justify-content: space-between;
    /* Adjust item spacing for larger screens */
    padding: 10px;
}

.discount {
    flex: 1 1 calc(50% - 20px);
    /* Default: 2 items per row for larger screens */
    box-sizing: border-box;
    /* Include padding in width calculations */
    border: 0.5px solid #ddd;
}

.discount img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 5px;
    /* Optional: Add rounded corners */
}

/* Grid layout for small screens */
@media (max-width: 600px) {
    .discounts_section {
        display: grid;
        /* Switch to grid layout */
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for smaller screens */
        gap: 10px;
        /* Reduce gap for smaller screens */
    }

    .discount {
        flex: none;
        /* Remove flexbox behavior for small screens */
    }
}

/* Large screens up to 1440px (16-inch screens) */
@media (min-width: 601px) and (max-width: 1440px) {
    .discounts_section {
        display: grid;
        /* Use grid for exact 2 columns */
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for large screens */
        gap: 20px;
        /* Maintain spacing */
    }
}

/* Beyond 1440px (flexible layout) */
@media (min-width: 1441px) {
    .discounts_section {
        display: flex;
        /* Flexbox for flexible layouts */
        flex-wrap: wrap;
        /* Items wrap naturally */
        gap: 20px;
        /* Space between items */
    }

    .discount {
        flex: 1 1 calc(25% - 20px);
        /* Flexible layout, 4 items per row if space permits */
    }
}

/* features section */
.features_section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.features_text {
    flex: 1;
    max-width: 40%;
}

.features_text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.gradient-dots li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

ul.gradient-dots li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2E056B, #FF6F61);
}

.features_text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.primary_btn {
    background-color: #2E056B;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    font-family: "IBM Plex Serif", serif;
    transition: all ease 0.6s;
    text-decoration: none;
}

.primary_btn:hover {
    background-color: #6104ec;
}

.secondary_btn {
    background-color: #F9E1CF;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    font-family: "IBM Plex Serif", serif;
    transition: all ease 0.6s;
    text-decoration: none;
}

.secondary_btn:hover {
    background-color: rgb(236, 101, 101);
    color: white;
}

.tertiary_btn {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    font-family: "IBM Plex Serif", serif;
    transition: all ease 0.6s;
    text-decoration: none;
}

.tertiary_btn:hover {
    background-color: rgb(236, 101, 101);
    color: white;
}

#advanced_search:hover {
    color: white !important;
}

.alternate_btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
    font-family: "IBM Plex Serif", serif;
    transition: all ease 0.6s;
    text-decoration: none;
}

.alternate_btn:hover {
    background-color: #1d1d1d;
    color: white;
}

.button_section {
    width: 100%;
    text-align: center;
}

.features_logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    flex: 2;
    max-width: 60%;
}

.logo_item {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.logo_item img {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

.logo_item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 5, 107, 0.2);
}

/* Responsive adjustments for logo items */
@media screen and (max-width: 768px) {
    .logo_item {
        padding: 8px;
        min-height: 70px;
    }

    .logo_item img {
        max-width: 80px;
    }
}

@media screen and (max-width: 480px) {
    .logo_item {
        padding: 6px;
        min-height: 60px;
    }

    .logo_item img {
        max-width: 70px;
    }

    .logo_item:hover {
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features_section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features_text {
        max-width: 100%;
    }

    .features_logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .features_logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* newsletter section */
.newsletter_section {
    background: radial-gradient(circle, #fcd7bc, #ffffff);
}

/* the buzz board */
.buzz_board {
    text-align: center;
    padding: 40px;
    background-color: #fff;
}

.buzz_board_header h2 {
    font-weight: bold;
}

.underline {
    width: 50px;
    height: 5px;
    background-color: #2E056B;
    margin: 10px auto;
    border: none;
}

.buzz_board_description {
    margin: 20px auto;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    text-align: center;
}

.buzz_board_cta {
    margin: 20px 0;
}

.view_more_button {
    background-color: #2E056B;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view_more_button:hover {
    background-color: black;
}

.buzz_board_images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Fixed size container for each card */
.buzz_image {
    position: relative;
    display: inline-block;
    width: 300px;
    /* Fixed width */
    height: 250px;
    /* Fixed height */
    flex-shrink: 0;
    /* Prevents cards from shrinking */
}

.buzz_image .card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

/* Make images fill the entire card uniformly */
.buzz_image .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This crops the image to fill the container */
    object-position: center;
    /* Centers the image in the container */
}

/* Alternative: Use object-fit: contain to show full image with possible letterboxing */
/*
.buzz_image .card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f5f5f5; // Add background color to fill empty space
}
*/

/* Style for the badge */
.blog-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 12px;
    z-index: 2;
    /* Increased z-index to ensure it's above overlay */
}

/* Overlay styles */
.buzz_image .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .buzz_image {
        width: 280px;
        height: 220px;
    }

    .buzz_board_images {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .buzz_image {
        width: 250px;
        height: 200px;
    }

    .buzz_board_images {
        gap: 10px;
    }
}

/* bom_selection */
.bom_options {
    background-image: url(/assets/statics/images/landing_image1.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.upload_bom {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 30px;
    gap: 10px;

}

.upload_bom_cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.create_bom_btn {
    background-color: #2E056B;
    color: #F9E1CF;
    height: 50px;
    padding: 10px;
    border-radius: 20px;
    border: #2E056B solid 1px;
    font-size: larger;
    font-family: "IBM Plex Serif", serif;

}

.upload_bom_file {
    background-color: white;
    padding: 20px;
    border-radius: 0.8rem;
}

.upload_instructions {
    width: 40%;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.8);
}

.upload_instructions p {
    color: rgba(0, 0, 0, 0.8);
}

.bordered_upload_section {
    padding: 20px;
    border: 1px dashed rgb(107, 107, 107);
    border-radius: 0.8rem;
}

.register_save_bom {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
    background: linear-gradient(to bottom, #cecece, rgb(117, 117, 117));
    padding-bottom: 30px;
}

.register_bom_instructions {
    width: 40%;
    max-width: 600px;
    text-align: start;
    padding: 30px;
    min-width: 280px;

}

.register_bom_cta {
    width: 40%;
    max-width: 600px;
    text-align: center;
    padding: 30px;

}

.bom_can_login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.span_underlined {
    text-decoration: underline;
}

.bom_usage {
    width: 80%;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

}

.bom_disclaimer {
    border-left: #000 solid 1px;
    padding-left: 10px;

}

/* bom page */
.bom_header_section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap-reverse;
    padding: 30px;

}

.bom_header_section>div {
    box-shadow: 5px 5px 5px 5px #aaa;
    border-radius: 0.8rem;
    padding: 20px;
}

.pricing_headers {
    color: #2E056B;
}

.no_bom_results {
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: #000 2px dashed;
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
}

.no_bom_results>div {
    width: 50%;
    min-height: 240px;
}

.bom_results_found {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    padding: 4%;
}

/* about us */
/* about us redesign */
.about_us_new_hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.about_us_new_hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.about_us_new_hero .hero_subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 40px;
}

.about_us_new_hero_btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about_section_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    flex-wrap: wrap;
    gap: 40px;
}

.about_section_row.reverse {
    flex-direction: row-reverse;
}

.about_section_text {
    flex: 1;
    min-width: 300px;
}

.about_section_text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E056B;
}

.about_section_text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.about_section_image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about_section_image .image_card {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.about_section_image .image_card:hover {
    transform: translateY(-10px);
}

.check_list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check_list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.check_list li::before {
    content: '\eb26';
    /* bx-check unicode */
    font-family: 'boxicons' !important;
    position: absolute;
    left: 0;
    color: #2E056B;
    font-size: 1.2rem;
}

.stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 60px 5%;
    background-color: #2E056B;
}

.stat_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #F9E1CF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat_card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.stat_number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat_label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.team_member_card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team_member_card:hover {
    transform: scale(1.05);
}

.team_member_image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #F9E1CF;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.team_member_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_member_name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2E056B;
}

.team_member_role {
    color: #6c757d;
}

@media (max-width: 768px) {
    .about_section_row {
        flex-direction: column !important;
        text-align: center;
    }

    .about_us_new_hero h1 {
        font-size: 2.2rem;
    }

    .about_us_new_hero_btns {
        flex-direction: column;
    }
}

.about_us_hero {
    padding: 20px;
    min-height: 40vh;
    /* Minimum height of the container */
    max-height: 60vh;
    /* Maximum height of the container */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensures the image stays centered if there's extra space */
    overflow: hidden;
    /* Hides any part of the image outside the container */
}

.about_us_hero img {
    width: 100%;
    /* Ensures the image scales to the container's width */
    height: 100%;
    /* Ensures the image scales to the container's height */
    object-fit: cover;
    /* Keeps the image proportional and fills the container */
    object-position: center;
    /* Centers the focus of the image */
}

.aboutus_hero_text {
    width: 100%;
    text-align: center;
    font-style: italic;
}

.about_company {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.about_company>div {
    width: 30%;
    min-width: 250px;
}

.aboutus_summary {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    flex-wrap: wrap;
    background-color: #2E056B;
    color: #F9E1CF;
    padding: 20px;
    font-size: larger;
}

.the_team {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px;
}

.team_image {
    border-radius: 50%;
    border: 2px #2E056B solid;
    padding: 2px;
    overflow: hidden;
    /* Ensures the circular shape is maintained */
    width: 150px;
    /* Adjust the size as needed */
    height: 150px;
    /* Ensure the container is a perfect circle */
    display: flex;
    /* Center the image inside the container */
    justify-content: center;
    align-items: center;
}

.team_image img {
    width: 100%;
    /* Dynamically resize the image */
    height: 100%;
    /* Ensure the image fits the container */
    object-fit: cover;
    /* Ensures the image covers the entire container without distortion */
}

/* Request Quote */
.request_quote_background {
    color: #F9E1CF;
    text-align: center;
    background: radial-gradient(circle, #2E056B, #5e01c9);
    min-height: 50vh;
    display: flex;
    /* Flexbox for centering */
    justify-content: center;
    /* Horizontally center the content */
    align-items: center;
    /* Vertically center the content */
    animation: pulseGradient 2s infinite;
    /* Pulsing effect */
    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
    position: relative;
    /* To allow the form to overlap */
    z-index: 1;
}

@keyframes pulseGradient {
    0% {
        background: radial-gradient(circle, #2E056B, #5e01c9);
    }

    50% {
        background: radial-gradient(circle, #5e01c9 60%, #2E056B 100%);
    }

    100% {
        background: radial-gradient(circle, #2E056B, #5e01c9);
    }
}

.request_quote_text {
    display: flex;
    /* Flexbox for layout */
    flex-direction: column;
    /* Stack elements vertically */
    justify-content: center;
    /* Center content vertically */
    align-items: center;
}

.request_quote_form {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 2% 10%;
    /* Padding */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    min-width: 280px;
    margin: 0 auto;
    /* Center horizontally */
    border-radius: 2.5rem;
    background: #fff;
    /* White background for the form */
    position: relative;
    top: -60px;
    /* Overlap by 30px */
    z-index: 2;
    /* Ensure it's above the background */
}

@media (max-width:500px) {
    .request_quote_form {
        max-width: 98%;
        min-width: 280px;
        border-radius: 1rem;
    }
}

.file-upload-section {
    background-color: #f0e4f6;
    border: 2px dashed #a68bb5;
    padding: 15px;
    border-radius: 5px;
}

/* contact us */
.contact_us_page {

    padding-left: 5%;
    padding-right: 5%;
}

.contact_us_background {
    background: linear-gradient(to top, #2E056B, #5e01c9);
    min-height: 50vh;
    border-bottom-left-radius: 45%;
    text-align: end;
    color: #F9E1CF;
    display: flex;
    /* Flexbox for centering */
    justify-content: end;
    /* Horizontally center the content */
    align-items: center;
    /* Vertically center the content*/
    padding-right: 5%;
}

.reach_out_info {
    padding: 3%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.reach_out_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}


/* .reach_out_container:not(:last-child) {
    border-bottom: 2px solid #2E056B;
    padding-bottom: 15px;
    margin-bottom: 15px; 
} */
.reach_out_text {
    text-align: center;
}

@media (max-width:500px) {
    .reach_out_text {
        text-align: center;
        max-width: 100%;
    }
}

/* Container styles */
.contact_form_section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.contact_form_image {
    flex: 1;
}

.contact_form_image img {
    width: 100%;
}

.contact_form_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

@media (max-width:500px) {
    .contact_form_container {
        width: 100%;
    }

}

/* Form styles */
.contact_form h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.contact_form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.contact_form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact_form .form-control:focus {
    outline: none;
    border-color: #5e01c9;
    box-shadow: 0 0 5px rgba(94, 1, 201, 0.5);
}

.contact_form textarea {
    resize: none;
}

.contact_form .primary_btn {
    width: 100%;
    padding: 10px;
    background-color: #5e01c9;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact_form .primary_btn:hover {
    background-color: #3b0191;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
    .contact_form_section {
        flex-direction: column;
    }

    .contact_form_image {
        display: none;
        /* Hide the image on smaller screens */
    }

    .contact_form_container {
        width: 100%;
    }
}

/* categories page */
.category_hyperlinks {
    color: black !important;
}

.category_hyperlinks:hover {
    color: gray !important;
}

.top_categories_image {
    background-image: url(/assets/statics/images/landing_image1.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    /* Horizontally center */
    align-items: center;
}

.header_categories_background {
    background: rgba(255, 255, 255, 0.3);
    /* Semi-transparent white background */
    backdrop-filter: blur(10px);
    /* Glass effect: blur the background */
    border-radius: 10px;
    /* Optional: rounded corners for a smoother look */
    padding: 30px 50px;
    text-align: center;
    color: white;
    /* Text color */
}

.bolden_header {
    background-color: #2E056B;
    color: white !important;
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.ads_and_quick_filters {
    display: flex;
    flex-direction: column;
    gap: 70px;
    flex-shrink: 0;
    width: auto;
}

.long_ad {
    width: 160px;
    max-width: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.long_ad img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .ads_and_quick_filters {
        display: none;
    }
}

.quick_nav_categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.categories_page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.categories_content {
    flex: 1;
    max-width: 100%;
    width: 100%;
}

.category_card {
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 540px;
    border-radius: 0px;
}

/* .category_image img {
    width: 150px;
    height: auto;
} */
.category-image {
    width: 100%;
    /* Make sure the image fills the container's width */
    height: 100%;
    /* Make the height fill the container */
    object-fit: cover;
    /* Ensure the image fills the container without distortion */
    border-radius: 8px;

}

.category_info {
    flex: 1;
}

.category_info h3 {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 5px;
}

.category_info .category {
    color: #5e01c9;
    margin-bottom: 10px;
}

.category_info p {
    font-size: 1rem;
    color: #666;
}

@media (max-width:800px) {
    .categories_page {
        width: 100%;
        min-width: 250px;
        padding-left: 10px;
        padding-right: 10px;
        gap: 10px;
    }

    .categories_content {
        width: 100%;
        max-width: 100%;
    }
}

.category_card_category {
    color: #2E056B;
    font-weight: 800;
}

.featured_manufacturers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* Responsive columns that adjust automatically */
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

.categories_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    /* Responsive columns that adjust automatically */
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

/* Header styling for categories sections */
.bolden_header {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
}

.bolden_header h3 {
    font-weight: 700;
}

.top_categories_image {
    width: 100%;
    margin-bottom: 20px;
}

.header_categories_background {
    background: linear-gradient(135deg, #2E056B 0%, #5e01c9 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
}

.header_categories_background h1 {
    color: #F9E1CF;
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* Media Queries for Responsiveness */

/* For large screens (screen width > 1200px) */
@media screen and (min-width: 1201px) {
    .featured_manufacturers {
        grid-template-columns: repeat(6, 1fr);
        /* 6 columns on large screens */
    }

    .categories_container {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on large screens */
    }
}

/* For smaller tablets and above (screen width <= 1200px) */
@media screen and (max-width: 1200px) {
    .featured_manufacturers {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on medium-large screens */
    }

    .categories_container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on medium-large screens */
    }
}

/* For tablets (screen width <= 1024px) */
@media screen and (max-width: 1024px) {
    .featured_manufacturers {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on medium screens */
    }

    .categories_container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on medium screens */
    }
}

/* For mobile screens and below (screen width <= 768px) */
@media screen and (max-width: 768px) {
    .featured_manufacturers {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on small screens */
        gap: 10px;
    }

    .categories_container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on small screens */
        gap: 10px;
    }

    .header_categories_background {
        padding: 30px 15px;
    }
}

/* For very small screens (screen width <= 480px) */
@media screen and (max-width: 480px) {
    .featured_manufacturers {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on very small screens for better use of space */
        gap: 8px;
    }

    .categories_container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on very small screens */
        gap: 8px;
    }

    .header_categories_background {
        padding: 20px 10px;
    }

    .bolden_header h3 {
        font-size: 1.2rem;
    }
}

/* For extra small screens (screen width <= 360px) */
@media screen and (max-width: 360px) {
    .featured_manufacturers {
        grid-template-columns: 1fr;
        /* 1 column on extra small screens */
    }

    .categories_container {
        grid-template-columns: 1fr;
        /* 1 column on extra small screens */
    }
}

/* listing Page */
.bread_crumbs {
    background-color: #ddd;
}

.bread_crumb_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    /* Vertically center */
    list-style: none;
    margin: 0;
    padding: 0;
}

.bread_crumb_list>li {
    /* border-left: #000 1px solid; */
    padding: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    /* Ensure the content is vertically centered */
}

.bread_crumb_list>li>a {
    color: black;

}

.bread_crumb_list>li:first-child {
    border-left: none;
    /* Remove left border for the first item */
}


.listing_explanation {
    padding: 10px;
}

.listing_explanation_details {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}

.listing_explanation_details>div {
    width: 40%;
    min-width: 250px;
}

.results_summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order_by_sort {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filtering_section_body {
    float: left;
}

.filtering_section {
    border: #000 1px solid;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.listings_container {
    display: grid;
    gap: 16px;
    /* Space between grid items */
    padding: 30px
}

@media (max-width: 768px) {
    .listings_container {
        grid-template-columns: 1fr;
        /* One column on small screens */
    }
}

@media (min-width: 769px) {
    .listings_container {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        /* At least two columns on larger screens */
        min-width: 769px;
    }
}

.listing_cards {
    border-radius: 0%;
    cursor: pointer;


}

.listing_card_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.listing_links {
    text-decoration: none;
    color: black;
}

.page-item>.page-link {
    color: black !important;
}

/* product-page */
.product_page {
    background-color: #f8f9fa;
}

.product_page>.categories_page {
    background-color: #f3f4f6;
    padding-top: 30px;
    padding-bottom: 40px;
}

.product_page>.bread_crumbs_product_page {
    background-color: #f3f4f6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bread_crumbs_product_page {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    list-style: none;
    background-color: #ffffff;
    padding: 15px 5%;
    margin-bottom: 0;
}

.model_years_text {
    max-height: 80px;
    position: relative;
    overflow-y: hidden;
    transition: var(--transition-smooth);
}

.model_years_text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.model_years_text.expanded::after {
    opacity: 0;
}

.price_and_stock {
    padding: 30px;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price_and_stock_accordion_item {
    margin: 15px 0;
    border: 1px solid rgba(46, 5, 107, 0.12) !important;
    border-radius: var(--border-radius-md) !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.product-details-tabs {
    margin-top: 30px;
}

.product-details-tabs .nav-tabs {
    border-bottom: 2px solid var(--primary-color);
    gap: 8px;
}

.product-details-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: var(--border-radius-sm);
    border-top-right-radius: var(--border-radius-sm);
    color: #4b5563;
    background-color: #f3f4f6;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition-smooth);
}

.product-details-tabs .nav-link:hover {
    border-color: rgba(46, 5, 107, 0.2);
    color: var(--primary-color);
    background-color: #e5e7eb;
}

.product-details-tabs .nav-link.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-content {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 0;
    padding: 2rem;
    background-color: #ffffff;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.technical_and_ad {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.technical_specs {
    background-color: white;

}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

/* Header Row */
thead th {
    background-color: #330066;
    /* Dark Purple */
    color: #F9E1CF;
    font-style: italic;
    text-align: left;
    padding: 10px;
}

/* Even Rows */
tbody tr:nth-child(even) {
    background-color: #e0e0e0;
    /* Light Grey */
}

/* Odd Rows */
tbody tr:nth-child(odd) {
    background-color: white;
    /* White Rows */
}

/* Table Cells */
td {
    padding: 10px;
    border: 1px solid #ddd;
    /* Light border */
}

/* authentication */
.authentication_page {
    background: linear-gradient(to top, #2E056B, #5e01c9);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Ensure it fills the viewport */
}

.auth_form {
    background-color: white;
    border-radius: 1.2rem;
    padding: 30px;
    margin: 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Ensure children stretch to the same height */
    flex-wrap: wrap;
    min-height: 400px;
    gap: 10px;
    /* Define a minimum height for the parent */
    min-width: 640px;
}

@media (max-width:800px) {
    .auth_form {
        min-width: 250px;
    }

}

.auth_form_design {
    flex: 1;
    /* Make it take up remaining space */
    min-width: 30%;
    /* Optional: Define a width */
    background: linear-gradient(270deg, #2E056B, #F9E1CF, #5e01c9);
    background-size: 400% 400%;
    animation: gradientAnimation 6s ease infinite;
    border-radius: 10px;
    /* Optional: Add rounded corners */
}

/* Keyframes for the animated gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.registration_errors {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.error_message {
    color: red;
}

.auth_form_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 65%;
}

input,
textarea,
select {
    border: 1.5px solid rgb(87, 87, 87) !important;
}

.form-select,
.country_select {
    height: 40px !important;

}

/* blog read */

.blog_content {
    padding-left: 5%;
    padding-right: 5%;
}

.blog_main_image {
    width: 100%;
    min-width: 250px;
    height: 60vh;
    border-radius: 0.8rem;
    box-shadow: 5px 5px 5px 5px gray;
}

.blog_main_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8rem;

}

.blog_time_span {
    color: gray;
}

.blog_content_area {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.body_content {
    width: 60%;
    min-width: 250px;
}

.related_blogs {
    width: 35%;
    min-width: 250px;
}

/* guides */



.guides-items {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1)
}

.guides-items:hover {
    box-shadow: 5px 5px 5px 5px #bebebe;
}

.guidesbody {
    width: 70%;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .guidesbody {
        width: 100%;
        margin-left: 10px;


    }
}



/* Footer styles */
footer {
    background-color: #232323;
    color: #F9E1CF;
    padding-top: 2%;
}

footer .upper_footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 5%;
    padding-right: 5%;
}

.company_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    /* Space between image and text */
    padding-right: 15px;
    border-right: 0.5px solid #F9E1CF;
}

.company_footer_image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-width: 100px;
    min-height: 80px;
    object-fit: contain;
}


footer h4 {
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 5px 0;
}

footer .socials_icons li {
    display: inline-block;
    margin-right: 10px;
}

footer .lower_footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: black;
}

/* Ensure footer stays at the bottom */
footer .lower_footer .footercope {
    font-size: 14px;
    color: #aaa;
}

footer a {
    color: #F9E1CF;
    /* Default link color */
    text-decoration: none;
    transition: all ease 0.6s;

}

footer a:hover {
    color: #fff;
    /* Hover color */
    text-decoration: underline;
}

/* Landing Page Visual Upgrades */

/* Glassmorphism search card */
.glass-card {
    background: rgba(15, 15, 15, 0.65); /* Darker glass background for maximum contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}
.glass-card p {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.glass-card .search_tab {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 16px;
}
.glass-card .search_tab:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}
.glass-card .active_tab {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    border-color: #ffffff !important;
    font-weight: bold;
}
.glass-card .active_tab:hover {
    background-color: var(--accent-hover) !important;
    color: var(--primary-color) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

/* Dynamic Promo Coupons */
.promo-coupon-card {
    background: #ffffff;
    border: 1px solid rgba(46, 5, 107, 0.1);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.promo-coupon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 225, 207, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.promo-coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(46, 5, 107, 0.08);
    border-color: var(--primary-color);
}
.promo-badge {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.promo-discount-val {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.promo-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Grayscale car make frames */
.brand-logo-frame {
    background-color: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}
.brand-logo-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.brand-logo-frame:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(46, 5, 107, 0.15);
    transform: translateY(-2px);
}
.brand-logo-frame:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Structured Ad Frames */
.ad-banner-frame {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    background-color: #ffffff;
}
.ad-banner-frame:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.ad-banner-frame img {
    width: 100%;
    height: auto;
    display: block;
}