@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');
/*font-family: 'Fira Code', monospace;*/
.animated-button {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    color: #007BFF;
    background: none;
    border: 2px solid #007BFF;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease;
  }
  
  .animated-button .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .animated-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #007BFF;
    z-index: -1;
    transition: width 0.3s ease;
  }
  
  .animated-button:hover {
    color: #fff;
  }
  
  .animated-button:hover .arrow {
    transform: translateX(5px);
  }
  
  .animated-button:hover:before {
    width: 100%;
  }
  

  .theme {
    background-image: url(../assets/img/hero.jpg);
    background-position: center;
    background-size: contain;
  }

  .theme_shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  .custom-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px; /* Creates rounded corners */
    background-color: #fafafa
    ;
    color: black;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Creates a gentle drop shadow */
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.custom-button:hover {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    color: black;
    background: #a1daee;
    transition: all 0.4s ease 0s;
}

.equal-card {
    display: flex;
    flex-direction: column;
}

.card-content {
    flex: 1;
}


#interactions {
    background-image: url(../assets/img/contact.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1100;
}

.carousel {
  display: flex;
  overflow-x: auto;
  padding: 10px;
  background-color: #f1f1f1;
  height: max-content;
}

.carousel .icon {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  background-color: transparent;
  border-radius: 25px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

b {
  font-weight: 900!important;
}

#serviceForm {
  border-radius: 20px;
}

a {
  color:black!important;
}