/* Color Palette Variables */
:root {
    --primary: #2A9D8F;
    --light: #F0F4F8;
    --lighter: #F6F9FC;
    --accent: #A4D8E1;
    --glass: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.25);
}

/* Global Styles */
/* Video background */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Image or GIF background */
#bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Overlay for text readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

body { 
    font-family: 'Poppins', 
    sans-serif; 
    color: #fff; 
    overflow-x: hidden; 
}




#mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allows clicking through */
    overflow: hidden;
    z-index: 9999;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    transform: scale(0);
    animation: ripple-animate 0.8s ease-out forwards;
}

@keyframes ripple-animate {
    to {
        transform: scale(3);
        opacity: 0;
    }
}



a {
    text-decoration: none;
}

.section {
    padding: 80px 0;
    position: relative;
}


/* alert */
.messages-container .alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 1rem;
    border-radius: 8px;
    transition: opacity 0.5s;
}

.messages-container .alert-success {
    background-color: #4caf50;
    color: white;
}

.messages-container .alert-error {
    background-color: #f44336;
    color: white;
}


.glass-section {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    margin: 40px 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.8s ease-out forwards;
}



/* Navbar links - white and styled */
.glassmorphic-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.glassmorphic-navbar .nav-link:hover {
    color: #A4D8E1 !important;
}

/* "Get Started" Button - luxurious design */
.get-started-btn {
    background: linear-gradient(135deg, #2A9D8F, #A4D8E1);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(42, 157, 143, 0.5);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #A4D8E1, #2A9D8F);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(42, 157, 143, 0.8);
}

/* Optional: Glow animation */
.get-started-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: glowMove 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.get-started-btn span {
    position: relative;
    z-index: 1;
}



/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
    animation: fadeInDown 1.5s ease-in-out;
}

.hero-overlay .brand-highlight {
    color: var(--accent);
}

.hero-buttons a {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

/* Animated Text */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* About Section */
/* About Section Animation */
#about h2, 
#about p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

#about.animate-in h2,
#about.animate-in p {
    opacity: 1;
    transform: translateY(0);
}

/* Animated Image Frame (Sparkling) */
.animated-img {
    width: 80%; /* reduce image size */
    max-width: 400px; /* optional: constrain on large screens */
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(164, 216, 225, 0.5);
    position: relative;
    animation: glowBorder 3s infinite ease-in-out;
    padding: 6px;
    background: linear-gradient(145deg, rgba(164, 216, 225, 0.3), rgba(255, 255, 255, 0.05));
    margin: 0 auto; /* center the image horizontally */
}


/* Sparkling Border Effect */
@keyframes glowBorder {
    0% {
        box-shadow: 0 0 10px rgba(164, 216, 225, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(164, 216, 225, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(164, 216, 225, 0.2);
    }
}



/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border: none;
    color: white;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}



/* Cards & Service Toggles */
.service-wrapper, .destination-grid {
    transition: all 0.4s ease;
}

.animated-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animated-section.active {
    opacity: 1;
    transform: translateY(0);
}



/* Services Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    animation: fadeInDown 1.5s ease-in-out;
}

.highlighted {
    color: #00ffd5;
    text-shadow: 0 0 5px rgba(0, 255, 213, 0.7);
}


.service-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-toggle.active {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
    transform: scale(1.05);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 213, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: #00ffd5;
    text-shadow: 0 0 8px rgba(0, 255, 213, 0.5);
}

.service-content {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
}

.service-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}


#services {
    position: relative;
    min-height: 300px; /* or however tall your content needs */
}




/* Featured Destinations */
.destination-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.destination-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.destination-toggle.active {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
    transform: scale(1.05);
}


.destination-card {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.destination-card.fade-in {
    display: block !important;
}

#dest-bg-overlay {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
    transition: background-image 0.8s ease-in-out;
}

/* Sparkling border effect */
.destination-card img {
    border: 3px solid transparent;
    border-radius: 12px;
    padding: 5px;
    position: relative;
    z-index: 1;
    animation: sparkle 3s infinite linear;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

#dest-bg-overlay {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
    transition: background-image 0.8s ease-in-out, transform 20s linear;
    animation: zoom-bg 40s infinite alternate;
}

@keyframes zoom-bg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}


