/* Scroll Top Button CSS */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 130px;   /* Increased height from bottom (was 95px) */
    z-index: 999;
    background-color: #ff0202;
    width: 50px;
    height: 50px;
    border-radius: 12px;   /* Square with curved corners */
    transition: all 0.4s ease;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top i {
    font-size: 22px;
}

.scroll-top:hover {
    background-color: #0b5ed7;
    transform: translateY(-5px);  /* Smooth hover lift effect */
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
/* ================= GLASS TRANSPARENT NAVBAR ================= */
/* Slider Container Header Background Css */
.hero-slider {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000; /* Prevents white flash between slides */
}

/* Background Image Styling - Enhanced for Clarity */
.hero-slider .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* This makes images look sharper on high-res screens */
    image-rendering: -webkit-optimize-contrast;
    transition: transform 10s linear; 
}

/* Premium Cinematic Zoom */
.hero-slider .carousel-item.active {
    animation: kenburns 12s ease-in-out forwards;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); } 
}

/* The "Attractive" Secret: Color Grading Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using 'backdrop-filter' subtly increases saturation 
       and the gradient adds depth without hiding the image details 
    */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%, 
        transparent 40%, 
        transparent 70%, 
        rgba(0, 0, 0, 0.5) 100%
    );
    backdrop-filter: saturate(1.2) brightness(1.05);
    -webkit-backdrop-filter: saturate(1.2) brightness(1.05);
}

/* Ultra-Smooth Fade Transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Increased to 2s for luxury feel */
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Responsive fix for mobile: ensures images look good on vertical screens */
@media (max-width: 768px) {
    .hero-slider, .hero-slider .carousel-item {
        height: 80vh; /* Slightly shorter on mobile for better focus */
    }
}
/* ================= ORANGE NAV BAR STYLING ================= */

/* 1. Navbar Background (Keeping it Glassy) */
.glass-navbar {
    background: rgba(10, 10, 11, 0.85) !important; /* Dark glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    padding: 15px 0;
}

/* 2. Brand/Logo (Orange) */
.navbar-brand {
    color: #ff6a00 !important; /* Electric Orange */
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

/* 3. Navigation Links (Light Gray to Orange on Hover) */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Link Hover State */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #ff6a00 !important; /* Turns Orange on Hover */
    transform: translateY(-2px);
}

/* Active Link State */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ff6a00 !important;
}

/* 4. Orange Outline Button Customization */
.btn-outline-warning {
    color: #ff6a00 !important;
    border-color: #ff6a00 !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 8px 25px !important;
    transition: 0.4s !important;
}

.btn-outline-warning:hover {
    background-color: #ff6a00 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.5);
}

/* 5. Mobile Toggle Menu Icon (Orange) */


/* Advanced Underline Animation */
.glass-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%; /* Starts from center */
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.glass-navbar .nav-link:hover::after {
    width: 100%;
}


/* ================= SCROLL EFFECT ================= */
/* Darker glass when scrolling */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Enable snapping on the whole page */
html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* Adjust this if you have a fixed header (e.g., 70px) */
    scroll-padding-top: 0px; 
}

/* Force every section and the footer to snap and stop */
section, footer {
    scroll-snap-align: start;
    scroll-snap-stop: always; /* This creates the 'stop' effect */
    min-height: 100vh;        /* Each section takes full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Centers content vertically */
    position: relative;
}

/* The footer usually isn't full height, but for snapping to work 
   correctly, we give it a minimum height or keep it at the end. */
footer {
    min-height: 50vh; /* Adjust as needed */
}

/* Reveal Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

 
/*=============================            ============================================     */
/*====================================================      social icon ==============================================================================================*/
   

/*==============================   ==================================================================*/

:root {
    --primary-color: #f39c12;
    --secondary-color: #f1f3f5;
    --accent-color: #27ae60;
}

body {
    font-family: 'Hind', 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Hero */

/* Enhanced Hero Title Animation */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(45deg, #FFD166, #FF6B35, #EF476F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from {
        text-shadow: 0 0 20px rgba(255, 209, 102, 0.3),
                     0 0 40px rgba(255, 107, 53, 0.2),
                     0 0 60px rgba(239, 71, 111, 0.1);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 209, 102, 0.5),
                     0 0 60px rgba(255, 107, 53, 0.3),
                     0 0 90px rgba(239, 71, 111, 0.2);
    }
}

