
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&family=Inter:wght@100;300;400;500;700;800;900&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Style the main browser scrollbar */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scroll handle */
    border-radius: 6px; /* Rounded corners */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
}


:root {

    /* Color Styles */
    --primary: #f27432;
    --primary-light: #fda900;
    --dark-brown: #fda900;
    --gray-1: #798092;
    --gray-2: #E6E6ED;
    --white: #FFFFFF;

    /* Font Size Desktop */
    --header-1: 64px;
    --header-2: 48px;
    --header-3: 42px;
    --header-4: 32px;

    --text-medium: 18px;
    --text-regular: 16px;
    --text-light: 13px;

    /* Font Weight */
    --font-weight-bold: 700;
    --font-weight-semi-bold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    --font-weight-light: 300;
}


.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary)!important;
}


.text-second-primary {
    color: #ffce16 !important;
}

.btn {
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: var(--font-weight-medium);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary {
    --bs-btn-color: #0a53be;
    --bs-btn-border-color: #0a53be;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0a53be;
    --bs-btn-hover-border-color: #0a53be;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a53be;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0a53be;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0a53be;
    --bs-gradient: none;
}



.btn-primary:focus {
    background-color: var(--primary-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-second-primary {
    background-color: #ffce16;
    border-color: #ffce16;
}

.btn-second-primary:hover {
    background-color: #ffc600;
    border-color: #ffc600;
}

.btn-success {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-success:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.text-nav-icon {
    color: var(--primary);
}


#MainNavBar {
    z-index: 1000!important;
}

.header-sections {
    background-color: var(--primary);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Navbar Links */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #ffffff !important;
    font-size: 0.9em;
}

/* Navbar Button */
.navbar-nav .btn-primary {
    margin-left: 15px;
}


.navbar {
    padding-top: 20px;

}

.navbar_right_item div{
    padding: 0px 25px;

}

.navbar_right_item i{
    font-size: 1.6em;
}




a.nav-link {

    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    color: var(--dark-brown) !important;
    padding-top: 17px!important;
    padding-bottom: 17px!important;
    padding-left: 19.5px!important;
    padding-right: 19.5px!important;
}

#MainNavBar a.nav-link:hover {
   background-color: var(--primary-light) !important;
}

.navbar .nav-item .active{
    background-color: var(--primary-light) !important;
}


.social_media_badge {
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    font-size: 0.8em;
    color: #ffffff !important;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.social_media_badge:hover {
    background: var(--primary-light) !important;
}

#SideNavBar {
    background: rgba(43, 43, 43, 0.81) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
}



#SideNavBar a.nav-link {
    margin-left: 39px;
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    color: #FFFFFF!important;
}

/* MOBILE VERSION ONLY */

@media (max-width: 576px) {

    /* NAVBAR */

    .navbar {
        padding-top: 0px;
    }

    a.nav-link {
        margin-right: 7px;
    }

    .navbar-collapse {
        background: rgb(15, 60, 29) !important;
    }

    .hero-section .hero_content{
        line-height: 2em;
    }

    .hero-section .hero_content p{
        margin-top: 20px;
    }

}



@media (max-width: 991px) {

    #SideNavBar {
        display: flex;
    }

}


:root {
    --navbar-height: 0px;
}


/* Hero Section Styles */


