ul li a{
    font-size: 24px;
    color: white!important;
    margin-left: 30px;
    cursor: pointer!important;
}
.tooltip {
    position: absolute;
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card img {
    height: 200px;
    object-fit: cover;
    transition: 1s;
    overflow: hidden;
}
.card img:hover{
    overflow: hidden;
    transform: scale(1.2);
}
.card-body {
    padding: 20px;
}
.card-title {
    font-size: 18px;
    font-weight: bold;
}
.card-text {
    color: #6c757d;
}
.event-date {
    color: #007bff;
}
.btn-custom {
    background-color: black!important;
    color: white;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}
.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.footer {
    background-color: #000!important;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-logo {
    width: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 10px;
}

.footer h5 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ccc;
}

.nnn li a{
    text-decoration: none !important;
}

.footer i {
    margin-right: 8px;
}

.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn.active {
    background-color: #0d6efd;
    color: #fff;
}

.input-group .input-group-text {
    border-radius: 0.25rem 0 0 0.25rem;
}

.card img {
    height: 150px;
    object-fit: cover;
}

.time-slot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 120px;
    cursor: pointer;
}

.time-slot input {
    margin-right: 5px;
}

.selected {
    border: 2px solid #0d6efd !important;
    background-color: #e7f0ff;
}

@media (max-width: 768px) {
    .footer-logo {
        margin-bottom: 20px;
    }
}
.event-description {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  font-size: 16px;
  margin-top: 20px;
  color: #333;
}

.event-description h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #004aad;
}

.event-description ul {
  padding-left: 20px;
  margin: 10px 0;
}

.event-description li {
  margin-bottom: 8px;
}

