*{
    margin: 0;
    padding: 0;
}
.marquee-container{
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px 0;
    background: #000000;
    white-space: nowrap;
    width: 100%;
}
.marquee-content{
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
   
}
@media (max-width:760px) {
    .marquee-content{
        font-size: 1.2rem;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.glass{
    color:rgb(240, 86, 14);
}
.gear{
    color: #C0C0C0;
}
.eye{
    color: #000080;
}

/*Style to remove focus border*/
button:focus,input:focus{
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus,.form-control:focus{
    outline: none;
    box-shadow: none;
}

/*Style for toggler*/
.custom-toggler i{
    color: #000;
    font-weight: bolder;
    font-size: 25px;
}

/*Style for brand logo*/
.logo{
    width: 4em;
}
@media (max-width:768px) {
    .logo{
        width: 3em;
    }
}



.navbar-brand{
    font-family: "Cinzel_Decora";
}

/*Style for the navigation and toggle bar*/
.navigation{
    background-color: #FFFDD0;
}
.navbar-toggler{
    border: none;
}

/*Style for the dropdown in the navigation*/
.dropdown-menu{
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.nav-item.dropdown:hover .dropdown-menu{
    display: block;
}

   .dropdown-item:hover{
        background-color: #bd9b06ea;
    }

    .dropdown-item.active{
        background-color: #bd9b06ea;
    }

@media (min-width: 770px) {
    .nav-link:hover{
    border-bottom: 2px solid #bd9b06ea;
    }
}

@media (min-width: 770px) {
    .nav-link.active{
    border-bottom: 2px solid #bd9b06ea;
}

}

.social-icons {
            color: #1a1a1a;
            font-size: 1.5rem;
            margin-left: 15px;
            transition: color 0.3s;
        }

 .social-icons:hover {
            color: #b8860b; /* Gold hover color */
        }


/*STYLE FOR SWIPER PICTURES IN THE HEADER*/
.swiper {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
.swiper img{
    object-fit: cover;
    width: 100%;
    height: 60vh;
}
@media (max-width: 760px) {
    .swiper img{
        height: 50vh;
    }
}
@media (max-width: 450px) {
    .swiper img{
        height: 30vh;
    }
}
.swipevid{
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}
@media (max-width: 760px) {
    .swipevid{
        height: 50vh;
    }
}
@media (max-width: 450px) {
    .swipevid{
        height: 30vh;
    }
}


/*PRODUCTS STYLING*/

.watch-card { 
            border: none; 
            border-radius: 20px; 
            overflow: hidden; 
            background-color: #fdf5eb;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            height: 100%;
        }

        .card-img-top {
            height: 200px;
            object-fit: cover;
        }

        /* Top text section */
        .card-price-section { 
            padding: 1.5rem 1.25rem 1rem 1.25rem; 
        }

        .status-label { 
            font-size: 0.8rem; 
            color: #333;
        }

        .price-text { 
            font-weight: 800; 
            font-size: 1.4rem; 
            margin: 5px 0 0 0;
            color: #000;
        }

        .series-label { 
            font-size: 0.75rem; 
            font-weight: bold; 
            text-transform: uppercase;
            color: #000;
        }

        /* Bottom description section */
        .card-details-section { 
            border-top: 1px solid #e0d5c5; 
            padding: 1.25rem;
            background-color: #fdf5eb;
        }

        .watch-title {
            font-weight: 900;
            color: #000000;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .watch-desc {
            font-size: 0.85rem;
            font-weight: bold;
        }
  
        .bolt{
    color: rgba(255, 255, 0, 0.925);
    animation: flicker 3s linear infinite;
}
@keyframes flicker {
    0%{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50%{
        transform: translateY(-5px) scale(1.1);
        opacity: 0.8;
    }
    100%{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
.hot{
    color: rgb(255, 123, 0);
    animation: flicker 1s linear infinite;
}

/*View all and shop button*/
.vish{
    background-color: #ee660c;
    transition: all 0.4s ease; /* Smooth transition is key */
}
.vish:hover{
  background-color: #d36318; /* Lightens the gold slightly */
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); /* Soft gold glow */
  transform: translateY(-2px); /* Subtle lift */
}


/* Container - clips the overflowing logos */
.logo-slider {
  width: 100%;
  height: 150px;
  margin: auto;
  overflow: hidden;
  position: relative;
  background: white;
  display: flex;
  align-items: center;
}

/* The moving track */
.logo-track {
  display: flex;
  width: calc(250px * 15); /* Width of 1 logo * total number of logos (including duplicates) */
  animation: scroll1 40s linear infinite;
}

/* Individual slides */
.slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.slide .logo {
  width: 100%;
  max-width: 180px;
  /* Grayscale effect to match your screenshot */
  
  opacity: 1;
  transition: 0.3s;
}

.slide .logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* The Animation Logic */
@keyframes scroll1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 6)); /* Move by exactly half the number of logos */
  }
}

/* Optional: Fading effect on the edges */
.logo-slider::before,
.logo-slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.custom-img-height {
            height: 250px;
            width: 100%;
            object-fit: cover; /* This crops the image to fill the height without distorting */
            border-radius: 8px;
        }
.overflow-container{
  overflow-x: hidden;
}

        /*Style for footer*/
.beilan-footer{
  background: linear-gradient(to right, #2C2C2C);
  font-family: Arial, sans-serif;
}
.beilan-footer h5{
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: white;
}
@media (max-width: 768px) {
    .beilan-footer h5{
        font-size: 1.1rem;
    }
}
.beilan-footer p{
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #f0f0f0;
}
@media (max-width: 768px) {
    .beilan-footer p{
        font-size: 0.9rem;
    }
}
.beilan-footer .small{
  font-size: 0.75rem !important;
  font-weight: 300;
}
.beilan-footer h5 a{
  text-decoration: none;
}
.socialmedia{
  color: #f0f0f0 !important;
}
