* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: #004080;
    color: #fff;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

.hero {
    width: 100%;
    height: 500px;
    text-align: center;
    padding: 64px 32px;
    background: url('images/hero.jpg') no-repeat;
    color: rgb(0, 0, 0);
    animation: fadeIn 1.5s ease-in;
}

.featured-destinations {
    padding: 32px;
}

img {
    width: 250px;
    border-radius: 8px;
}

.destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.destination {
    width: 100px;
    flex: 1;
    min-width: 250px;
    background: #f0f0f0;
    padding: 16px;
    border-radius: 8px;
    transition: transform 0.3s;
}

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


.about-intro {
    width: 100%;
    text-align: center;
    padding: 64px 32px;
    background: url('images/background.jpg') no-repeat center center/cover;
    color: black;
}

.mission,
.vision,
.why-choose-us,
.team,
.testimonials {
    max-width: 900px;
    margin: 0 auto 48px auto;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-us ul {
    list-style-type: disc;
    margin-left: 20px;
}

.testimonials blockquote {
    font-style: italic;
    color: #555;
    margin: 16px 0;
    padding-left: 20px;
    border-left: 4px solid #004080;
}

section {
    padding: 32px;
}
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
}

form label {
    display: block;
    margin-bottom: 8px;
}

form input,
form select,
form textarea {
    margin-bottom: 16px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

form textarea {
    max-width: 100%;
}

button {
    padding: 11px;
    background-color: #004080;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #003060;
}

.contact-form-section h1 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

footer {
    text-align: center;
    padding: 16px;
    background-color: #004080;
    color: #fff;
}

/* Ensure footer links are visible (white) and have a hover state */
footer a,
.footer-links a {
    color: #fff;
    text-decoration: none;
}

footer a:hover,
.footer-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}