html body {
}

a {
    color: #000;
    text-decoration: none;
}

.book-icon-cart {
    color: #3281db;
}
.book-icon-cart:hover {
    color: #019315;
}

#menu {
    background-color: #1f437f;
}
#menu .categories {
    background-color: #142c58;
}
.nav-link {
    color: #000 !important;
}

.bg-grey {
    background-color: #D8D8D8;
}

#footer li {
    color: #fff !important;
}

#footer a {
    color: #fff !important;
}

nav i {
    font-size: 20px !important;
}

.sidebar {
    border: #1f437f 2px solid;
}

ul.no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.sidebar li {
    border-bottom: #ECEFF2 1px solid;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
}

#top {
    background-color: #000;
}

/*Social Media Icons*/
.twitter-icon {
    color: #369BEB;
}
.facebook-icon {
    color: #395597;
}
.instagram-icon {
    color: #AB3387;
}

.youtube-icon {
    color: #ED3833;
}

#banner {
    background-color: #F6F9FC;
}
.more-text {
    display: none;
    overflow: hidden;
}



/*Card*/
#categories-block .card-custom {
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Ensures nothing spills out of the card's rounded corners */
}
#categories-block .card-custom .card-img-top {
    height: 120px; /* Height adjusted to include badge */
    object-fit: cover; /* Cover the whole area */
}
#categories-block .card-body {
    position: relative; /* Relative for absolute positioning of badge */
    padding-top: 40px; /* Space for badge */
    text-align: center; /* Center text by default */
}
#categories-block .card-badge {
    width: 50px; /* Badge width */
    height: 50px; /* Badge height */
    border-radius: 50%; /* Make it round */
    background-color: #fff;
    border: #1f437f 2px solid; /* Badge background color */
    position: absolute; /* Absolute to float over image */
    bottom: 50%; /* Position at the bottom center of the image */
    left: 15px; /* Position from the left */
    transform: translateY(50%); /* Adjust for exact centering vertically */
    display: flex; /* Flex to center content inside badge */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    font-size: 18px; /* Font size for the number */
    font-weight: bold;
    color: black; /* Text color for the number */
}
#categories-block .card-title {
    font-size: 18px; /* Title size */
    margin-bottom: 0; /* Reduce space below title */
}
#categories-block .title2 {
    font-size: 15px; /* Title size */
    margin-bottom: 0; /* Reduce space below title */
}
#categories-block .card-text {
    color: #494949; /* Text color */
    font-size: 0.8rem; /* Text size */
}
#categories-block .product-info {
    position: absolute; /* Absolute positioning */
    bottom: 45%; /* Align with badge */
    left: 75px; /* Position from the left, next to the badge */
    color: #494949;
    transform: translateY(50%); /* Adjust for exact centering vertically */
    font-size: 0.7rem; /* Text size */
}


#categories-block .product-info2 {
    position: absolute; /* Absolute positioning */
    bottom: 45%; /* Align with badge */
    left: 65px; /* Position from the left, next to the badge */
    color: #494949;
    transform: translateY(50%); /* Adjust for exact centering vertically */
    font-size: 0.7rem; /* Text size */
}
/* Style for the custom cards */
.card-custom {
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition for transform and box-shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Initial box shadow */
}

/* Hover effect */
.card-custom:hover {
    transform: scale(1.05); /* Slightly scale up the card */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Increase box shadow for a "lifted" effect */
}
/*End Cards*/



/*
Bestsellers Card Start
*/

#bestsellers .card-custom {
    border-radius: 15px;
    overflow: hidden;
}

#bestsellers .card-custom .card-img-top {
    height: 95px;
    object-fit: cover;
}

#bestsellers .card-body {
    position: relative;
    padding-top: 55px;
    text-align: center;
}

#bestsellers .card-badge {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    border: #1f437f 2px solid;
    position: absolute;
    bottom: 62%;
    left: 15px;
    transform: translateY(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: black;
}

#bestsellers .card-title {
    font-size: 18px;
    margin-bottom: 0;
}

#bestsellers .card-text {
    margin-top: 10px;
    color: #494949;
    font-size: 10px;
}

