
        :root {
            --primary-blue: #0a1857;
            --secondary-blue: #1e3a8a;
            --accent-gold: #fbbf24;
            --light-blue: #e0f2fe;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --light-gray: #f8fafc;
        }

        body {
            font-family: 'IBM Plex Sans Condensed', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
.nav-item {
    position: relative;
}

.nav-item ul {
    display: none;
    position: absolute;
    top: 100%; /* show directly below parent */
    left: 0;
    background: #fff;
    min-width: 160px;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(25, 161, 240, 0.15);
    margin-top: 0.5rem;
    padding: 0;
    list-style: none;
}

.nav-item:hover > ul,
.nav-item ul:hover {
    display: block; /* dropdown stays open if hovering parent OR submenu */
}

.nav-item ul li {
    display: block;
}


        .font-flair {
            font-family: 'Playfair Display', serif;
        }

        /* Memories Section */
        .memories-section {
            position: relative;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        /* Video Background */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dark Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        /* Content Container */
        .memories-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 2rem 0;
        }

        /* Left Content */
        .memories-text {
            color: var(--white);
            padding-right: 2rem;
        }

        .memories-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .memories-description {
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Image Slider Container */
        .image-slider-container {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        /* Image Slider */
        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            gap: 20px;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Image Cards */
        .image-card {
            position: relative;
            min-width: 300px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .image-card:hover img {
            transform: scale(1.1);
        }

        /* Card Content */
        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: var(--white);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .image-card:hover .card-content {
            transform: translateY(0);
            opacity: 1;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .card-description {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* Navigation Buttons */
        .slider-nav {
            position: absolute;
            /*bottom: 30px;*/
            left: 30px;
            display: flex;
            gap: 10px;
            z-index: 4;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-blue);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* Dots Indicator */
        .slider-dots {
            position: absolute;
            bottom: 100px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 4;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--accent-gold);
            transform: scale(1.3);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .image-card {
                min-width: 280px;
                height: 350px;
            }
            
            .image-slider-container {
                height: 350px;
            }
        }

        @media (max-width: 992px) {
            .memories-section {
                height: auto;
                min-height: 70vh;
                padding: 3rem 0;
            }
            
            .memories-title {
                font-size: 3rem;
            }
            
            .memories-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }
            
            .image-slider-container {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .memories-title {
                font-size: 2.5rem;
            }
            
            .memories-description {
                font-size: 1.1rem;
            }
            
            .image-card {
                min-width: 250px;
                height: 300px;
            }
            
            .image-slider-container {
                height: 300px;
            }
            
            .slider-nav {
                bottom: 20px;
                right: 20px;
            }
            
            .nav-btn {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .memories-section {
                min-height: 60vh;
                padding: 2rem 0;
            }
            
            .memories-title {
                font-size: 2rem;
            }
            
            .image-card {
                min-width: 220px;
                height: 280px;
            }
            
            .image-slider-container {
                height: 280px;
            }
        }

        /* Animation for text content */
        .fade-in-up {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


         /* Destinations Slider */
    .destinations-section {
        background-color: var(--light-gray);
    }
    
    .section-title {
         font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        letter-spacing: 3px;
        color: var(--text-light);
        text-transform: uppercase;
    }
    
    /* Destinations Slider */
    .destinations-slider-container {
        overflow: hidden;
        padding: 0 50px;
        position: relative;
    }
    
    .destinations-slider-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 30px;
    }
    
    .destination-slide {
        min-width: calc(25% - 23px); /* 4 slides visible */
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .destination-slide:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    .destination-link {
        display: block;
       
        color: inherit;
    }
    
    .destination-image-wrapper {
        height: 300px;
        overflow: hidden;
    }
    
    .destination-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .destination-slide:hover .destination-image-wrapper img {
        transform: scale(1.05);
    }
    
   .destination-title {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,0.8);
    line-height: 1.2;
    text-align: left;
    letter-spacing: 0.5px;
    z-index: 4;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
    
    /* Slider Navigation */
     .destinations-section {
        background-color: #f8fafc;
        padding: 80px 0;
    }
    
   
    .section-subtitle {
        font-size: 1.2rem;
        letter-spacing: 3px;
        color: #6b7280;
        text-transform: uppercase;
        font-weight: 300;
    }
    
    /* Destinations Slider */
    .destinations-slider-container {
        overflow: hidden;
        padding: 0 50px;
        position: relative;
        margin: 0 auto;
        max-width: 1600px;
    }
    
    .destinations-slider-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 20px;
        padding: 20px 0;
    }
    
    .destination-slide {
        min-width: calc(33.333% - 14px);
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(10, 24, 87, 0.15);
        transition: all 0.4s ease;
        aspect-ratio: 4/5;
    }
    
    .destination-slide:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(10, 24, 87, 0.25);
    }
    
    .destination-link {
        display: block;
        text-decoration: none;
        color: inherit;
        height: 100%;
        position: relative;
    }
    
    .destination-image-wrapper {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .destination-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
    }
    
    .destination-slide:hover .destination-image-wrapper img {
        transform: scale(1.1);
    }
    
  .destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.3) 80%, transparent 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
    min-height: 180px;
} 
 .destination-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
    text-align: left;
    letter-spacing: 0.5px;
}
.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9) 0%, rgba(245, 158, 11, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    width: fit-content;
    align-self: flex-start;
}
    
.explore-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}
    
  .destination-slide:hover .explore-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    color: #0a1857;
}
  .destination-slide:hover .explore-btn i {
    transform: translateX(5px);
}
    /* Enhanced hover effects for the entire slide */
