/* --- Global Styles & Variables --- */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #004AAD; /* A professional blue */
            --secondary-color: #F7941D; /* An energetic orange for CTAs */
            --dark-color: #121E31;
            --light-color: #FFFFFF;
            --gray-color: #f4f7fc;
            --text-color: #4A4A4A;
            --font-family: 'Poppins', sans-serif;
        }


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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--light-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        

        h1 { font-size: 3rem; }
        h2 { font-size: 2.25rem; text-align: center;}
        h3 { font-size: 1.25rem; }

        section {
            padding: 80px 0;
        }

        .Country {
            color: #f4f7fc;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--light-color);
            border-color: var(--secondary-color);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--light-color);
            border: 2px solid var(--light-color);
        }
         .btn-secondary:hover {
            background-color: var(--light-color);
            color: var(--dark-color);
        }


        /* --- Header & Navigation --- */
        .main-header {
            background-color: var(--light-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .main-nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            position: relative;
            padding-bottom: 5px;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after, .main-nav a.active::after {
            width: 100%;
        }

        /* --- Hamburger Menu --- */
        .hamburger-menu {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            z-index: 1002;
        }

        .hamburger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--dark-color);
            transition: all 0.3s ease-in-out;
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* --- Hero Section --- */
        #hero {
            height: 90vh;
            color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071') no-repeat center center/cover;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 30, 80, 0.6); /* Dark blue overlay */
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-content h1 {
            color: var(--light-color);
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-content .btn {
            margin: 0 10px;
        }


        /* --- Why Choose Us Section --- */
        #why-us {
            background-color: var(--gray-color);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--light-color);
            padding: 30px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .feature-card .icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* --- Process Section --- */
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 35px;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: #ddd;
            z-index: -1;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 0 20px;
        }

        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary-color);
            color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            border: 4px solid var(--gray-color);
            position: relative; /* To be above the line */
        }

        .step h3 {
            margin-bottom: 10px;
        }

        /* --- Destinations Section --- */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .destination-card {
            position: relative;
            height: 350px;
            border-radius: 8px;
            overflow: hidden;
            color: var(--light-color);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: transform 0.4s ease;
        }

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

        .destination-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            transition: transform 0.4s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
            z-index: -1;
        }

        .destination-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
        }

        /* --- Testimonials Section --- */
        #testimonials {
            background-color: var(--gray-color);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
        }

        .testimonial-card blockquote {
            font-style: italic;
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .author-info strong {
            display: block;
            color: var(--dark-color);
        }

        /* --- Final CTA Section --- */
        #final-cta {
            background-color: var(--primary-color);
            color: var(--light-color);
            text-align: center;
        }

        #final-cta h2, #final-cta p {
            color: var(--light-color);
        }

        #final-cta p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--light-color);
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-col ul { list-style: none; padding-left: 0; }

        .footer-col a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }

        .footer-col a:hover { color: var(--secondary-color); }

        .social-links {
            margin-top: 15px;
        }

        .social-links a {
            display: inline-block;
            margin-right: 15px;
        }

        .social-links a svg {
            width: 24px;
            height: 24px;
            fill: #ccc;
            transition: fill 0.3s ease;
        }

        .social-links a:hover svg {
            fill: var(--secondary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }

        /* --- Modal Styles --- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        .modal-content {
            background: var(--light-color);
            padding: 30px 40px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #aaa;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        /* --- Responsive Design --- */
        @media(max-width: 992px) {
             .destinations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            section { padding: 60px 0; }

            .main-header .container {
                flex-direction: row;
                justify-content: space-between;
                position: relative;
            }
            
            .hamburger-menu {
                display: block;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--light-color);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px 0;
            }

            .main-nav.nav-open {
                display: block;
            }
            
            .main-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .process-steps {
                flex-direction: column;
                gap: 40px;
            }

            .process-steps::before {
                display: none;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
            }
        }
        /* --- Dropdown Menu Styles --- */
/* Container for the dropdown */
.main-nav .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* The dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Positions it right below the "Connect" link */
    left: 0;
    background-color: var(--light-color);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
    border-top: 3px solid var(--secondary-color); /* Orange top border accent */
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

/* Show the dropdown menu on hover */
.dropdown-item:hover .dropdown-content {
    display: block;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: var(--dark-color) !important; /* Force dark text against white background */
    padding: 12px 16px;
    text-decoration: none;
    display: flex !important; /* Ensure icon and text align nicely */
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

/* Remove underline effect from main nav for these specific links */
.dropdown-content a::after {
    display: none;
}

/* Hover effect for individual dropdown links */
.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color) !important; /* Blue text on hover */
    padding-left: 20px; /* Subtle slide effect */
}

/* Style the SVG icons in the dropdown */
.dropdown-content a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor; /* Allows icon to change color with text */
    transition: stroke 0.3s ease;
}