.white-button:hover {
    background: linear-gradient(to bottom, #daaf06, #ffd544, #daaf06);
    border: rgba(0, 0, 0, 0.45) 1px solid;
    color: #000000;
}



.white-button-primary {
    background: linear-gradient(to bottom, #daaf06, #ffd544, #daaf06);
    color: #000000;
}

.white-button-primary:hover {
    background: linear-gradient(to bottom, #daaf06, #ffd544, #daaf06);
    border: rgba(0, 0, 0, 0.45) 1px solid;
    color: #000000;
}

/* MOBILE VERSION ONLY */

@media (max-width: 576px) {
    .white-button, .white-button-primary {
        font-size: 1em!important;
        padding: 15px 28px!important;
        margin: 10px;
    }

}


footer {
    background-color: #f3f3f3 !important; /* Dark blue color */
    color: #000000!important; /* White text color */
    padding-top: 50px; /* Adjust the top padding as needed */
    font-size: 0.95em;
}

footer h5 {
    color: var(--primary); /* White heading color */
}

footer a {
    color: #000000; /* White link color */
}

footer a:hover {
    color: #000000; /* Lighter color on hover */
}








.text-justify {
    text-align: justify;
}



.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.icon-container {
    border-radius: 50%;
    background-color: #f0f8ff;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}




/* CSS Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animated-text {
    opacity: 0; /* Start hidden */
    animation-duration: 1s; /* Duration of the animation */
    animation-fill-mode: both; /* Maintain animation state when done */
}

.animated-text.fadeInUp {
    animation-name: fadeInUp; /* Apply fade-in-up animation */
}



.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon i{
    color: var(--primary-light) !important;
}
.service-card:hover h3{
    color: var(--primary) !important;
}



.our_partners_wrapper {
    overflow: hidden; /* Hides the overflowing content */
    width: 100%; /* Full width of the container */
}

.our_partners {
    display: flex;
    width: max-content; /* Ensure the width is based on content size */
    animation: scroll 20s linear infinite; /* Animation for continuous scroll */
}

.our_partners img {
    height: 100px;
    width: auto;
    margin: 25px;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0); /* Start at initial position */
    }
    100% {
        transform: translateX(-50%); /* Scroll only by 50% to create continuous loop */
    }
}




/* Style for the carousel indicators */
.carousel-indicators {
    position: absolute!important;
    bottom: 10px!important;
    right: 20px!important;

}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 100%!important;
    background-color: #ddd; /* Default color */
    margin: 5px;
    border: 0.1px rgba(92, 92, 92, 0.79) solid;
}

.carousel-indicators .active {
    background-color: var(--primary); /* Active indicator color */

}


#LandingCategoryPanel .top-arrow {
    position: absolute;
    top: 0;
    margin-left: 50px;
    z-index: 10;

    /* Create the main triangle */
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #ffffff; /* Main triangle color */
}







/* Floating cart icon styles */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; /* Reset line-height to avoid extra height */
}


#cart-item-count-nav_bar {
    position: absolute;
    top: 1px;
    right: 7px;
}

.cart-item-count {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background-color: #e83240;
    color: #fff;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
}

.notification_dot_nav {
    position: absolute;
    top: 10px;
    right: -7px;
    background-color: #e83240;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
}

.notification_item {
    background: #f6f6f6;
}
.notification_item h7 {
    font-size: 0.8em;
    color: #3e3e3e;
    margin-bottom: 10px!important;
}

.notification_item p {
    font-size: 0.8em;
}

.notification_item small {
    font-size: 0.6em;
}

.notification_item.new_notification {
    background: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}



/* Adjust left and right position of carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;

}


#bestSellingCarousel .carousel-control-prev,
#bestSellingCarousel .carousel-control-next {
    width: auto;
}

#bestSellingCarousel .carousel-control-prev-icon,
#bestSellingCarousel .carousel-control-next-icon {
    background-color: rgba(26, 29, 32, 0.75) !important; /* Change icon color if needed */
    border-radius: 100%;
}



/* Positioning for the dropdown */
.dropdown-with-arrow {
    position: relative;
    padding-top: 10px; /* Space for the arrow */
}

/* Arrow styling */
.dropdown-arrow {
    position: absolute;
    top: -8px; /* Position above the dropdown */
    left: 20px; /* Adjust to align under the toggle */
    width: 16px;
    height: 16px;
    background: white; /* Match the dropdown background */
    transform: rotate(45deg); /* Create a triangle with rotation */
    border-left: 1px solid #ccc; /* Add borders to match dropdown */
    border-top: 1px solid #ccc;
    z-index: 1;
}












/* Dropdown container */
.dropdown-menu {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

/* Add spacing and hover effect for items */
.dropdown-menu .dropdown-item {
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;

}

.dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}


.product-overview-card .card-body {
    background-color: #fafafa !important;
}

.product-overview-card p{
    font-size: 0.9em;
    margin-top: 10px;
    color: #0f70ff;
}



.carousel-item .col-12 {
    flex: 0 0 20%;  /* Each item takes up 20% of the slide (5 items per row) */
    max-width: 20%;
}




