
@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 */
}

/* 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: #74c53b;
    --primary-light: #6bbb29;
    --dark-brown: #498516;
    --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;
}


.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: #73c33b;
    --bs-btn-border-color: #73c33b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #73c33b;
    --bs-btn-hover-border-color: #73c33b;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #73c33b;
    --bs-btn-active-border-color: #73c33b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #73c33b;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #73c33b;
    --bs-gradient: none;
}

.btn-outline-primary

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

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

.btn-success {
    background-color: #75c73b;
    border-color: #75c73b;
}

.btn-success:hover {
    background-color: #63b22b;
    border-color: #75c73b;
}

.text-nav-icon {
    color: #68bb2e;
}


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

.header-sections {
    background-color: #75c73b;
}

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

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

/* 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 {
    margin-left: 39px;
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    color: var(--dark-brown) !important;
}

#SideNavBar {
    background: rgba(86, 166, 28, 0.83) !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 */
.hero-section {
    text-align: center;
    backdrop-filter: blur(10px);
    background-image: url('/assets/images/slide_bg.jpg');
}


.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;

}


.white-button, .white-button-primary {
    box-shadow: 0 8px 32px 0 rgba(18, 135, 0, 0.37) !important;
    border: white 1px solid;
    border-radius: 50px;
    backdrop-filter: blur( 4px )!important;
    -webkit-backdrop-filter: blur( 4px )!important;
}


.white-button {
    background: linear-gradient(to bottom, rgba(213, 206, 206, 0.63), rgba(255, 255, 255, 0.56), rgba(213, 206, 206, 0.63));
    color: #000;
}


.white-button:hover {
    background: linear-gradient(to bottom, #6abe2b, #75c73b, #5aa821);
    border: rgba(0, 0, 0, 0.45) 1px solid;
    color: #fcfcfc;
}



.white-button-primary {
    background: linear-gradient(to bottom, #6abe2b, #75c73b, #5aa821);
    color: #fffbfb;
}

.white-button-primary:hover {
    background: linear-gradient(to bottom, #6abe2b, #75c73b, #5aa821);
    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 */
}




/* 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;
    bottom: 8px;
    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;
    bottom: 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;
}

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



.product_title::first-letter {
    text-transform: uppercase;
}


.item_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_card_overlay i {
    font-size: 2rem;
    color: white;
}


.product_card:hover .item_card_overlay {
    opacity: 1;
    cursor: pointer;
}

.product_card:hover .card-body {
    background-color: #f8f9fa; /* Change to your desired color */
    transition: background-color 0.3s ease;
}

.category_list .active {
    background-color: #d4f3bb;
    color: #000;
}



.About_US_Cover {
    text-align: center;
    background: radial-gradient(rgb(58, 95, 150), rgb(15, 23, 60));
    backdrop-filter: blur(10px);
    height: calc(60vh - var(--navbar-height));
    background-image: url("/assets/images/about_cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.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;

}



#services {
    position: relative;/*
    background-image: url('/assets/images/printing_texture.png'), linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

/*@media (max-width: 576px) {
    #services {
        background-image: none;
    }
}*/


#services .card {
    background: transparent!important;
}

#services .card-body {
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background for content */
    border-radius: 10px;
    padding: 20px;
}

#services .card-body h5 {
    color: #333; /* Darker text color for better contrast */
    font-weight: bold;
}

#services .card-body p,
#services .card-body ul {
    color: #555; /* Softer text color */
}

.service_offered {
    margin-top: 200px!important;
}

#services .service_offered:last-child {
    margin-bottom: 200px!important;
}


@media (max-width: 576px) {
    .service_offered {
        margin-top: 50px!important;
    }

    #services .service_offered:last-child {
        margin-bottom: 50px!important;
    }
}

.service_offered ul li {
    margin: 10px;
}


#printers {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#printers h5 {
    color: #75c73b;
}

#printers p {
    color: #666;
}





#contact-form input, #contact-form textarea{
    font-size: 0.9em;
    padding: 10px;
}


#contact-form .form-label {
    color: #333;
    font-weight: 600;
}

#contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact-form .btn-primary {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#contact-form .btn-primary:hover {
    background-color: #5fa530;
    border-color: #5fa530;
}

#contact p a {
    text-decoration: none;
    font-weight: 700;
}

#contact p a:hover {
    color: #5fa530;
}




#social_media{
    position: fixed;
    z-index: 1000;
    width: 40px;
    right: 10px;
    bottom: 120px;

}
#social_media .list-group .list-group-item{
    padding: 0;
    margin: 0;
}
#social_media .list-group .list-group-item i {
    margin: 5px;
    font-size: 2em;
    color: #ffffff!important;
    text-shadow: 2px 2px 8px #444444;
}



#social_media .list-group .list-group-item.Whatsapp {
    background: #0bd254;
}

#social_media .list-group .list-group-item.Instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

#social_media .list-group .list-group-item.Messenger {
    background: linear-gradient(45deg, #33b4f0 0%, #20a8e7 25%, #0da9ea 50%, #0897e2 75%,#33b4f0 100%);
}

#social_media .list-group .list-group-item.Facebook {
    background: linear-gradient(45deg, #336ff0 0%, #2084e7 25%, #0d7cea 50%, #0897e2 75%,#33b4f0 100%);
}

#social_media .list-group .list-group-item.Facebook i {
    font-size: 1.7em;
}

#social_media .list-group .list-group-item.WeChat i {
    font-size: 1.7em;
}

#social_media .list-group .list-group-item.Messenger i {
    font-size: 1.8em;
}

#social_media .list-group .list-group-item:hover {

    color: #1c1f23!important;
}



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