*{
  margin: 0;
  padding: 0;
  box-sizing: border-box ;
  font-family: "Poppins", Sans-serif;
}

a {
text-decoration: unset !important;
}

.logo img{
  width: 90px;
  height:90px;
}
.form-control{
  border-radius: 3px !important;
}


.custom-controls {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}


.card {
  box-shadow: 0px 0px 10px blue;
  border-radius: 8px;
  font-size: 16px !important;
}
.card img {
  border-radius: 4px 0px;
  width: 100%;
  height: 205px;
}
.card:hover {
  box-shadow: 0px 0px 10px red;
}

.card a:hover {
  cursor: pointer !important;
}
.height-34 {
  height: 34px;
}

.cards {
  padding: 65px;

}

.common-cards{
    border-radius: 25px;
    border: 2px solid black;
    box-shadow: 0px 0px 10px black;
    margin: 10px;
    text-align: center;
    padding: 10px;
    text-decoration: underline;
}
.common-cards img {
  width: 210px;
  height: 100px;
}

.common-cards:hover {
  border: 2px solid red;
  box-shadow: 0px 0px 10px red;
}


@media (min-width: 320px) {
  .card-body {
    padding: 8px !important;
  }
  .modal-content {
    flex-direction: column;
    width: 100% !important;
  }

  .modal-contents {    
    width: 372px; 
    margin-left: 22px;
}

@media (min-width: 768px) {
  .card-body {
    padding: 8px 0px !important;
  }

  .modal-contents {  
    width: 492px; 
    margin-left: 0px;
}

 
}

@media (min-width: 1280px) {
  .card-body {
    padding: 6px 0px !important;
  }

  .modal-content {
    right: 12% !important;
    flex-direction: column;
    width: 1037px !important;
  }

  .modal-contents {
    width: 525px;
    margin-left: 0px;
}

}

.newimg{
  object-fit: cover !important;
  width: 100% !important;

}

.location-btn {
  background: linear-gradient(135deg, rgba(255, 0, 150, 0.5), rgba(0, 204, 255, 0.5)); /* RGB gradient background */
  border: 2px solid transparent; /* Transparent border initially */
  padding: 5px 20px;
  border-radius: 5px; 
  transition: all 0.3s ease-in-out;
  margin: 10px; 
  display: inline-block;
  position: relative;
}

.location-btn::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.7), rgba(255, 0, 150, 0.7));
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.location-btn:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(0, 255, 150, 0.7), rgba(255, 0, 0, 0.7)); /* RGB gradient on hover */
}

.location-btn:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5); /* Slight darkening effect on hover */
}

  
.location-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 200px; 
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .buttonDiv {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  .glow-on-hover {
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
  }
  
  .glow-on-hover:active:after {
    background: transparent;
  }
  .glow-on-hover {
              width: 100%;
              /* height: 50px;  */
              border: none;
              outline: none;
              color: #fff;
              background: #111;
              cursor: pointer;
              position: relative;
              z-index: 0;
              border-radius: 10px;
          }
  
          .glow-on-hover:before {
              content: '';
              background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
              position: absolute;
              top: -2px;
              left: -2px;
              background-size: 400%;
              z-index: -1;
              filter: blur(10px);
              width: calc(100% + 14px);
              height: calc(100% + 15px);
              animation: glowing 20s linear infinite;
              opacity: 0;
              transition: opacity .3s ease-in-out;
              border-radius: 10px;
          }
  
          .glow-on-hover:active {
              color: #000
          }
  
          .glow-on-hover:active:after {
              background: transparent;
          }
  
          .glow-on-hover:hover:before {
              opacity: 1;
          }
  
          .glow-on-hover:after {
              z-index: -1;
              content: '';
              position: absolute;
              width: 100%;
              height: 100%;
              background: rgba(0, 0, 255, .5);
              left: 0;
              top: 0;
              border-radius: 10px;
          }
  
          @keyframes glowing {
              0% {
                  background-position: 0 0;
              }
  
              50% {
                  background-position: 400% 0;
              }
  
              100% {
                  background-position: 0 0;
              }
          }
  
.card-img-top {
    position: absolute; /* Ensure the image fills the card */
    top: 0;
    left: 0;
}
      .card-img-top img {
          width: 100%;
          height: 200px;
      }
  
      .location-name {
          position: absolute;
          z-index: 1; /* Ensure text is above the image */
          color: white; /* Text color */
          font-weight: bold;
          background: rgba(0, 0, 0, 0.5); /* Dark background for better readability */
          padding: 5px 10px;
          border-radius: 5px;
      }
      .card-login {
        border: 1px solid #ddd; /* Light gray border for the card */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }
    
    .card-header-login {
      background-color: #f8f9fa;
      padding: 10px 15px;
      font-weight: 500;
      border-bottom: 2px solid #ddd;
      border-radius: 7px 7px 1px 0px;
    }

    .card-body-login {
      padding: 15px; 
      font-size: 0.95rem; 
  }
 
  body {  
    /* user-select: none; */
  }
    