/* Enhanced Hero Button */
.hero-btn {
    background: linear-gradient(45deg, #FF6B35, #FF4D4D);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}







/* Cards */
.choice-card {
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.choice-card:hover,
.choice-card.active {
    border-color: var(--primary-color);
    background: #fff9f0;
    transform: translateY(-5px);
}

/* Buttons */
.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;

}








                                  /*========================== footer section  -============================*/


    /* Modern Footer Theme */
    .custom-footer {
        background: linear-gradient(135deg, #141d2a 0%, #141d2a 100%);
        color: white;
        padding: 60px 0 30px;
    }

    .footer-brand h3 {
        font-weight: 700;
        letter-spacing: 1px;
    }

    /* Social Icon Styling */
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        margin: 0 10px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    /* Colorful Hover Effects */
    .social-links a.fb-hover:hover {
        background-color: #1877F2; /* Facebook Blue */
        transform: translateY(-5px);
    }

    .social-links a.ig-hover:hover {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        transform: translateY(-5px);
    }

    .social-links a.tw-hover:hover {
        background-color: #000000; /* X (Twitter) Black */
        transform: translateY(-5px);
    }

    .social-links a.mail-hover:hover {
        background-color: #ea4335; /* Google Red */
        transform: translateY(-5px);
    }

    /* WhatsApp Float Styling */
    .whatsapp-float {
        position: fixed;
        bottom: 40px;
        right: 40px;
        transition: transform 0.3s;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

/*========================== section 1  ================*/               
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Slider full background */
.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    position: absolute;
    inset: 0;
}


.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.45) 60%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}


.hero-slider .carousel-item {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Text styles */
.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
}

.hero-subtitle {
    color: #FFA500;
    font-weight: 600;
}

.hero-text {
    color: #eee;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
}

/* Buttons */
.hero-btn {
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
}

/* WhatsApp */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Smooth fade animation */
.carousel-fade .carousel-item {
    transition: opacity 1.2s ease-in-out;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-text {
        font-size: 1rem;
    }
}



/*========================== section 2  ================*/ 
.hero-title {
        font-size: 4.5rem; /* Makes the main title much bolder */
        font-weight: 800;
    }
    .hero-subtitle {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    .hero-text {
        font-size: 1.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Mobile adjustments */
    @media (max-width: 768px) {
        .hero-title { font-size: 2.8rem; }
        .hero-subtitle { font-size: 1.5rem; }
        .hero-text { font-size: 1.2rem; }
    }
/* Premium Button Styles */
.hero-btn-advanced {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700 !important;
}

/* Hover Lift Effect */
.hero-btn-advanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* The Animated Shine Effect */
.hero-btn-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s;
}

.hero-btn-advanced:hover::before {
    left: 100%;
}

/* Specific Button Colors */
.btn-plan {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #000 !important;
}

.btn-whatsapp-adv {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white !important;
}

/* Pulsing effect for the primary button */
.pulse-animation {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}
/* ===========================================
   ENHANCED SECTION 2 - CHOICES
   =========================================== */
/* ================= ROOT COLORS ================= */
/* ================= SECTION BACKGROUND ================= */
:root {
            --bg-dark: #08080a;
            --electric-orange: #ff6a00;
            --neon-glow: rgba(255, 106, 0, 0.6);
            --glass-white: rgba(255, 255, 255, 0.05);
        }

        /* 1. THE OPPOSITE BACKGROUND (Dark & Deep) */
        .bg-vibrant {
            background-color: #581212;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Ambient Floating Glows */
        .bg-vibrant::before,
        .bg-vibrant::after {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(140px);
            opacity: 0.15;
            z-index: 0;
            animation: floatGlow 15s infinite alternate ease-in-out;
        }

        .bg-vibrant::before {
            background: var(--electric-orange);
            top: -200px;
            left: -100px;
        }

        .bg-vibrant::after {
            background: #ff2e00;
            bottom: -200px;
            right: -100px;
            animation-delay: -5s;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(60px, -40px) scale(1.2); }
        }

        /* 2. THE GLASS CARD (Opposite: Bright & Vibrant) */
        .choice-card {
            background: var(--glass-white);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            
            /* Border Contrast */
            border: 1px solid rgba(255, 106, 0, 0.2);
            border-radius: 40px;
            padding: 60px 25px;
            text-align: center;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(.23, 1, .32, 1);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        /* Hover State: Card transforms into an Orange Lantern */
        .choice-card:hover {
            transform: translateY(-20px) scale(1.05);
            background: rgba(255, 106, 0, 0.15);
            border-color: var(--electric-orange);
            box-shadow: 0 0 60px rgba(255, 106, 0, 0.35);
        }

        /* Shimmer Sweep Effect */
        .choice-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: 0.8s;
        }

        .choice-card:hover::before {
            left: 100%;
        }

        /* 3. INSIDE THE CARD: ICON & TEXT */
        .icon-circle {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            
            /* High Contrast Color */
            color: #ffffff;
            background: linear-gradient(135deg, #ff8c00, #ff4e00);
            box-shadow: 0 15px 35px rgba(255, 78, 0, 0.4);
            transition: all 0.6s ease;
        }

        .choice-card:hover .icon-circle {
            transform: rotateY(360deg) scale(1.1);
            background: #ffffff;
            color: var(--electric-orange);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
        }

        .choice-card h6 {
            color: #ffffff;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: 0.4s;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .choice-card:hover h6 {
            color: #ffae00;
            letter-spacing: 5px; /* Text stretches slightly on hover */
        }

        /* Active/Selected State */
        .choice-card.active {
            border: 2px solid #ffffff;
            background: rgba(255, 106, 0, 0.3);
        }

        /* Result Box Style */
        .result-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            border-radius: 40px;
            padding: 50px;
            margin-top: 50px;
            color: white;
            text-align: center;
        }

/*========================== section 3  ================*/ 
/* ===========================================
   ENHANCED SECTION 3 - ABOUT
   
   =========================================== */

/* ===== Travel Theme Variables ===== */
:root {
    --sky-blue: #0096c7;
    --deep-blue: #023e8a;
    --sunset-orange: #ff7b00;
    --soft-sand: #fdf3e7;
    --travel-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===== About Section Background ===== */
.about-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #e0f7fa, #fdf3e7);
    position: relative;
    overflow: hidden;
}

/* Soft Floating Travel Pattern */
.about-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(0,150,199,0.08) 3px, transparent 3px),
        radial-gradient(circle at 70% 70%, rgba(255,123,0,0.08) 3px, transparent 3px);
    background-size: 120px 120px;
    animation: floatPattern 80s linear infinite;
    z-index: 0;
}