@keyframes sparkle {
    0% {
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensures hidden extras stay hidden even if fade-in sets display:block */
.destination-card.hidden-extra { display: none !important; }

.extra-destination {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.extra-destination.show {
    opacity: 1;
}



/* Background image & overlay */
/* .jobs-bg-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('/static/img/job-search.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: transform 20s ease-in-out;
    animation: zoom-bg 40s infinite alternate;
} */

/* Button design */
.btn-glow {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    transition: all 0.3s ease-in-out;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
    transform: translateY(-3px);
}

/* Text animations */
.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.animated.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-bg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}



.branch-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.highlighted2 {
    color: #fff; /* pure white */
    font-weight: bold; /* bold text */
    animation: breathingGlow 2.5s ease-in-out infinite;
}

@keyframes breathingGlow {
    0% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.9),
                     0 0 15px rgba(255, 255, 255, 0.7),
                     0 0 25px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                     0 0 30px rgba(255, 255, 255, 0.8),
                     0 0 45px rgba(255, 255, 255, 0.6);
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.9),
                     0 0 15px rgba(255, 255, 255, 0.7),
                     0 0 25px rgba(255, 255, 255, 0.5);
    }
}



/* Contact section fade + float animation */
.contact-section {
    animation: fadeFloatUp 1.4s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeFloatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glowing animated button */
.fancy-contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.4), 0 0 20px rgba(0, 128, 255, 0.2) inset;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.fancy-contact-btn::before {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.fancy-contact-btn:hover::before {
    left: 125%;
}

.fancy-contact-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.5), 0 0 25px rgba(0, 128, 255, 0.3) inset;
}

/* Contact info list style */
.contact-info i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.contact-info li {
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-info li:hover {
    transform: translateX(5px);
    color: var(--accent);
}





/* Mouse Trail Animation */
/* .mouse-circle {
    width: 15px;
    height: 15px;
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 9999;
    mix-blend-mode: difference;
} */

/* Responsive */
/* @media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
} */



/* Footer base */
.glassmorphic-footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Footer headings */
.glassmorphic-footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #A4D8E1;
}

/* Quick links styling */
.glassmorphic-footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.glassmorphic-footer .list-unstyled li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-left: 1.2rem;
    transition: color 0.3s ease;
}

.glassmorphic-footer .list-unstyled li a::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #A4D8E1;
    font-size: 0.8rem;
}

.glassmorphic-footer .list-unstyled li a:hover {
    color: #A4D8E1;
}

/* Social links */
.social-links a {
    font-size: 1.5rem;
    color: #fff;
    margin-right: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #A4D8E1;
    transform: scale(1.2);
}

/* Bottom row */
.glassmorphic-footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.glassmorphic-footer a {
    color: #ffffff;
    text-decoration: none;
}

.glassmorphic-footer a:hover {
    text-decoration: underline;
}

/* Ensure footer text doesn't crowd on small screens */
.glassmorphic-footer .row.small {
    row-gap: 10px;
}

/* Get Started  */
/* Background wrapper */
.get-started-wrapper {
    min-height: 100vh;
    padding-top: 7rem; /* space from navbar */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-attachment: fixed;
}

/* Glassmorphic card */
.get-started-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.8s ease-out forwards;
}

/* Inputs styling */
.get-started-card input,
.get-started-card select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000000;
    padding: 0.75rem;
    width: 100%;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.get-started-card input:focus,
.get-started-card select:focus {
    border-color: #15c6e6;
    box-shadow: 0 0 8px rgba(164, 216, 225, 0.6);
}

/* Form check Radio */
/* Fancy glassy checkbox */
.fancy-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}

.fancy-check input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
    position: relative;
}

.fancy-check input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #A4D8E1, #67b6c2);
    border-color: #A4D8E1;
}

.fancy-check input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    font-size: 0.9rem;
    color: #0d2a2e;
    font-weight: bold;
}

.fancy-check a {
    color: #A4D8E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fancy-check a:hover {
    text-decoration: underline;
}
/* Form check Radio */

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 216, 225, 0.5);
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}




/* ================================
   Country Details
================================ */
.country-content {
    padding-top: 70rem;
}

.country-card {
    max-width: 1200px;

    margin: 70px auto;
}

/* Title styling inside glass */
.country-title {
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 2rem;
}

/* Country image */
.country-img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.country-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Back button glass style */
.btn-glass {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}