
        :root {
            --primary-color: #0a1857;
            --secondary-color: #1e3c72;
            --accent-color: #00d4aa;
            --light-blue: #e3f2fd;
            --dark-blue: #0d47a1;
            --text-color: #333;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "IBM Plex Sans Condensed", sans-serif !important;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .font-flair {
            font-family: "Playfair Display", serif !important;
        }

        .font-ibm {
            font-family: "IBM Plex Sans Condensed", sans-serif !important;
        }


        .navbar-brand img {
           height: 80px; /* Adjust to your header height */
    width: auto;
    max-height: 100%;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-item.active .nav-link::after {
            width: 100%;
            left: 0;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }

        .searchBtn, .sidePanelBtn {
            background: none;
            border: none;
            color: #00d4aa;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }

        .searchBtn:hover, .sidePanelBtn:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero-section {
           position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px; 
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 10;
            max-width: 900px;
            padding: 2rem;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
            background: linear-gradient(135deg, #fff, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.5s both;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        .hero-cta {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--accent-color) 0%, #FF7A00 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,157,0,0.3);
            border: 2px solid transparent;
        }

        .hero-cta:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,157,0,0.4);
        }

        .hero-cta.outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .hero-cta.outline:hover {
            background: white;
            color: var(--primary-color);
        }

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 80px 0;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-family: "Playfair Display", serif;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-color);
            font-weight: 500;
        }

        /* Destinations Section */
        .destinations-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
        }

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 4rem;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .destination-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            position: relative;
        }

        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .destination-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .destination-card:hover .destination-image img {
            transform: scale(1.1);
        }

        .destination-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10,24,87,0.8) 0%, transparent 60%);
            display: flex;
            align-items: end;
            padding: 2rem;
        }

        .destination-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .destination-title {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .destination-content {
            padding: 2rem;
        }

        .destination-description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .destination-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-tag {
            background: var(--light-blue);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .destination-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .destination-link:hover {
            color: var(--primary-color);
            gap: 1rem;
        }

        /* Experiences Section */
        .experiences-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .experiences-section .section-title {
            color: white;
        }

        .experience-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            height: 100%;
        }

        .experience-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
        }

        .experience-icon {
            font-size: 4rem;
            color: var(--accent-color);
            margin-bottom: 2rem;
            display: block;
        }

        .experience-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .experience-description {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .experience-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .experience-link:hover {
            color: white;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10,24,87,0.8) 0%, transparent 70%);
            display: flex;
            align-items: end;
            padding: 2rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-text {
            color: white;
            font-weight: 600;
            font-size: 1.3rem;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 2rem;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), #FF7A00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .service-description {
            color: #666;
            line-height: 1.6;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
        }

        .newsletter-btn {
            padding: 15px 30px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #FF7A00;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            margin-bottom: 3rem;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-color);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media only screen and (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .destination-card {
                margin-bottom: 1.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            #header {
                padding: 0.5rem 0;
            }

            .nav-link {
                margin: 0 0.5rem;
            }
        }

        @media only screen and (max-width: 576px) {
            .hero-section {
                height: 80vh;
                margin-top: 60px;
            }

            .hero-content {
                padding: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .destination-content,
            .experience-card,
            .service-card {
                padding: 1.5rem;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            visibility: visible;
            transition: all 0.5s ease;
        }

        .loading.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid var(--accent-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* What's Special Section */
.what-special-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 80px 0;
}

.special-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.special-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.special-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

.special-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0s linear 0s;
}

.special-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.slide-content {
    position: absolute;
    bottom: -34px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slide-description {
    font-size: 1.1rem;
    max-width: 400px;
    background: rgba(112, 111, 118, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-color);
    color: white;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    width: 12px;
    height: 12px;
}

@media only screen and (max-width: 768px) {
    .special-slide img {
        height: 300px;
    }
    .slide-title {
        font-size: 1.5rem;
    }
    .slide-description {
        font-size: 1rem;
        max-width: 300px;
    }
}

@media only screen and (max-width: 576px) {
    .special-slide img {
        height: 200px;
    }
    .slide-title {
        font-size: 1.2rem;
    }
    .slide-description {
        font-size: 0.9rem;
        max-width: 200px;
    }
}

.video-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
.video-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}
.video-slide.active {
    display: block;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    max-width: 300px;
    z-index: 10;
    text-align: right;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.video-title {
    font-size: 1.5rem; /* smaller title */
    font-weight: bold;
    margin-bottom: 8px;
}

.video-desc {
    font-size: 0.9rem; /* smaller description */
    line-height: 1.4;
    margin-bottom: 12px;
}

.hero-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.hero-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
}
.hero-content-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    max-width: 320px;
    z-index: 10;
    text-align: right;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.video-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.video-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 14px;
}

