@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-primary: 'Poppins', sans-serif;
    --color-orange: #ea580c;
    --color-yellow: #facc15;
     --brand-gradient: linear-gradient(135deg, #ea580c 0%, #facc15 100%);
    /* --- Container Max-Widths (Easily Changeable Here) --- */
    --container-sm: 540px;   /* For Mobile Landscape */
    --container-md: 720px;   /* For Tablets */
    --container-lg: 960px;   /* For Small Laptops */
    --container-xl: 1440px;  /* For Desktops */
    --container-xxl: 1400px; /* For Large Screens (1400px+) */
    

    /* --- Spacing --- */
    --gutter-x: 1.5rem;      /* Left-Right Padding gap */
}

/* =========================================
   2. CUSTOM CONTAINER SYSTEM
   ========================================= */



/* Base Container Styling */
.container, .container-fluid, 
.container-lg, .container-md, 
.container-sm, .container-xl, 
.container-xxl {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

/* --- Media Queries (Controlled by Variables) --- */

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: var(--container-sm);
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: var(--container-md);
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: var(--container-lg);
    }
}

/* X-Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container, .container-xl, .container-lg, .container-md, .container-sm {
        max-width: var(--container-xl);
    }
}

/* XX-Large Devices (Larger Screens, 1400px and up) */
@media (min-width: 1400px) {
    .container, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
        max-width: var(--container-xxl);
    }
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
}


/* ============================
   HEADER / NAVBAR
   ============================ */
.header-main {
    transition: all 0.3s ease-in-out;
    padding: 16px 0;
    background: transparent;
}

.container {
    padding: 0px 16px;
}

