body {
    background-color: #BBDDFF;
    height: 100vh;
}
.navbar {
    background: linear-gradient(90deg, #dddddd, #eeeeee, #dddddd);
}
.navbar-brand img {
    height: 80px;
    margin-right: 10px;
}
.nav-link:hover {
    color: black !important;
    border-radius: 10px;
    background-color: #BBDDFF;

}
/* .nav-item {
    margin-left: 10px;
    background-color: green;
    border-radius: 10px;
} */
@media (min-width: 992px) {
  .nav-item {
    margin-left: 10px;
    background-color: green;
    border-radius: 10px;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse.show .nav-item {
    background: #008000;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-bottom: 1px;
    margin-left: 0;
    padding: 0px 0px;
  }
}
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    height: 40vh;
}
.card {
    position: relative;
    width: 420px;
    height: 270px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
}
.card-title {
    background-color: green;
    color: white;
    padding: 10px;
    margin: 0;
    text-align: center;
}
.card-body {
    padding: 20px;
}
.project-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    height: 40vh;
}
.project-card {
    position: relative;
    width: 420px;
    height: 150px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
}
.project-card-title {
    color: black;
    padding: 10px;
    margin: 0;
    text-align: left;
}
.project-card-body {
    padding: 20px;
}
.btn-floating {
    position: absolute;
    right: -20px;
    bottom: 20px;
    background: white;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 10px 15px;
}
.custom-hover:hover {
    background-color: green !important; /* Change to any color */
    color: white !important;
    transform: scale(1.1); /* Slightly enlarge on hover */
    transition: all 0.3s ease-in-out;
}
.bg-success-hover:hover {
    background-color: green !important; /* Darker green on hover */
    transition: 0.3s ease-in-out;
}
