.logo {
    mix-blend-mode: darken !important;
}

.text-color-purple {
    color: purple !important;
}

.no-wrap {
    white-space: nowrap !important;
}

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

.bg-purple {
    background-color: purple !important;
}

.bg-purple:hover {
    background-color: blueviolet !important;
}

.card-img-overlay:hover .card-title {
    font-size: 1.5rem;
    transition: font-size 0.5s ease;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 1);
}

.image-hover {
    transition: opacity 0.3s ease;
}

.card:hover .image-hover {
    opacity: 0.18 !important;
}

.navbar {
    z-index: 10;
}

.border-right{
    border-right: 2px solid purple;
}

.header-text-hover:hover {
    color: white !important;
    /* background-color: rgb(198, 23, 252); */
    background-color: purple;
    border-radius: 10px;
}
.text-hover:hover {
    color: white !important;
    background-color: purple;
    border-radius: 10px;
}

.hidden{
    display: none;
}

.font-70{
    font-size: 85% !important;
}

.border-none{
    border: none !important;
}


body {
    font-family: 'Roboto', sans-serif;
  }
  .product-title {
    color: purple;
    font-weight: bold;
    margin-bottom: 5%;
  }
  .description {
    margin-bottom: 5%;
  }
  .purple-section {
    margin-top: 5%;
    background-color: purple;
    color: white;
    padding: 15px 20px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 10px;
  }
  .light-orange-section {
    margin-top: 5%;
    background-color: purple;
    color: white;
    padding: 15px 20px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 10px;
  }
  .packing-size {
    display: flex;
    align-items: center;
  }
  .packing-size img {
    width: 40px;
  }
  .carousel-item img {
    max-height: 250px;
  }

  .oil-drop-image{
    background-color: transparent; /* Make the background transparent */
  }

  .custom-shadow {
    box-shadow: -1px 0px 20px 13px #8000807d;
  }

  .custom-table {
    width: 70%;
    margin: auto;
}

.custom-table .table-row .th-first {
    background-color: rgba(128, 0, 128, 0.441);
    color: white;
    border-radius: 20px 0px 0px 20px; 
    padding: 10px; 
    border: none;
}
.custom-table .table-row .th-second {
    background-color: rgba(128, 0, 128, 0.441);
    color: white;
    border-radius: 0px 20px 20px 0px; 
    padding: 10px; 
    border: none;
}
.custom-table .table-row {
    margin-bottom: 8px; 
    display: table; 
    width: 100%;
}

/* For Chrome, Safari, and Edge */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: white;
    border-radius: 10px;

}

::-webkit-scrollbar-thumb {
    background: rgb(104, 69, 124);
    border-radius: 10px;

}

::-webkit-scrollbar-thumb:hover {
    background: rgb(117, 0, 128);

}

.table-purple tr th{
    background-color: rgba(128, 0, 128, 0.441) !important;
}



.contact-section {
    background-color: Purple;
    color: white;
    padding: 40px 0;
}

.contact-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-section .icon-box {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-section .icon-box i {
    font-size: 2rem;
    color: #fff;
}

.form-section {
    padding: 40px 0;
}

.form-section h2 {
    margin-bottom: 30px;
}

.catalog{
    background-color: purple;
    color: white !important;
    border: 1.5px solid purple;
    border-radius: 10px;
}

.catalog:hover{
    background-color: white;
    color: purple !important;
    border: 1.5px solid purple;
    border-radius: 10px;
}

.footer-link:hover{
    color: #ac2bac !important;
}

.text-yellow{
    color: yellow;
}

.modal-content {
    height: 90vh;
}

#modalImage {
    width: auto;
    height: 70vh;
    object-fit: contain; 
}

.thumbnail-container {
    max-height: 70vh;
    overflow-y: auto;
}

.thumbnail-container img {
    width: 8vw;
    height: auto;
    margin-bottom: 10px;
    cursor: pointer;
    margin: 10px;
    border: 1.5px solid purple;
}

.modal-body {
    display: flex;
    justify-content: space-between;
    height: calc(90vh - 56px); 
    padding: 0;
}

.cursor-pointer{
    cursor: pointer;
}

.rotate-text {
    transform: rotate(-90deg);
    display: flex;
    height: 100%;
    white-space: nowrap;
    margin-top: 96%;
}

.nav-item .dropdown-menu {
    display: none;
  }
  
  .nav-item:hover .dropdown-menu {
    display: block;
  }
  
  .nav-link{
    transition: none;
  }