.hero-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.hero-icon-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-icon-btn:hover {
    background: rgba(255,255,255,0.2);
}

#header,
#header * {
    background: transparent !important;
}
/* Remove any background from container or navbar */
#header .container,
#header .navbar {
    background: transparent !important; /* remove any color/gradient */
    backdrop-filter: none !important;    /* remove blur */
    border-bottom: none !important;
    box-shadow: none !important;
}
#header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
/* Navigation links */
#header .nav-link {
    color: #090210 !important;
    font-weight: bold;
}

#header .nav-link:hover {
    color: #ffd700;
}

/* Search and menu buttons */
#header .searchBtn,
#header .sidePanelBtn {
    background: none;
    border: none;
    color: #0d0d0d;
    font-size: 1.2rem;
}

#accessibility-bar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transition: background 0.3s ease;
}

#accessibility-bar .btn {
    font-size: 0.8rem;
    padding: 4px 8px;
}

#accessibility-bar .btn:hover {
    background: rgba(255,255,255,0.1);
}

#accessibility-bar .btn.active {
    background: rgba(255,255,255,0.2);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.section-title {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 4rem;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* What's New Enhanced Slider */
        .whats-new-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            background: white;
            margin-bottom: 2rem;
        }

        .whats-new-slide {
            display: none;
            opacity: 0;
            transition: all 0.6s ease-in-out;
            position: relative;
        }

        .whats-new-slide.active {
            display: block;
            opacity: 1;
        }

        .slide-image {
            position: relative;
            overflow: hidden;
            height: 350px;
            border-radius: 15px 15px 0 0;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .slide-image:hover img {
            transform: scale(1.08);
        }

        .slide-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #00d4aa, #FF6D00);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 6px 20px rgba(255,157,0,0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
        }

        .slide-content {
            padding: 25px;
        }

        .slide-title {
            color: #fcfeff;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .slide-description {
            color: #fafafa;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .slide-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-badge {
            background: linear-gradient(135deg, var(--accent-color), #FF7A00);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .date-info {
            color: #888;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Enhanced Interactive SVG Map */
        .interactive-map-container {
            background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .andaman-map {
            border-radius: 15px;
            cursor: pointer;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
        }

        .location-area {
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .location-area:hover {
            transform: scale(1.15);
            filter: drop-shadow(0 8px 20px rgba(255,157,0,0.6));
        }

        .location-marker {
            cursor: pointer;
        }

        .location-marker:hover {
            filter: brightness(1.3);
        }

        .marker-pulse {
            filter: url(#glow);
        }

        .location-info-panel {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin-top: 25px;
            box-shadow: 0 12px 30px rgba(10,24,87,0.3);
            min-height: 180px;
        }

        .location-info-panel h5 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        .popular-locations-list {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .location-list {
            list-style: none;
            padding: 0;
        }

        .location-list li {
            padding: 12px 0;
            color: var(--text-color);
            font-weight: 500;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .location-list li:hover {
            color: var(--accent-color);
            padding-left: 10px;
        }

        .location-list i {
            margin-right: 12px;
            color: var(--accent-color);
        }

        /* Navigation Controls */
        .whats-new-btn {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.95);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: var(--primary-color);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .whats-new-btn:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(255,157,0,0.4);
        }

        .whats-new-prev {
            left: 20px;
        }

        .whats-new-next {
            right: 20px;
        }

        .whats-new-dots {
            text-align: center;
            margin-top: 25px;
        }

        .whats-new-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .whats-new-dot.active {
            background: var(--accent-color);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255,157,0,0.5);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .slide-image {
                height: 250px;
            }
            
            .slide-overlay {
                padding: 20px;
            }
            
            .slide-content {
                padding: 20px;
            }
        }
        .experience-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
    