body {
    background-color: #f8f9fa; /* Optional background color */
    margin: 0; /* Remove default margin to make video cover full width */
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.marginTop{
    margin-top: 95px !important;
}

#logo-container {
    background-image: url("../../assets/images/top-bg.jpg");
    text-align: center;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo-container img {
    max-height: 55px; /* Adjust the logo height as needed */
}

#buttons-container {
    display: flex;
}
.btn-nav {
    border: 1px solid black;
    background: transparent;
    transition: background-color 0.3s, color 0.3s;
}
.btn-nav:hover {
    background-color: red;
    color: white;
    border: 2px solid red;
    width: 160px;
}
.btn-default {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    margin-right: 15px;
    width: 150px;
}
.navbar {
    background-color: black;
}
.nav-link{
    font-weight: bold;
    margin-right: 20px;
    transition: background-color 0.3s, color 0.3s;
}
.dropdown-menu{
    animation: fadeIn 0.3s ease-in-out;
}
/* Custom styling for the dropdown */
.navbar-nav .nav-item:hover .dropdown-menu {
    background-color: black;
    color: white;
    display: block;
}

.dropdown-item{
    color: white;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
    background-color: red;
}

.navbar-dark .navbar-nav .nav-item.dropdown:hover .nav-link {
    background-color: red;
    color: white;
}

.navbar-dark .navbar-nav .nav-item.dropdown:hover .nav-link:hover {
    background-color: red;
    color: white;
}

.navbar-dark .navbar-nav .nav-item.dropdown:hover .nav-link:focus {
    background-color: rgba(0, 0, 0, 0.7);
}
#nav {
    position: relative;
    transition: all 0.3s;
    background: #1a1a1a;
    border-bottom: 3px solid red;
}
.search-bar {
    /*width: 350px;*/
    margin: 20px;
}
.input-group {
    width: 100%;
}
.input-group-text{
    background-color: red;
    color: white;
    cursor: pointer;
}
.sticky{
    background: black;
    padding: 5px !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

#video-container {
    position: relative;
    overflow: hidden;
}

#video-container video {
    width: 100%;
    height: auto;
    filter: brightness(50%) saturate(50%);
}

#video-container h1 {
    font-weight: bolder;
    font-size: 4em;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
}

@media (max-width: 767px) {
    .btn-default {
        margin-right: 0px;
    }
    #buttons-container {
        display: block;
    }
    #logo-container {
        display: block;
    }
    #video-container h1 {
        font-size: 2em;
    }

}
/* Preloader */
.preloaderBg {
    position: fixed;
    z-index: 10000;
    top: 0;
    background: white;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}

.preloader-logo {
    margin: auto;
    background: url(../images/BASSMAXXFINALTRANS.png) no-repeat center;
    background-size: 150px;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
    animation: fadeIn 1s ease-in-out infinite;
    /*background: black;*/
}

.preloader-circle {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #25a3ff;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.footer {
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0;
    background: black;
}

.footer-text {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 35px;
    flex-grow: 1;
    /* padding: 40px 0; */
    text-align: left;
}

.award-container img {
    width: 239px;;
}
.category-container h1{
    font-family: 'Teko', sans-serif;
    font-size: 3em;
    font-weight: bold;
    /*border-bottom: 2px solid red;*/
}
.category-tabs{
    margin-top: 15px;
    /*margin-bottom: 50px;*/
}
.nav-tabs{
    justify-content: center;
}
.nav-tabs .nav-link{
    color: black;
    font-size: 20px;
}
.nav-tabs .nav-link.active{
    color: red;
}
.product-container {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.product-container:hover{
    background-color: floralwhite;
    transform: scale(1.1);
}
.product-img {
    width: 100%;
    height: auto;
}

.product-info {
    padding: 10px;
    text-align: center;
}
.product-name{
    color: #005599;
}
.product-price{
    color: red;
    font-weight: bold;
}
.card:hover img {
    filter: brightness(0.7); /* Darken the image on hover */
}
.card-title{
    color: #005599;
}
.card:hover {
    cursor: pointer;
    transform: translateY(-5px); /* Move the card up on hover */
    transition: transform 0.3s ease; /* Add a smooth transition effect */
}

.card .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card .hover-overlay .mask {
    background-color: rgba(251, 251, 251, 0.15);
    height: 100%;
    width: 100%;
}
.detail-card {
    /*background-color: #fff;*/
    padding: 14px;
    border: none;
}

.detail-demo {
    width: 100%
}

.detail-card ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom: 0
}

.detail-card li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor: pointer
}

.detail-card img {
    display: block;
    height: auto;
    width: 100%
}
.date span {
    font-size: 12px
}

.btn-long {
    padding-left: 35px;
    padding-right: 35px
}

.detail-buttons {
    margin-top: 15px
}

.detail-buttons .btn {
    height: 46px
}

.detail-buttons .cart {
    border-color: #ff7676;
    color: #ff7676
}

.detail-buttons .cart:hover {
    background-color: #e86464 !important;
    color: #fff
}
.ring-detail-description{
    height: 50px;
    overflow: hidden;
}
.search-suggestions {
    position: absolute;
    top: 71%;
    right: 76px;
    z-index: 1000;
    width: 20%;
    border: 1px solid #ccc;
    background-color: #fff;
    display: none;
}
@media only screen and (max-width: 1000px) {
    .search-suggestions{
        top: 91%;
        width: 73%;
    }
}
.image-container {
    width: 75px; /* Adjust the width as needed */
    margin-right: 10px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}


.info-container span {
    font-weight: bold;
}

.search-suggestions .suggestion-item {
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid grey;
}

.search-suggestions .suggestion-item:hover {
    background-color: #f8f8f8;
}

.info-container .price{
    color: red;
}
.go-to-top-btn {
    display: none;
    position: fixed;
    bottom: 300px;
    right: 20px;
    background-color: black;
    color: red;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.go-to-top-btn:hover {
    background-color: red;
    color: black;
}
.image-column {
    display: flex;
    justify-content: space-between;
}

.image-container {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 25%; /* Adjust as needed */
}

.product-image {
    width: 100%;
    height: auto;
}

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

.overlay i {
    color: #fff;
    font-size: 24px;
}

.image-container:hover .overlay {
    opacity: 1;
}
.image-preview-container {
    flex-wrap: wrap;
}

.image-preview {
    margin: 5px;
    position: relative;
}

.file-upload-content {
    display: none;
}
.detail-about{
    color: #005599;
}
.product-attr{
    color: indianred;
}
.product-page-headaing{
    color: red;
    font-size: 30px;
    font-weight: bolder;
}
.contact-box{
    margin: 10px 75px 25px 75px; border-radius: 10px; padding: 50px; background-color: #1A1A1A;
}
.contact-mini-box{
    border: 2px solid red; border-radius: 10px; padding: 15px; margin: 20px;
}
.contact-icon{
    color: red; font-size: 40px !important;
}
.contact-text{
    color:white; margin-top: 10px
}

@media only screen and (max-width: 600px) {
    .contact-box {
        margin: 10px 0 25px 0;
    }
}