.destination-slide:hover .destination-title {
    transform: translateY(-3px);
    text-shadow: 3px 3px 8px rgba(0,0,0,1), 1px 1px 4px rgba(0,0,0,0.9);
    color: #ffffff !important;
}

.destination-slide:hover .destination-content {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.4) 80%, transparent 100%);
}
.destination-slide .destination-title {
    color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}
    /* Slider Navigation */
    .slider-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: white;
        border: none;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        color: #0a1857;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-nav-btn:hover {
        background: #fbbf24;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
    
    /* Slider Dots */
    .slider-dots-container {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(10, 24, 87, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: #fbbf24;
        transform: scale(1.3);
    }
    
    /* Responsive Design */
    @media (max-width: 1600px) {
        .destination-slide {
            min-width: calc(33.333% - 14px);
        }
    }
    
    @media (max-width: 1200px) {
        .destination-slide {
            min-width: calc(50% - 10px);
            aspect-ratio: 3/4;
        }
        
        .destination-title {
            font-size: 1.8rem;
        }
    }
    
    @media (max-width: 992px) {
        .section-title {
            font-size: 3rem;
        }
        
        .destinations-slider-container {
            padding: 0 40px;
        }
        
        .slider-nav-btn {
            width: 50px;
            height: 50px;
        }
    }
    
    @media (max-width: 768px) {
        .destinations-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .destination-slide {
            min-width: calc(100% - 20px);
            aspect-ratio: 16/9;
        }
        
        .destination-content {
            padding: 25px;
        }
        
        .destination-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 2rem;
        }
        
        .destinations-slider-container {
            padding: 0 30px;
        }
        
        .slider-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .destination-title {
            font-size: 1.6rem;
        }
    }
    
    .news-card {
  margin-bottom: 1.5rem;
  border: none;
  transition: transform 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.news-card .card-title {
  font-weight: 600;
}

.news-card .card-text {
  font-size: 0.95rem;
  color: #666;
}

.special-slider-container {
  position: relative;
}
    
 .what-special-section {
    position: relative;
    padding: 60px 0;
    z-index: 1; /* make sure content stays above */
}

.what-special-section::before {
    content: '';
    background: url('doc/photos/rosemadsmith.jpg') 
                no-repeat center center/cover;
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;       /* faint effect */
    z-index: -1;         /* pushes it behind content */
}
        .expanel {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(10, 24, 87, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 500px;
            display: flex;
            flex-direction: column;
        }

        .expanel:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(10, 24, 87, 0.15);
        }

        .expanel-heading {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .expanel-heading::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .expanel:hover .expanel-heading::before {
            transform: translateX(100%);
        }

        .expanel-title {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .expanel-title i {
            font-size: 1.2rem;
            color: var(--accent-gold);
        }

        .expanel-body {
            padding: 0;
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        /* Scrolling Content Styles */
        .scroll-content {
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .scroll-wrapper {
            position: absolute;
            width: 100%;
            animation: scrollUp 15s linear infinite;
        }

        .scroll-wrapper:hover {
            animation-play-state: paused;
        }

        /* What's New Styles */
        .news-item {
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .news-item:hover {
            background: linear-gradient(90deg, #f0f9ff 0%, #e0f2fe 100%);
            transform: translateX(10px);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item a {
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 500;
        }

        .news-item a:hover {
            color: var(--primary-blue);
        }

        .news-icon {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            margin: 0;
            font-size: 1rem;
            line-height: 1.4;
        }

        .news-date {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 5px;
        }

        /* About Section Styles */
        .about-item {
            padding: 25px;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .about-item:hover {
            background: linear-gradient(90deg, #fef7cd 0%, #fef3c7 100%);
            transform: translateX(10px);
        }

        .about-item:last-child {
            border-bottom: none;
        }

        .about-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .about-icon {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .about-title {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .about-content {
            margin-left: 60px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .about-highlight {
            background: linear-gradient(90deg, var(--accent-gold) 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        /* Animations */
        @keyframes scrollUp {
            0% {
                top: 100%;
            }
            100% {
                top: -100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .expanel {
                height: 400px;
                margin-bottom: 30px;
            }
            
            .about-content {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .about-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* Scroll Indicators */
        .scroll-indicator {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-gold);
            font-size: 1.2rem;
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(-50%);
            }
            40% {
                transform: translateY(-60%);
            }
            60% {
                transform: translateY(-55%);
            }
        }
       
.announcement-box {
    height: 200px;           /* adjust height */
    overflow: hidden;        /* hide overflowing text */
    position: relative;
}

.announcement-list {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scroll-up 100s linear infinite; /* smoother speed */
}

.announcement-list li {
  padding: 8px 0;
  font-size: 16px;
}
.announcement-list:hover {
  animation-play-state: paused;
}
@keyframes scroll-up {
    0%   { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}
</style>
<style>
@keyframes scroll-up {
  0% { transform: translateY(100%); } /* Start completely below the container */
  100% { transform: translateY(-100%); } /* End completely above the container */
}

.marquee-container:hover .announcement-list {
  animation-play-state: paused; /* Pause the scroll on hover */
}

.tourist-info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.tourist-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('doc/Photos/pattern-bg.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.tourist-info-section .container {
    position: relative;
    z-index: 2;
}

.info-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 24, 87, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 24, 87, 0.25);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}


.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 24, 87, 0.8) 0%,
        rgba(30, 58, 138, 0.9) 50%,
        rgba(10, 24, 87, 0.8) 100%
    );
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

.info-card:hover .card-overlay {
    opacity: 0.9;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 3;
}

.card-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.4s ease;
}

.info-card:hover .card-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.info-card:hover .card-title {
    transform: translateY(-5px);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.info-card:hover .card-description {
    opacity: 1;
    transform: translateY(-3px);
}

.view-more-btn {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
    border: 2px solid var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.view-more-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: left 0.5s ease;
}

.view-more-btn:hover:before {
    left: 100%;
}

.view-more-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.view-more-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-card {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .card-content {
        padding: 30px 25px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .tourist-info-section {
        padding: 60px 0;
    }
    
    .info-card {
        height: 380px;
        margin-bottom: 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .view-more-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .info-card {
        height: 350px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
}

/* Animation for cards on scroll */
.info-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.info-card:nth-child(1) {
    animation-delay: 0.2s;
}

.info-card:nth-child(2) {
    animation-delay: 0.4s;
}

.info-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for the entire card */
.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 4;
}

.info-card:hover::after {
    transform: translateX(100%);
}
</style>
<style>
.gallery-image-wrapper {
     position: relative;
    width: 100%;
    height: 250px; /* fixed uniform height */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    
    transition: transform 0.3s ease;
object-fit: cover;
   
}

.gallery-img:hover {
    transform: scale(1.05);
}

.gallery-overlay {
      position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay */
    color: #fff;
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center; /* horizontal center */
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}
.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1; /* show on hover */
}



.gallery-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.category-name {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.photo-counter {
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    margin-top: auto;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Pause animation on hover */
.gallery-item:hover .gallery-slider {
    animation-play-state: paused;
}

.gallery-slider-container {
    position: relative;
    overflow: hidden;
}

.gallery-slide {
    display: none;
    text-align: center;
}
.gallery-slide.active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease;
}
.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-indicators {
    text-align: center;
    margin-top: 8px;
}
.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}
.indicator.active {
    background: #333;
}

        .newsletter-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 0;
            color: white;
        }
        
        .newsletter-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .newsletter-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .social-icons a {
            color: white;
            transition: all 0.3s ease;
            margin: 0 15px;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: #ffd700;
            transform: translateY(-5px);
        }
        
        .social-icons i {
            font-size: 2.5rem !important;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            border-radius: 25px;
            border: none;
            padding: 12px 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .newsletter-form button {
            border-radius: 25px;
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            border: none;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ffd700, #ff6b6b);
            margin: 0 auto 30px;
            border-radius: 2px;
        }
        
        @media (max-width: 768px) {
            .newsletter-title {
                font-size: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }
            
            .newsletter-form input {
                width: 100% !important;
                margin-right: 0 !important;
            }
            
            .social-icons a {
                margin: 0 10px;
            }
            
            .social-icons i {
                font-size: 2rem !important;
            }
        }
    
    .sound-toggle-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        margin-left: 10px;
    }
    
    .sound-toggle-btn:hover {
        background: var(--accent-gold);
        color: var(--primary-blue);
        border-color: var(--accent-gold);
        transform: scale(1.1);
    }
    
    .hero-buttons {
        display: flex;
        gap: 10px;
        align-items: center;
    }
