
/* Stunning Card Styles */
.card-modern-link {
    text-decoration: none;
    display: block;
}

.card-modern {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 320px;
}

.card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.8);
}

.card-modern:hover .card-image {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(147, 51, 234, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0.8;
    transition: all 0.4s ease;
}

.card-modern:hover .card-overlay {
    opacity: 0.9;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.4) 0%,
        rgba(147, 51, 234, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 10;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.card-modern:hover .card-content {
    transform: translateY(0);
}

.card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease 0.1s;
}

.card-modern:hover .card-title {
    transform: translateY(0);
    opacity: 1;
}

.card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.card-modern:hover .card-arrow {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.card-arrow i {
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.card-modern:hover .card-arrow i {
    transform: translateX(2px);
}

/* Additional Variants */
.card-modern.card-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-modern.card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(147, 51, 234, 0.5)) 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-modern {
        height: 280px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
}




























/* Travel Themes Section Styles */
.themes-section {
    background-color: var(--body);
    padding: 4rem 0;
    color: white;
}

.themes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.themes-heading {
    font-size:2.5rem;
    font-weight: 700;
   
    margin-bottom: 1rem;
    position: relative;
}

.themes-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.themes-subheading {
    font-size: 1.1rem;
    
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Theme Card Styles */
.theme-card-link {
    text-decoration: none;
    display: block;
}

.theme-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    height: 280px;
    border: 2px solid transparent;
}

.theme-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.theme-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.theme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.theme-card:hover .theme-image {
    transform: scale(1.08);
    filter: brightness(0.7) contrast(1.2);
}

.theme-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(236, 72, 153, 0.1) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.theme-card:hover .theme-gradient-overlay {
    opacity: 1;
}

.theme-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: scale(0.8) rotate(-10deg);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-card:hover .theme-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    background: rgba(255, 255, 255, 1);
}

.theme-icon i {
    font-size: 1.2rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.theme-card:hover .theme-icon i {
    color: #8b5cf6;
    transform: scale(1.1);
}

.theme-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fafafb 0%, #ffffff 100%);
    position: relative;
}

.theme-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.theme-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    transition: all 0.3s ease;
}

.theme-card:hover .theme-name {
    color: #3b82f6;
    transform: translateX(5px);
}

.theme-hover-arrow {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(10px) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-card:hover .theme-hover-arrow {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.theme-hover-arrow i {
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.theme-card:hover .theme-hover-arrow i {
    transform: translateX(2px);
}

/* Stagger animation effect */
.theme-card:nth-child(1) { animation-delay: 0.1s; }
.theme-card:nth-child(2) { animation-delay: 0.2s; }
.theme-card:nth-child(3) { animation-delay: 0.3s; }
.theme-card:nth-child(4) { animation-delay: 0.4s; }
.theme-card:nth-child(5) { animation-delay: 0.5s; }
.theme-card:nth-child(6) { animation-delay: 0.6s; }
.theme-card:nth-child(7) { animation-delay: 0.7s; }
.theme-card:nth-child(8) { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 768px) {
    .themes-heading {
        font-size: 2rem;
    }
    
    .theme-card {
        height: 260px;
    }
    
    .theme-image-wrapper {
        height: 180px;
    }
    
    .theme-info {
        padding: 1.25rem;
    }
    
    .theme-name {
        font-size: 1.1rem;
    }
}

/* Additional hover effects for different cards */
.theme-card:nth-child(odd):hover {
    transform: translateY(-8px) rotate(-1deg);
}

.theme-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(1deg);
}