@keyframes floatPattern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Section Title ===== */
.section-title {
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: var(--deep-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--sky-blue));
    bottom: -12px;
    left: 20%;
    border-radius: 5px;
}

/* ===== Travel Stats ===== */
.about-stat {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--travel-shadow);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-stat:hover {
    transform: translateY(-8px);
}

.about-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sunset-orange);
    margin-bottom: 5px;
}

.about-stat p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* ===== Feature Travel Cards ===== */
.about-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--travel-shadow);
    position: relative;
    border-top: 5px solid transparent;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-top: 5px solid var(--sky-blue);
}

/* Travel Icons */
.about-card i {
    font-size: 2.8rem;
    background: linear-gradient(45deg, var(--sunset-orange), var(--sky-blue));
    -webkit-background-clip: text;
    margin-bottom: 20px;
}

/* Card Heading */
.about-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--deep-white);
}

/* Bullet Points */
.about-points div {
    font-weight: 500;
    color: #4febe3;
    margin-bottom: 6px;
}

.about-points i {
    color: var(--sunset-orange);
}

/* Travel Quote Style */
.blockquote {
    border-left: none;
    font-style: italic;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: inset 6px 0 0 var(--sunset-orange);
    color: #555;
}

/*========================== section 4  ================*/ 


/* Section Styling */
/* =========================
   THEME COLORS
========================= */

