

        :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);
        }

        .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;
        text-decoration: none;
        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;
        }
    }
    </style>
    <style>
    .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;
}
    