img{
    max-width: 100%;
  }

  a{
    text-decoration: none;
  }

  .btn-navbar{
    background-color: #d00406;
    color: white;
    border: none;
  }

  .btn-navbar:hover{
    color: white;
    box-shadow: #d0040799 0px 0px 10px;
}

  .navbar-toggler{
    border-color: black;
    color: black;
  }

  .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }


  .input-field{
    background-image: url(../public/mail.svg) no-repeat scroll;
    background-color: #1E2128;
    border: #BDC1CA solid;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .btn-sub{
    background-color: #d00406;
    color: white;
    border: #d00406 solid;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .btn-sub:hover{
    color: white;
    box-shadow: #d0040799 0px 0px 10px;
}

  #language-select{
    background-color: #1E2128;
    color: #DEE1E6;
    border: #DEE1E6 solid thin;
  }

  .social-icon:hover{
    transform: scale(1.2);
  }

  i{
    color: #d00406;
  }

  .logo{
    position: relative;
    width: 200px;
    margin-bottom: -18%;
    margin-top: -5%;
    z-index: 1000;
  }

  .active-link {
    color: rgb(5, 5, 112) !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: flipInX 1s ease forwards;
backface-visibility: hidden;
  /* Optional: Adjust this if you want the dropdown to align perfectly */
}

.dropdown-item:hover{
  background-color: #d0040799;
}
/* Optional: Style the dropdown toggle to stay open when hovered */
.dropdown-toggle::after {
  display: none; /* Hides the default caret */
}

.dropdown:hover .dropdown-toggle::after {
  display: none;
  vertical-align: middle;
}

.dropdown-menu{
  background-color: #d00406;
  color: white;
  padding: 0;
  border-radius: 0;
}

@keyframes flipInX {
  0% {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(1000px) rotateX(20deg);
  }
  60% {
    transform: perspective(1000px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(1000px) rotateX(5deg);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
}

.card-product:hover{
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  transition: 0.5s;
}

.img-square{
  object-fit: cover;
  height: 400px;
  width: 400px;
  border-radius: 5px;
}

.social-icon i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #d00406;
    color: #fff;
}

.custom-link,
.custom-link p{
    color: #fff;
    transition: .4s;
}

.custom-link:hover,
.custom-link:hover p{
    color: #d00406 !important;
}