:root {
    --primary: #ffb703;      /* Warm Travel Yellow */
    --secondary: #219ebc;    /* Sky Blue */
    --accent: #8ecae6;       /* Soft Blue */
    --bg-main: #f5faff;      /* Modern light background */
    --bg-section: #ffffff;
    --dark: #0b132b;
}

/* =========================
   GLOBAL FIXES
========================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 183, 3, 0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(33, 158, 188, 0.12), transparent 40%),
        var(--bg-main);
    color: var(--dark);
}

/* =========================
   NAVBAR FIX
========================= */

.navbar,
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* =========================
   TOURS SECTION FIX
========================= */

#tours {
    scroll-margin-top: 100px;
}

.tours-section {
    padding-top: 120px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 255, 1)),
        radial-gradient(circle at top right, rgba(142, 202, 230, 0.25), transparent 40%);
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    font-size: 2.4rem;
    position: relative;
    font-weight: 700;
}



.section-title::after {
    content: '';
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =========================
   TOUR CARD
========================= */

.tour-card-wrapper {
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.tour-card-wrapper:hover {
    transform: translateY(-12px);
}

/* =========================
   IMAGE
========================= */

.tour-img-container {
    position: relative;
    overflow: hidden;
}

.tour-img-container img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card-wrapper:hover img {
    transform: scale(1.12);
}

/* =========================
   GRADIENT OVERLAY
========================= */

.tour-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 19, 43, 0.85),
        rgba(11, 19, 43, 0.15)
    );
    z-index: 1;
}

/* =========================
   BADGE
========================= */

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), #ff0000);
    color: #000;
    padding: 7px 16px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* =========================
   GLASS CONTENT
========================= */