#bestsellers .product-info {
    position: absolute;
    bottom: 55%;
    left: 50px;
    color: #494949;
    transform: translateY(50%);
    font-size: 10px;
}

#bestsellers .product-info2 {
    position: absolute;
    bottom: 35%;
    left: 65px;
    color: #494949;
    transform: translateY(50%);
    font-size: 0.7rem;
}

/*
Bestsellers Card End
*/

/*Combo Hover Effect*/

/* Image Hover Effect */
.hover-image {
    transition: transform 0.3s ease;
}
.hover-image:hover {
    transform: scale(1.05); /* Slightly enlarges the image */
}

/* Button Hover Effect */
.hover-btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.hover-btn:hover {
    background-color: #007bff; /* Darker shade of primary color, adjust as needed */
    color: white; /* Change text color on hover */
}
/*Combo Hover Effect End*/

/*Testimonials*/
#testimonialCarousel {
    color: #333; /* Adjust the text color as needed */
    text-align: center;
    padding: 100px 50px; /* Adjust the padding as needed */
    position: relative;
}

.testimonial-container {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 80px 20px 20px; /* Increased top padding to accommodate the profile image */
    border-radius: 10px;
    font-style: italic;
    margin-top: 50px; /* Adjust as needed for your layout */
}

.testimonial-text {
    position: relative;
    z-index: 10; /* Ensure the text is above the profile image */
}

.testimonial-image {
    width: 120px; /* Width of the rectangular image */
    height: 160px; /* Height of the rectangular image, making it vertical */
    object-fit: cover; /* Ensure the image covers the area */
    border: 3px solid white; /* Adds a border around the image */
    position: absolute;
    top: -80px; /* Adjust based on the height to properly position it above the container */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}


.testimonial-author {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
}

/*Testimonials*/

.extra-content {
    display: none;
}

/*Navigation Start*/
#header a {
    font-size: 14px;
}
/* Enhance the overall appearance of the navbar */
.navbar {
    font-size: 14px; /* Adjust font size as needed */
    background-color: #FFFFFF; /* Change navbar background */
    box-shadow: 0 2px 4px rgba(0,0,0,.1); /* Add subtle shadow for depth */
}

/* Style for navbar links */
.navbar-nav .nav-link {
    color: #333333; /* Change the font color */
    padding: 8px 15px; /* Adjust padding */
    transition: color 0.3s, border-bottom 0.3s; /* Smooth transition for color and border */
}

/* Hover effect for navbar links */
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    color: #1f437f; /* Change font color on hover */
    text-decoration: none; /* Remove underline */
    border-bottom: 3px solid #1f437f; /* Add underline on hover */
}

/* Active state for navbar links to indicate the current page */
.navbar-nav .nav-item.active .nav-link {
    color: #1f437f; /* Change font color for active state */
    border-bottom: 3px solid #1f437f; /* Add underline for active state */
}

/* Style for the navbar toggler */
.navbar-toggler {
    border: none; /* Remove border */
    outline: none; /* Remove outline */
}

/* Style for the navbar-toggler-icon */
.navbar-toggler-icon {
    background-image: url('path/to/your/custom-toggler-icon.png'); /* Path to a custom icon if desired */
}

/* Dropdown menu style */
.dropdown-menu {
    border: 0; /* Remove border */
    box-shadow: 0 4px 8px rgba(0,0,0,.1); /* Add shadow for depth */
    margin-top: 0; /* Adjust top margin */
}

/* Style for dropdown items */
.dropdown-item {
    color: #333333; /* Change font color */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and color */
}

/* Hover effect for dropdown items */
.dropdown-item:hover, .dropdown-item:focus {
    background-color: #1f437f; /* Change background color on hover */
    color: #FFFFFF; /* Change font color on hover */
}

/*Navigation End*/

