@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');
@import url('https://fonts.cdnfonts.com/css/lucida-sans');


html, body {
    overflow-x: hidden;
    width: 100%;
    background-color: #f4f4f4;
    font-family: 'Helvetica Neue', Helvetica, 'Lucida Sans', Arial, sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

.nav-item .distributor-btn {
    background-color: darkgreen; /* Green background */
    color: white; /* White text */
    border: 2px solid darkgreen; /* Green border to match background */
    padding: 8px 16px; /* Adjust padding for better clickability */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make the link behave like a button */
    transition: all 0.3s ease; /* Smooth transition for hover */
}

.logo-img{
    width: 150px;
}

.nav-navigate-items{
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.nav-navigate-items li{
    margin-left: 15px;
}

.navbar-brand{
    margin-left: 50px;
}


.nav-search-cart ul{
    margin-left: 150px;
}

.nav-search-cart ul li svg{
    height: 1.5em;
    width: 1.5em;
}

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

  .dropdown-menu{
    text-align: start !important;
    font-family:  Helvetica, 'Helvetica Neue', 'Lucida Sans';
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
    text-transform: capitalize;
  }
.nav-text{
   font-family:  Helvetica, 'Helvetica Neue', 'Lucida Sans';
   font-size: 12px !important;
   font-weight: 700 !important;
   letter-spacing: .2em !important;
   text-align: center !important;
   text-transform: capitalize;
}


/* Default: Show desktop images, hide mobile images */
.desktop-img {
    display: block !important;
}
.mobile-img {
    display: none !important;
}

/* Mobile styles: Hide desktop images, show mobile images */
@media screen and (max-width: 768px) {
    .desktop-img {
        display: none !important; /* Ensure it's hidden on mobile */
    }
    .mobile-img {
        display: block !important; /* Ensure it's shown on mobile */
    }
}


/* Ensure images fit the screen properly */
.carousel-inner img {

        width: 100%;
        height: auto;
        object-fit: cover;
}


.category-text h1{
    color: rgb(52, 52, 52);
    background-clip: text;
    text-align: center;
    font-weight: 400;
    line-height: normal;
    letter-spacing: normal;
    font-family: Poppins !important;
    font-size: 40px !important;
}

.products-category{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* Ensure images maintain aspect ratio and cover their space without stretching */
.card-img-top {
    width: 100%;
    height: auto;  /* Let the height adjust automatically based on the image's aspect ratio */
    object-fit: cover; /* Prevents stretching the image */
  }
  
  /* Optional: Add smooth hover animations to card elements */
  .card-body:hover {
    transform: translateY(-5px);  /* Slightly lift the card on hover */
    opacity: 0.9;  /* Make the card a bit transparent on hover */
    transition: transform 0.3s ease, opacity 0.3s ease;  /* Smooth transition for the hover effect */
  }
  

.card{
    border: 0px !important;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 20px;
}

.card img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    padding: 10px;
}

.c-start{
    margin-left: 50px;
}

.c-end{
    margin-right: 50px;
}

.card-body{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-title{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.02em;
}t

.card-text{
    text-align: center;
    color: #444;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.temp{
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.02em;
}

.b-r-3{
    border-radius: 3px !important;
}

.w-c-u-dec{
    text-align: center;
    margin-left: 200px;
    margin-right: 200px;
    font-size: 20px;
}

.wcu-card-img-top {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    border: 3px;
}

.wcu{
    margin-top: 10px;
    text-align: center;
}

.icon-img{
    width: 50px;
    height: 50px;
}


a{
    text-decoration: none;
}

.social-text{
    display: flex !important;
    align-items: center;
}

.footer-contact-icon{
    width: 25px;
}

@media (max-width: 768px) {
    .products-category {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .icon-img {
        width: 30px;
        height: 30px;
    }
}



@media (max-width: 480px) { 
    .products-category {
        flex-direction: column;
    }
    .w-c-u-dec {
        margin-left: 20px;
        margin-right: 20px;
    }
    .carousel-inner img {
        /* width: 100vw; */
        height: auto !important;
    }
    .c-start {
        margin-left: 0;
    }
    .c-end{
        margin-right: 0;
    }
    .card-body p{
        margin-left: 20px;
        margin-right: 30px;
    }
}