/* Header Scroll Color (Exact Requirement) */
.header-main.scrolled {
    background-color: rgb(17 24 39 / 0.8); /* Dark Blue/Gray Transparent */
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-link {
    color:black !important;
    font-weight: 300;
} 
/* /* .nav-link:hover, .nav-link.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
} */

.btn-book-nav {
     background: var(--brand-gradient); 
    color: white;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-book-nav:hover {
    background: linear-gradient(135deg, #f97316 0%, #fde047 100%);
    transform: translateY(-2px);
    color: white;
}

.theme-toggle {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
}

/* ============================
   HERO BACKGROUND (FIXED)
   ============================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;

    /* Background Image setup */
    background-image: url('../images/ss.webp'); /* Aapki background image */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Gradient Overlay via Pseudo-element (No blend mode, just transparency) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Left: Strong Orange (85% opacity) -> Right: Yellowish (60% opacity) */
    background: linear-gradient(110deg, 
        rgba(234, 88, 12, 0.9) 0%,   /* Deep Orange */
        rgba(234, 88, 12, 0.7) 40%,  /* Mid Orange */
        rgba(250, 204, 21, 0.6) 100% /* Yellow/Gold */
    );
    z-index: -1; /* Image ke upar lekin text ke niche */
}

/* Agar .hero-section z-index 1 hai to content visible rahega */
.hero-text-col, .tour-card-container {
    z-index: 2;
}

/* ============================
   HERO TEXT CONTENT
   ============================ */
.badge-pill {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.palm-icon { font-size: 2.5rem; color: rgba(255,255,255,0.9); margin-bottom: 15px; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-hero-primary {
    background: white;
    color: #ea580c;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-hero-secondary {
    background: rgba(0,0,0,0.4);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}
.btn-hero-secondary:hover { background: rgba(0,0,0,0.6); color: white; }

/* Key Points */
.key-points-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}
.point-item { display: flex; align-items: center; gap: 12px; }
.icon-box {
    width: 32px; height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; flex-shrink: 0;
}
.point-item span { color: white; font-size: 0.85rem; font-weight: 500; }

/* ============================
   RIGHT CARD WIDGET (EXACT MATCH)
   ============================ */
.tour-card-container {
    position: relative;
    width: 100%;
    /* max-width: 580px; */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #000; /* fallback */
}

.tour-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 320px;
}

/* Live Status Dot */
.live-status {
    position: absolute;
    bottom: 100px; /* Position above the dark bar */
    left: 20px;
    color: #ffffff; /* Green color */
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.pulse-dot {
    width: 8px; height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.outerlayer {
     position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Bottom Dark Bar */
.card-bottom-bar {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.price-info { display: flex; flex-direction: column; }
.price-info .label { font-size: 0.8rem; color: #ccc; }
.price-info .price { font-size: 1.8rem; font-weight: 700; color: white; line-height: 1; }

.btn-view-card {
    background: white;
    color: #ea580c;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}
.btn-view-card:hover {
    background: #f1f1f1;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: -40px;
    right: -20px;
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}
.badge-icon-bg {
    width: 32px; height: 32px;
    background: #ff4500;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.badge-text strong { display: block; font-size: 0.9rem; line-height: 1.1; color: #ffffff; }
.badge-text span { font-size: 0.7rem; color: #ececec; }

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

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
        background: linear-gradient(180deg, #ea580c 0%, #facc15 100%); /* Mobile Vertical Gradient */
    }
    .hero-section::before { display: none; } /* Disable overlay on mobile if using solid gradient */
    
    .key-points-wrapper { text-align: left; }
    .floating-badge { right: 0; bottom: 100px; }
    
    /* Navbar Mobile Bg */
    .navbar-collapse {
        background: #111827;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
    }
}




/* ============================================
   ABOUT SECTION STYLES
   ============================================ */
.about-section {
    background: radial-gradient(circle at top left, #1f2937 0%, #111827 100%);
    padding: 80px 0;
    color: #9ca3af; /* Light Gray Text */
    position: relative;
}

/* Section Header */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Orange Underline */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brand-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
}

.main-about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Floating Dark Card on Image */
.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1f2937; /* Dark Gray bg */
    padding: 20px;
    border-radius: 12px;
    max-width: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.heart-icon-circle {
    width: 24px;
    height: 24px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

/* Feature List */
.feature-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--brand-gradient); /* Orange Background */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.feature-content h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Quote Block */
.quote-block {
    border-left: 3px solid #ea580c;
    padding-left: 20px;
    font-style: italic;
    color: #d1d5db; /* Lighter gray for quote */
    font-size: 0.95rem;
}

.text-secondary {
    color: #d7d7d7 !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-floating-card {
        position: static;
        margin-top: -40px;
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
        transform: translateY(20px);
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}



/* ============================================
   EXPERIENCE SECTION STYLES
   ============================================ */
.experience-section {
    background-color: #0f172a; /* Deep Dark Blue Background matching screenshot */
    padding: 80px 0;
}

/* Card Base Styles */
.exp-card {
    background: #1e293b; /* Slightly lighter dark for card bg */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    border-top: 4px solid transparent; /* Placeholder for color border */
}

.exp-card:hover {
    transform: translateY(-5px);
}

.exp-img-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.exp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-content {
    padding: 20px;
    padding-top: 30px; /* Space for floating icon */
    position: relative;
}

/* Floating Icon */
.exp-icon {
    margin: 0px 0px 10px 0px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Typography */
.exp-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.price-badge {
    background: #451a03; /* Dark brownish bg */
    color: #fb923c; /* Orange text */
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #7c2d12;
}

.exp-desc {
    color: #94a3b8; /* Slate gray text */
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px; /* Aligns buttons */
}

.exp-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.exp-link:hover {
    color: white;
}

/* ============================================
   COLOR VARIANTS (For Borders & Icons)
   ============================================ */

/* Cyan Variant */
.border-cyan { border-top-color: #22d3ee; }
.bg-cyan { background: #22d3ee; }

/* Purple Variant */
.border-purple { border-top-color: #d946ef; }
.bg-purple { background: #d946ef; }

/* Orange Variant */
.border-orange { border-top-color: #f59e0b; }
.bg-orange { background: #f59e0b; }

/* Pink/Red Variant */
.border-pink { border-top-color: #f43f5e; }
.bg-pink { background: #f43f5e; }

/* Green Variant */
.border-green { border-top-color: #22c55e; }
.bg-green { background: #22c55e; }

/* Yellow Variant */
.border-yellow { border-top-color: #eab308; }
.bg-yellow { background: #eab308; }

/* Blue Variant */
.border-blue { border-top-color: #3b82f6; }
.bg-blue { background: #3b82f6; }

/* Teal Variant */
.border-teal { border-top-color: #10b981; }
.bg-teal { background: #10b981; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .exp-img-wrapper {
        height: 200px;
    }
}




/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    position: relative;
    padding: 80px 0;
    background-color: #0f172a; /* Dark Blue Base */
    
    /* THE YELLOW GLOW DOT EFFECT */
    background-image: radial-gradient(
        circle at 50% 50%, 
        rgba(234, 179, 8, 0.15) 0%, /* Yellow Glow Center */
        transparent 60%             /* Fades to transparent */
    );
}

.package-card {
    background: #1e293b; /* Card Background */
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Image Area */
.pkg-img-wrapper {
    position: relative;
    height: 220px;
}

.pkg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Price Badge (Top Left) */
.price-badge-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(30, 41, 59, 0.9);
    color: #fb923c; /* Orange Text */
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid #ea580c;
}

/* Most Popular Badge (Top Right) */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b; /* Orange/Yellow */
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Body Content */
.pkg-body {
    padding: 25px;
    flex-grow: 1;
}

.pkg-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.pkg-sub {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Meta Info (Icons) */
.pkg-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.pkg-meta div {
    color: #cbd5e1;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-meta i {
    color: #ea580c; /* Orange Icons */
    width: 16px;
}

.divider-line {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 15px 0;
}

/* Lists */
.list-heading {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.pkg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-list li {
    position: relative;
    padding-left: 25px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* Custom Check Icon */
.check-list li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #22c55e; /* Green */
}

/* Custom Cross Icon */
.cross-list li::before {
    content: '\f00d'; /* FontAwesome Cross */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ef4444; /* Red */
}

/* Footer Button */
.pkg-footer {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    margin-top: auto;
}

.btn-book-pkg {
    background: var(--brand-gradient); /* Uses your global gradient */
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-book-pkg:hover {
    filter: brightness(1.1);
    color: white;
}



/* ====================== */
/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 80px 0;
    background-color: #0f172a; /* Dark Blue */
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #334155;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #ea580c;
    color: white;
}

.filter-btn.active {
    background: var(--brand-gradient); /* Uses your Global Gradient */
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

/* Gallery Grid Items */
.gallery-item {
    transition: all 0.3s ease;
    display: block; /* Default visible */
}

.gallery-item.hide {
    display: none; /* Hidden state */
}

.gallery-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Gallery Card & Hover Effect */
.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 220px; /* Fixed height for uniformity */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7); /* Dark semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

/* Hover Actions */
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1); /* Icon Zoom In */
}

.gallery-card:hover img {
    transform: scale(1.1); /* Image subtle zoom */
}

/* ============================================
   LIGHTBOX (FULL SCREEN MODAL)
   ============================================ */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Deep black bg */
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform:scale(0.8); opacity:0} 
    to {transform:scale(1); opacity:1}
}

/* Caption */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    height: 150px;
    font-size: 1.1rem;
}

/* Close Button */
.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #ea580c;
}

/* Nav Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(255, 255, 255, 0.1);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(234, 88, 12, 0.8); /* Orange Hover */
}

@media only screen and (max-width: 700px) {
    .lightbox-content { width: 100%; }
}