.tour-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.glass-content {
   
    padding: 22px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-content h5 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.glass-content p {
    font-size: 14px;
    opacity: 0.92;
}

/* =========================
   VIEW BUTTON
========================= */

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-btn:hover {
    color: #fff;
    transform: translateX(6px);
}

/* =========================
   SHINE BUTTON
========================= */

.btn-shine {
    background: linear-gradient(135deg, #ff9933, #bc2121);
    border: none;
    padding: 15px 42px;
    color: #000;
    font-weight: 800;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(255, 183, 3, 0.4);
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    transform: skewX(-25deg);
}

.btn-shine:hover::after {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .tour-img-container img {
        height: 320px;
    }

    .section-title {
        font-size: 2rem;
    }
}


/*====================================== section 5  ==================================*/ 


/* ===========================================
   ENHANCED SECTION 5 - HOW IT WORKS
   =========================================== */

/* ===============================
    TRAVEL THEME: ORANGE & GREEN 
   =============================== */
:root {
    /* Travel & Flag Palette */
    --flag-saffron: #FF9933;
    --flag-white: #FFFFFF;
    --flag-green: #128807;
    --sunset-orange: #ff7b00;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Section Background - Nature Green Gradient */
.how-section {
    padding: 100px 0;
    /* Deepened the green gradient for better text readability */
    background: #520707;
    position: relative;
    overflow: hidden;
}

/* Section Title - Indian Flag Color Effect */
.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    /* Flag Gradient Logic */
    background: linear-gradient(to right, 
        var(--flag-saffron) 0%, 
        var(--flag-saffron) 33%, 
        var(--flag-white) 33%, 
        var(--flag-white) 66%, 
        var(--flag-green) 66%, 
        var(--flag-green) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Ensuring the '4 Aasaan' span also looks good */
.section-title span {
    text-decoration: underline;
    text-decoration-color: var(--flag-white);
}

/* Glass Card - Step Box */
.step-box {
    height: 100%;
    padding: 45px 25px;
    border-radius: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.step-box:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--flag-saffron);
}

/* Step Number - Vibrant Orange */
.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--flag-saffron), #ff5e00);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: number-float 4s ease-in-out infinite;
}

@keyframes number-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-box h4 {
    color: var(--flag-saffron);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.how-tagline {
    color: var(--flag-white);
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.4rem; }
}



/*========================== section 6  ================*/ 

/* ===========================================
   ENHANCED SECTION 6 - TESTIMONIALS
   =========================================== */

.testimonial-section {
    background: var(--testimonials-gradient);
    position: relative;
    overflow: hidden;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Enhanced Quote Icon */
.quote-icon {
    color: var(--golden-yellow);
    font-size: 3rem;
    margin-bottom: 20px;
    animation: quote-bounce 2s ease-in-out infinite;
}

@keyframes quote-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Badge */
.glass-badge {
    background: linear-gradient(45deg, rgba(255, 209, 102, 0.2), rgba(255, 107, 53, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 209, 102, 0.3);
    color: var(--golden-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Section Background - Use a vibrant gradient or image so glass effect is visible */
    .testimonial-section {
        background: linear-gradient(45deg, #010c1b, #063444, #000d1f);
        padding: 80px 0;
        overflow: hidden;
    }

    .section-title {
        font-weight: 800;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    /* Glassmorphism Card Effect */
    .testimonial-card {
        background: rgba(255, 255, 255, 0.1); /* Transparent white */
        backdrop-filter: blur(15px); /* The "Glass" blur */
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2); /* Thin border */
        border-radius: 20px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    }

    /* Large Quote Icon */
    .quote-icon {
        font-size: 50px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.3);
        font-family: 'Georgia', serif;
    }

    .testimonial-text {
        color: #f8f9fa;
        font-size: 1.1rem;
        font-style: italic;
        line-height: 1.6;
    }

    /* Badge Styling */
    .glass-badge {
        background: rgba(255, 193, 7, 0.2); /* Transparent Warning Yellow */
        color: #ffc107;
        border: 1px solid rgba(255, 193, 7, 0.5);
        font-weight: 600;
        padding: 5px 15px;
        backdrop-filter: blur(5px);
    }

    .location-text {
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.8rem;
    }

    /* Decorative circles for background depth */
    .testimonial-section {
        position: relative;
    }
    .testimonial-section::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: #ffc107;
        border-radius: 50%;
        top: 10%;
        left: 5%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
    }
/* =========================================== =======================================================================*/
/* ===============================
   ABOUT SECTION – PREMIUM CSS
   =============================== */

/* ===========================================
   ENHANCED SECTION 3 - ABOUT
   =========================================== */
/* ===============================
   THEME VARIABLES (ORANGE)
================================ */
:root {
    --primary-orange: #FF7A18;
    --secondary-orange: #FFB703;
    --soft-orange: #FFE8D6;
    --deep-orange: #FB8500;

    --about-gradient: linear-gradient(
        135deg,
        #FFF1E6,
        #FFD6A5,
        #FF9F1C
    );

    --glass-bg: rgba(255, 255, 255, 0.18);
    --glass-border: rgba(255, 255, 255, 0.35);
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
    padding: 90px 0;
    background: var(--about-gradient);
    color: #2c2c2c;
    position: relative;
    overflow: hidden;
}

/* Animated Forest Background Pattern */
.about-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    /* Deep Forest Green & Moss Mint Gradients */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(45, 106, 79, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(149, 213, 178, 0.12) 2px, transparent 2px);
    background-size: 110px 110px;
    animation: pattern-move 120s linear infinite;
    z-index: 0;
    /* Optional: Slight blur to simulate a soft forest canopy feel */
    filter: blur(1px); 
}

/* Ensure the section has a dark or light forest background for contrast */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: #f0fdf4; /* Very light mint/white forest air */
}

@keyframes pattern-move {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===============================
   SECTION TITLE & TEXT
================================ */
.about-section .section-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.about-section .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;

}

/* ===============================
   ABOUT POINTS
================================ */
.about-points i {
    color: var(--deep-orange);
    font-size: 1.1rem;
}

/* Quote */
.about-section blockquote {
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
}

.about-section blockquote p {
    font-weight: 600;
}

/* ===============================
   ABOUT STATS
================================ */
.about-stat {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.about-stat::before {
    content: attr(data-number);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.about-stat h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-orange);
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.about-stat p {
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.about-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
}

/* ===============================
   ABOUT CARDS
================================ */
.about-card {
    height: 100%;
    padding: 38px 28px;
    border-radius: 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom Accent Line */
.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--deep-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-card:hover::after {
    transform: scaleX(1);
}

.about-card i {
    font-size: 2.3rem;
    margin-bottom: 18px;
    color: var(--primary-orange);
}

.about-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Hover Effect */
.about-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }

    .about-section .section-title {
        font-size: 2.1rem;
    }

    .about-section .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .about-card {
        padding: 30px 22px;
    }

    .about-stat h3 {
        font-size: 1.7rem;
    }
}

/* ===========================================
/* ===========================================
   ENHANCED SCROLL TOP BUTTON (BLUE TO RED)
   =========================================== */
:root {
    --primary-blue: #007bff;      /* Vibrant Blue */
    --deep-blue: #0056b3;         /* Darker Blue for gradient */
    --hover-red: #ff3131;         /* Bright Red */
    --hover-dark-red: #b91d1d;    /* Deep Red for hover gradient */
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: 120px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Default Blue Gradient */
    background: linear-gradient(45deg, var(--primary-blue), var(--deep-blue));
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Soft Blue Shadow */
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.35);
}

.scroll-top i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Hover Effect: Changes to Red */
.scroll-top:hover {
    /* Red Gradient on Hover */
    background: linear-gradient(45deg, var(--hover-red), var(--hover-dark-red));
    transform: translateY(-10px) scale(1.1);
    /* Aggressive Red Shadow on Hover */
    box-shadow: 0 15px 40px rgba(255, 49, 49, 0.55);
}

.scroll-top:hover i {
    transform: translateY(-5px);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
/* ===========================================
   ENHANCED WHATSAPP BUTTON
   =========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
    transition: all 0.3s ease;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
}





/* ===========================================
   RESPONSIVE DESIGN ENHANCEMENTS
   =========================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .step-box::before {
        display: none;
    }
}

@media (max-width: 992px) {
    section, footer {
        scroll-snap-align: none;
        min-height: auto;
        padding: 60px 0;
    }
    
    .choice-card,
    .about-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .tour-card-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .scroll-top {
        right: 20px;
        bottom: 100px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-btn {
        padding: 12px 30px;
    }
    
    .choice-card,
    .about-card,
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .tour-card-wrapper {
        height: 300px;
    }
    
    .step-box {
        padding: 30px 20px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }
    
    .scroll-top {
        right: 15px;
        bottom: 90px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ===========================================
   PERFORMANCE OPTIMIZATIONS
   =========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Hardware Acceleration */
.hardware-accel {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Will-change for critical animations */
.will-animate {
    will-change: transform, opacity;
}

/* ===========================================
   CUSTOM SCROLLBAR
   =========================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--midnight-blue);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--sunrise-orange), var(--sunset-red));
    border-radius: 6px;
    border: 3px solid var(--midnight-blue);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--sunset-red), var(--coral-pink));
}

/* ===========================================
   LOADING ANIMATION
   =========================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--midnight-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--sunrise-orange);
    border-bottom-color: var(--emerald-green);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================================
   TEXT ANIMATION EFFECTS
   =========================================== */

.typing-text {
    overflow: hidden;
    border-right: 3px solid var(--sunrise-orange);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--sunrise-orange); }
}

/* ===========================================
   HOVER GLOW EFFECT
   =========================================== */

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

/* ===========================================
   GRADIENT TEXT
   =========================================== */

.gradient-text {
    background: linear-gradient(45deg, var(--sunrise-orange), var(--golden-yellow), var(--emerald-green), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradient-shift-text 5s ease infinite;
}

@keyframes gradient-shift-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===========================================
   SECTION TRANSITION EFFECTS
   =========================================== */

.section-transition {
    position: relative;
}

.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--midnight-blue), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ===========================================
   ACCESSIBILITY ENHANCEMENTS
   =========================================== */

@media (prefers-contrast: high) {
    :root {
        --sunrise-orange: #FF5500;
        --sunset-red: #FF0000;
        --golden-yellow: #FFAA00;
        --emerald-green: #00AA55;
        --ocean-blue: #0066AA;
        --deep-purple: #6600CC;
    }
}

/* Focus States for Accessibility */
:focus {
    outline: 3px solid var(--golden-yellow);
    outline-offset: 3px;
}

/* Skip to main content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sunrise-orange);
    color: white;
    padding: 10px;
    text-decoration: none;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}