body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f8ff;
    color: #222;
}

.navbar {
    background: #1a237e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 15px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #ff9800;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px 60px 20px;
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
}

.hero p {
    font-size: 24px;
    margin: 0;
}

.about-section, .contact-section, .form-section {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.destinations {
    padding: 40px 20px;
    text-align: center;
    background: #e3f2fd;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 280px;
    overflow: hidden;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin: 12px 0 8px 0;
}

.card p {
    padding: 0 15px 15px 15px;
    color: #444;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
}

form input, form button {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #bbb;
}

form button {
    background: #1a237e;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

form button:hover {
    background: #3949ab;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* ...existing code... */

.navbar {
    background: linear-gradient(90deg, #1a237e 60%, #3949ab 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 4px 16px rgba(26,35,126,0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: navbarFadeIn 1s ease;
}

@keyframes navbarFadeIn {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 15px 0;
    letter-spacing: 2px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s;
}

.logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

.logo:hover img {
    transform: rotate(-15deg) scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-links li a span {
    position: relative;
    z-index: 2;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: #ff9800;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: 1;
    opacity: 0.15;
}

.nav-links li a:hover::before {
    width: 120%;
    height: 200%;
}

.nav-links li a:hover, .nav-links li a:focus {
    color: #ff9800;
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px) scale(1.07);
    box-shadow: 0 2px 8px rgba(255,152,0,0.08);
}

/* ...rest of your CSS... */