body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f8fb;
}

/* Header */
header {
    background: linear-gradient(to right, #0066cc, #0099ff);
    color:white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

/* Banner */
.banner {
 
    background-position: center;
    color:black;
    text-align: center;
    padding: 120px 20px;

    background-image: url("https://cdn1.matadornetwork.com/blogs/1/2019/01/View-of-the-city-center-and-Nydeggbrucke-bridge-over-river-Aare-Switzerland.jpg");
    background-size: cover;
    background-position: center;
}


.btn {
    background: white;
    color: #0066cc;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

/* Cards */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.box {
    background: white;
    margin: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-8px);
}

.box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

/* Forms */
form input, form textarea, form select {
    width: 300px;
    max-width: 80%;
    padding: 10px;
    margin: 8px;
}

form button {
    padding: 10px 30px;
    background: #0066cc;
    border: none;
    color: white;
}

/* Footer */
footer {
    background: #0066cc;
    color: white;
    text-align: center;
    padding: 15px;
}
/* contact */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: url("https://cdn.audleytravel.com/4990/3566/79/15985940-lake-geneva-region.jpg");
    color:black;
}

.navbar {
    background: blue;
    color: white;
    padding: 15px;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
}

.contact-card {
    background-image: url("https://cdn.audleytravel.com/4990/3566/79/15985940-lake-geneva-region.jpg");
    width: 100%;
    max-width: 420px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 8px 0;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
}

.contact-form {
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #1e40af;
}

.footer {
    text-align: center;
    padding: 15px;
    background: #1e293b;
    color: white;
    margin-top: 40px;
}

/* Bookong */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("https://cdn.audleytravel.com/4990/3566/79/15985940-lake-geneva-region.jpg");
}

.navbar {
    background:blue;
    color: white;
    padding: 15px;
    text-align: center;
}

.booking-container {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
}

.booking-card {
    background: white;
    max-width: 450px;
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.booking-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: #2563eb;
    outline: none;
}

.booking-card button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.booking-card button:hover {
    background: #1e40af;
}

.footer {
    text-align: center;
    padding: 15px;
    background: #1e293b;
    color: white;
    margin-top: 40px;
}
/*package*/
.page-title {
    text-align: center;
    margin-top: 30px;
    font-size: 32px;
}

.page-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 30px 40px;
}

.package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card img {
    width: 100%;
    border-radius: 10px;
}

.package-card h3 {
    margin: 15px 0 5px;
}

.price {
    font-size: 22px;
    color: #2563eb;
    font-weight: bold;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.package-card ul li {
    margin: 6px 0;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #1e40af;
}

.popular {
    border: 2px solid #2563eb;
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #2563eb;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* destination*/
.destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 30px 40px;
}

.destination-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-8px);
}

.destination-card img {
    width: 100%;
    border-radius: 10px;
}

.destination-card h3 {
    margin: 12px 0 5px;
}

.price {
    color: #2563eb;
    font-weight: bold;
    margin-bottom: 10px;
}