.megamenu-li {
    position: static;
}

.dropdown-item {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;

}

.dropdown-item h5 {
    transition: color 0.3s;
}

.dropdown-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #22215b;
    transition: width 0.3s;
}

.dropdown-item:hover::after {
    width: 100%;
}

.dropdown-item:hover h5 {
    color: #22215b;
    font-size: 22px;
}


.megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
}

.sticky-apply-now {
    position: fixed;
    right: 0px;
    top: 90%;
    transform: translateY(-80%);
    z-index: 1000;
}

.sticky-apply-now .btn {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #25D366;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sticky-apply-now .btn .whatsapp-icon {
    margin-right: 0px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sticky-apply-now .btn .button-text {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sticky-apply-now .btn:hover {
    transform: translateX(0px);
}



.sticky-apply-now .btn:hover .button-text {
    opacity: 0;
}

.sticky-apply-now .btn:hover:after {
    content: ' WhatsApp';
    opacity: 1;
    margin-left: 5px;
}

.modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    display: flex;
}

.modal-content {
    background-color: white; 
    padding: 20px;
    border-radius: 8px;
    max-width: 500px; 
    width: 90%; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    position: relative;
}

.modal-overlay.active {
    display: flex;
}

.home-slider {
    position: relative;
    overflow: hidden;
}

.slider-item {
    height: 100vh; 
    background-size: cover;
    background-position: center; 
}

.slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem; 
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
}
.modal-content .close-btn{
    color:rgb(0, 0, 0);
    display: flex;
    align-items:end;
    justify-content: end;
}
.modal-content .close-btn:hover{
    height: 42px;
    color:red
}
.image-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;  
}

.destination-image {
    width: 40%;
    height: 100px;
    margin-top: 5px;
    border-radius: 50%;
    transition: transform 0.3s ease; 
}

.destination-image:hover {
    transform: scale(1.05);
}
