
html {
    scroll-behavior: smooth;
}

body {
   
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    padding: 0;
    height: 100%;
    overflow-x: hidden; 
}
    

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 58px;
    margin-right: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero */
.hero {
     min-height: 60vh; /* flexible height */
    padding: 20px;
    background: linear-gradient(to right, #002147, #cc0000);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 26px;
    }
}

.hero button {
    margin-top: 15px;
    padding: 12px 25px;
    background: #ffcc00;
    border: none;
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffcc00;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

/* Services */
.services {
    padding: 60px 20px;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.service-card {
    width: 300px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Mobile */
@media (max-width: 768px) {
    .service-card {
        width: 90%;
    }
}

/* Why Germany */
.destinations {
    padding: 60px 20px;
    background: #f7f9fc;
    text-align: center;
}

.dest-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dest-card {
    padding: 25px;
    width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Process */
.process {
    padding: 60px 20px;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    padding: 20px;
    background: #002147;
    color: white;
    border-radius: 8px;
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f7f9fc;
}

.contact input, .contact textarea {
    width: 300px;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    background: #002147;
    color: white;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 15px;
}
/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
    background: #f5f7fa;
}

/* Form Box */
.contact-box {
    max-width: 400px;
    width: 100%;
    margin:  auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Inputs */
.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

/* Focus effect */
.contact-box input:focus,
.contact-box textarea:focus {
    border-color: #002147;
    box-shadow: 0 0 5px rgba(0,33,71,0.2);
}

/* Button */
.contact-box button {
    width: 100%;
    padding: 12px;
    background: #002147;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Button hover */
.contact-box button:hover {
    background: #004080;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 60px;
    background: #002147;
    color: white;
    font-size: 14px;
}

.top-right a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: 0.3s;
}

/* Hover effect */
.top-right a:hover {
    color: #ffcc00;
}

.success-msg {
    color: green;
    margin-top: 10px;
    display: none;
    font-weight: bold;
}

/* Make everything responsive */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Default navbar */
nav {
    display: flex;
    gap: 20px;
}

/* Hide hamburger on desktop */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 📱 Mobile view */
@media (max-width: 768px) {

    nav {
        display: none; /* hide menu */
        flex-direction: column;
        background: #002147;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 15px;
    }

    nav a {
        color: white;
        padding: 10px 0;
    }

    /* Show menu when active */
    nav.active {
        display: flex;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }
    
}