/*Search Box Start*/
/* Style the container */
.input-group {
    display: flex;
    flex-wrap: nowrap;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style the input field */
.input-group .form-control {
    border: 0;
    margin: 0;
    padding: 10px;
    flex-grow: 1;
}

/* Style the dropdown */
.input-group .form-select {
    border: 0;
    padding: 10px;
    background: #F8F8F8;
    color: #333;
}

/* Style the search button */
.input-group .btn-secondary {
    background-color: #142c58; /* Updated color */
    border: 0; /* Remove border */
    color: #FFFFFF; /* Text color */
    padding: 10px 15px; /* Padding */
    border-radius: 0 5px 5px 0; /* Rounded right corners */
}

/* Change button color on hover/focus */
.input-group .btn-secondary:hover,
.input-group .btn-secondary:focus {
    background-color: #142c58; /* Darker shade for hover/focus state */
    color: #FFFFFF;
}

/* Ensure the dropdown menu has consistent padding and not too wide */
.input-group .form-select {
    min-width: 160px; /* Minimum width */
    text-overflow: ellipsis; /* Prevent text from breaking the layout */
}


/*Search Box End*/

#footer {
    background-color: #000;
}

#footer li {
    margin-bottom: 10px;
}

#footer li .fa {
    color: #961e1e;
}

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

.product_name {
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;

}
.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown-menu{
    margin-top: 0;
}

#latest-news .news-box {
    background-color: #fff;
    box-shadow: 5px 5px 5px #494949;
    border: 1px solid #b8b8b8;
}

red {
    font-size: 15px;
    color: #961e1e;
}

#bestsellers img {
   max-height: 140px;
}

h4 {
    font-weight: bold;
}

.small-text {
    font-size: 0.9em; /* Adjust the size as needed */
}

.bg-#494949 {
    background-color: #D8D8D8;
}


.medium {
    font-size: 11px;
}

.cat-description {
    font-size: 11px;
    line-height: 16px;
}

.cat-price {
    font-size: 12px
}


.cat-add-to-cart-btn {
    background-color: transparent;
    border: none;
    padding-left: 0px;
    padding-right: 0px;

}
.about-us-page p{
    font-weight: 400;
    font-size: 12px;
}
.about-us-page p img{
    float: left;
    padding: 0 15px 14px 0;
}
.about-us-page ul{
    list-style-type: disc;
}
.about-us-page ul li {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}

.gradient-blackberry {
    background-color: #f9dc00 !important;
    background-image: none !important;
    color: #000 !important;
    font-weight: bold !important;
}
.gradient-blackberry .font-large-1 {
    font-weight: bold !important;
    font-size: 24px !important;
}
.black {
    color: #000;
}

#category-icons img {
    height: 170px !important;
    width: auto;
}

.head1 {
    font-size: 30px;
}

.head2 {
    font-size: 25px;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 0.8rem;
    background-color: #dc3545;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 50%;
}
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    /*
Bestsellers Card Start
*/

    #bestsellers .card-custom {
        border-radius: 15px;
        overflow: hidden;
    }

    #bestsellers .card-custom .card-img-top {
        height: 75px;
        object-fit: cover;
    }

    #bestsellers .card-body {
        position: relative;
        padding-top: 45px;
        text-align: center;
    }

    #bestsellers .card-badge {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #fff;
        border: #1f437f 2px solid;
        position: absolute;
        bottom: 65%;
        left: 15px;
        transform: translateY(50%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        color: black;
    }

    #bestsellers .card-title {
        font-size: 18px;
        margin-bottom: 0;
    }

    #bestsellers .card-text {
        margin-top: 10px;
        color: #494949;
        font-size: 10px;
    }

    #bestsellers .product-info {
        position: absolute;
        bottom: 56%;
        left: 50px;
        color: #494949;
        transform: translateY(50%);
        font-size: 10px;
    }

    #bestsellers .product-info2 {
        position: absolute;
        bottom: 35%;
        left: 65px;
        color: #494949;
        transform: translateY(50%);
        font-size: 0.7rem;
    }

    /*
    Bestsellers Card End
    */

}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {

}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px){
    .product-category {
        width: 48%;
    }
    .col-lg-25 {
        width: 25%;
    }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px){
    .product-category {
        width: 48%;
    }
    .col-lg-25 {
        width: 20%;

    }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
    .product-category {
        width: 48%;
    }
    .col-lg-25 {
        width: 20%;
    }
}

@media only screen and (min-width: 992px) {
    .navbar .navbar-nav .nav-item .nav-link {
        padding: 0 0.5em;
    }

}
