body {
    font-family: "Poppins", serif;
}

.nav-item>.active {
    color: #1e2fb8 !important;
}

.nav-item>.nav-link:hover {
    color: #1e2fb8 !important;
}

.content {
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.content-heading {
    text-transform: uppercase;
    color: #5a5a5a;
    font-weight: bold;
}

.breadcrumb-header {
    text-transform: uppercase;
    color: #5a5a5a;
    font-weight: bold;
}

.line-with-text {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #a9a9a9;
}

.line-with-text::after {
    content: '';
    height: 2px;
    width: 100px;
    background-color: #1e2fb8;
    /* Adjust the color as needed */
    margin-left: 8px;
    /* Space between the line and the text */
}

.line-with-text-center {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #a9a9a9;
    justify-content: center;
}

.line-with-text-center::after {
    content: '';
    height: 2px;
    width: 100px;
    background-color: #1e2fb8;
    /* Adjust the color as needed */
    margin-left: 8px;
    /* Space between the line and the text */
}

.card-title {
    color: #5a5a5a;
    font-weight: bolder;
}

.card-title:hover {
    color: #1e2fb8;
}

.image-container {
    overflow: hidden;
    /* Prevent zoom from overflowing the card */
}

/* Add a smooth transition effect */
.zoom-on-hover {
    transition: transform 0.3s ease;
    /* Smooth zoom effect */
}

/* Zoom effect on hover */
.zoom-on-hover:hover {
    transform: scale(1.05);
    /* Zoom in by 10% */
}

.card-product {
    min-height: 70vh;
}

.card-body>a {
    text-decoration: none;
}

.unstyled-list {
    list-style: none;
    /* Removes bullets */
    padding: 0;
    /* Removes padding */
    margin: 0;
    /* Removes margin */
}

.unstyled-list>li>a {
    text-decoration: none;
    color: #5a5a5a;
}

.brand-link {
    text-decoration: none;
    margin-right: 10px;
}

.heading-breadcrumb {
    margin-top: 50px;
}

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

.card-img-fix-300 {
    height: 300px;
    object-fit: cover;
    /* Ensures the aspect ratio is maintained */
    width: 100%;
    /* Ensures the image adapts to the card width */
}

.card-img-fix-400 {
    height: 400px;
    object-fit: cover;
    /* Ensures the aspect ratio is maintained */
    width: 100%;
    /* Ensures the image adapts to the card width */
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease; /* Fade-out animation */
}

#preloader.hidden {
    opacity: 0; /* Make the preloader invisible */
    pointer-events: none; /* Prevent interaction during transition */
}

.logo img {
    width: 200px;
    /* Adjust the size of your logo */
    margin-bottom: 20px;
}

.loading-line {
    width: 10%;
    height: 4px;
    background-color: #1e2fb8;
    animation: loading 2s infinite;
    border-radius: 2px;
}

@keyframes loading {
    0% {
        transform: translateX(-800%);
    }

    50% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(800%);
    }
}