.normal_price {
    font-size: 0.8em !important;
}



.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    z-index: 1030;
}
.bottom-nav .nav-link {
    font-size: 10px;
    color: #040404 !important;
    padding: 0px!important;

}

.bottom-nav .nav-link:hover {
    color: var(--primary-light) !important;

}

.bottom-nav .cart-item-count-nav {
    right: 40px!important;
    top: 5px!important;
}



.breadcrumb-item a{
    text-decoration: none!important;
    color: rgba(33, 37, 41, 0.75)!important;
}


.truncate-text-product-name {
    display: -webkit-box!important;
    -webkit-line-clamp: 2!important;
    -webkit-box-orient: vertical!important;
    overflow: hidden!important;
}









.slide_close_animation {
    transition: transform 0.5s ease-in-out;
    transform: translateX(-100%) !important;

}
.slide_open_animation {
    transition: transform 0.5s ease-in-out;
    transform: translateX(0%) !important;

}




/*lading page slide text */
.carousel-item {
    position: relative;
}

.carousel-caption {
    position: absolute;
    padding: 15px;
    color: white; /* Optional: Adjust text color for better contrast */
}



.hero_slider_content {
    z-index: 100;
}


/* Top Left */
.slide_pos_0 {
    top: 0;
    left: 0;
    text-align: left;
    width: 100%;
}

/* Top Center */
.slide_pos_1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

/* Top Right */
.slide_pos_2 {
    top: 0;
    right: 0%;
    text-align: right;
    width: 100%;
}

/* Middle Left */
.slide_pos_3 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
    width: 100%;
}

/* Middle Center */
.slide_pos_4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* Middle Right */
.slide_pos_5 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    text-align: right;
    width: 100%;
}

/* Bottom Left */
.slide_pos_6 {
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%;
}

/* Bottom Center */
.slide_pos_7 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

/* Bottom Right */
.slide_pos_8 {
    bottom: 0;
    right: 0;
    text-align: right;
    width: 100%;
}
/*lading page slide text */




.breadcrumb li {
    font-size: 0.9em!important;
}

.sticky-md-top {
    top: 10em!important;
}



.capital_first_letter {
    text-transform: capitalize;
}


.tree {
    list-style: none;
    font-weight: 410;
    font-size: 0.9em!important;
}

.tree li {
    margin: 4px 0;
    text-transform: capitalize;

}


.tree ul li {

    display: block;

    margin-left: -17px;
    color: var(--bs-list-group-color);
    text-decoration: none;
    background-color: var(--bs-list-group-bg);
}




.accordion-button:not(.collapsed) {
    background-color: #f4f4f4;
}


.ui-slider-handle {
    background-color: #f27432 !important;
    border-radius: 100% !important;
    border-color: #1a1d20!important;
}

.ui-slider-range {
    background-color: #fda900 !important;
}

button:focus,
a:focus,
.accordion-button:focus,
input:focus,
textarea:focus,
select:focus {
    box-shadow: none!important;
}


.out_of_stock_badge {
    font-size: 0.7em;
    color: white;
    left: 15px;
    top: 15px;
}






.pagination {
    justify-content: center;
}

.pagination .page-link {
    color: var(--gray-1);

    border: 1px solid var(--gray-2);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.pagination .page-link:hover {
    color: var(--white);
    background-color: var(--primary);

}

/* Active Page */
.pagination .active .page-link {
    color: var(--white);
    background-color: var(--primary);
}

/* Disabled Page */
.pagination .disabled .page-link {
    color: var(--gray-1);
    background-color: var(--gray-2);

}






.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 400px;
    max-width: 100%;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    z-index: 9999;
    animation: slideIn 0.5s ease-out, slideOut 0.5s ease-out 2.5s forwards;
}

@keyframes slideIn {
    from {
        right: -450px;
    }
    to {
        right: 20px;
    }
}

@keyframes slideOut {
    from {
        right: 20px;
    }
    to {
        right: -450px;
    }
}



.item_qty_input {
    width: 65px!important;
    font-size: 1em!important;
    text-align: center;
}

.item_qty_input::-webkit-outer-spin-button,
.item_qty_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

