body {
    font-family: 'Times New Roman', Times, serif;
}

header {
    font-family: 'Times New Roman', Times, serif;
}


 .curved-bottom {
            border-bottom-left-radius: 50% 3%;
            border-bottom-right-radius: 50% 3%;
        }
        .imagelogo {
            height: 50px;
            width: auto;
        }
        .destination-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
        }
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-content {
            background: white;
            border-radius: 16px;
            max-width: 1200px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideIn 0.3s ease-out;
        }
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .bg-schengen {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/immgs/Schengencountries.jpg');
            background-size: cover;
            background-position: center;
        }
        .bg-maldives {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/immgs/maldives.jpg');
            background-size: cover;
            background-position: center;
        }
        .bg-uk {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/immgs/uk.jpg');
            background-size: cover;
            background-position: center;
        }
        .bg-dubai {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/immgs/uae.jpg');
            background-size: cover;
            background-position: center;
        }
        .bg-canada {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/immgs/Canada.jpg');
            background-size: cover;
            background-position: center;
        }
        .bg-usa {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/immgs/usa.jpg');
            background-size: cover;
            background-position: center;
        }

        