/* Global Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

/* Navbar Styling */
.navbar {
    background: linear-gradient(to right, #210340, #F58735);
    transition: background-color 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar.navbar-scrolled {
    background-color: #210340;
}

.navbar-nav .nav-link {
    color: white !important;
    padding: 15px 25px;
}

.navbar-nav .nav-link:hover {
    background-color: #F58735;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background-image: url('img/explore-banner.jpg');
    /* Placeholder for travel image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: background-color 0.5s ease;
}

.hero-section h1 {
    font-size: 50px;
    font-weight: 600;
}

.hero-section p {
    font-size: 20px;
    font-weight: 300;
}

.hero-section .btn-primary {
    background-color: #F58735;
    padding: 15px 40px;
    font-size: 18px;
    color: white;
    border-radius: 25px;
    text-transform: uppercase;
    border: none;
}

.hero-section .btn-primary:hover {
    background-color: #210340;
    transition: 0.3s ease;
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background-color: #F8F9FA;
    text-align: center;
}

.destination-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.destination-card .card-body {
    padding: 20px;
}

.destination-card .card-title {
    font-size: 22px;
    color: #210340;
}

.destination-card .btn-secondary {
    background-color: #210340;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
}

.destination-card .btn-secondary:hover {
    background-color: #F58735;
    transition: background-color 0.3s ease;
}

/* Trending country*/
#trending-countries .country-card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#trending-countries .country-card:hover {
    transform: scale(1.05);
}

#trending-countries .country-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

#trending-countries .country-subtitle {
    font-size: 16px;
    color: #f4f4f4;
}

#trending-countries .btn {
    background-color: #F58735;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

#trending-countries .btn:hover {
    background-color: #210340;
}

#trending-countries .row {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .country-card {
        margin-bottom: 30px;
    }
}

#trending-countries .country-card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#trending-countries .country-card:hover {
    transform: translateY(-10px);
}

#trending-countries .btn {
    background-color: #FFD700;
    border: none;
    color: #210340;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

#trending-countries .btn:hover {
    background-color: #0E4D92;
    color: white;
}

/* Top flight Routes*/
.flight-route a {
    font-size: 16px;
    color: #210340;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.flight-route a:hover {
    color: #F58735;
    text-decoration: underline;
}

.section-title h2 {
    font-weight: bold;
}

/*Contact Us*/
body {
    font-family: 'Poppins', sans-serif;
}

.contact-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

.form-control {
    border: none;
    border-bottom: 2px solid #210340;
    border-radius: 0;
    margin-bottom: 20px;
    background-color: transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: #F58735;
}

.btn-custom {
    background: linear-gradient(to right, #210340, #F58735);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-custom:hover {
    background: #0E4D92;
    color: #fff;
}

.contact-info {
    margin-top: 30px;
}

.contact-info h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 0;
    color: #555;
}

/* Footer Styling */
footer {
    background-color: #210340;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #F58735;
    text-decoration: underline;
}

footer .social-icons a {
    color: white;
    padding: 10px;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #F58735;
}

/* Footer Columns */
.footer-columns {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    width: 48%;
}