/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #00ff88;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Gallery Hero Section */
.gallery-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-grid {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
    height: 1px;
    width: 100%;
    animation: gridMove 8s linear infinite;
}

.grid-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 35%;
    animation-delay: 1.6s;
}

.grid-line:nth-child(3) {
    top: 50%;
    animation-delay: 3.2s;
}

.grid-line:nth-child(4) {
    top: 65%;
    animation-delay: 4.8s;
}

.grid-line:nth-child(5) {
    top: 80%;
    animation-delay: 6.4s;
}

@keyframes gridMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    perspective: 1000px;
}

.title-word {
    display: inline-block;
    margin: 0 0.2em;
    transform: rotateY(-90deg);
    opacity: 0;
    animation: rotateIn 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { 
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-word:nth-child(3) { animation-delay: 0.6s; }
.title-word:nth-child(4) { animation-delay: 0.8s; }

@keyframes rotateIn {
    0% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b3b3b3;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease 1.2s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-timeline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    animation: expandLine 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s + 2s);
}

.timeline-item:nth-child(1) { --delay: 1; }
.timeline-item:nth-child(2) { --delay: 2; }
.timeline-item:nth-child(3) { --delay: 3; }

@keyframes expandLine {
    to {
        width: 100%;
    }
}

.year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.milestone {
    font-size: 0.9rem;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #00ff88, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
    transform: scale(1.1);
}

.gallery-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b3b3b3;
    min-width: 60px;
    text-align: center;
}

/* Interactive Gallery */
.interactive-gallery {
    padding: 4rem 0; /* Reduced from 8rem */
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.swipe-gallery {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: auto; /* Allow dynamic height */
}

.gallery-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 900%; /* 9 items * 100% */
}

.gallery-item {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto; /* Remove fixed height */
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Gallery Image Enhancement */
.gallery-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a); /* Subtle gradient background */
    min-height: 400px; /* Minimum height for consistency */
    border-radius: 0 0 0 25px; /* Rounded corner to match container */
}

.gallery-image img {
    width: 600px;
    height: 400px; /* Allow natural height */
    max-height: 450px; /* Slightly reduced max height */
    max-width: 100%;
    object-fit: cover; /* Changed from cover to contain - shows full image */
    transition: transform 0.8s ease, filter 0.3s ease;
    border-radius: 0; /* Remove border radius for clean edges */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
}

.gallery-item.active .gallery-image img {
    transform: scale(1.02); /* Reduced scale to prevent cropping */
    filter: brightness(1.1) contrast(1.05); /* Enhance image quality */
}

/* Enhanced image loading state */
.gallery-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-top: 3px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.gallery-image img:not([src=""]) + ::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Image aspect ratio containers for different image types */
.gallery-image.landscape {
    aspect-ratio: 16/10;
}

.gallery-image.portrait {
    aspect-ratio: 4/5;
}

.gallery-image.square {
    aspect-ratio: 1/1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 255, 136, 0.2)); /* Reduced opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item.active .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
    padding: 1rem; /* Add padding for better text spacing */
}

.gallery-item.active .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
}

.overlay-content p {
    color: #e0e0e0; /* Lighter color for better contrast */
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-info {
    padding: 2rem; /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    min-height: 400px; /* Match image minimum height */
}

.gallery-date {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.gallery-item.active .gallery-date {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.gallery-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.gallery-item.active .gallery-info h3 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.gallery-info p {
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.gallery-item.active .gallery-info p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.gallery-item.active .gallery-tags {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

/* Swipe Indicators */
.swipe-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: #00ff88;
    transform: scale(1.2);
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indicator.active::after {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Achievements Section */
.achievements {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.8s ease;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 25px 80px rgba(0, 255, 136, 0.2);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.achievement-card:hover .achievement-icon {
    transform: rotateY(360deg) scale(1.1);
}

.achievement-icon i {
    font-size: 2rem;
    color: #000;
}

.achievement-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.achievement-card p {
    color: #b3b3b3;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #000;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ccff, #00ff88);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #00ff88;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff88;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b3b3b3;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .journey-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gallery-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .gallery-image {
        min-height: 250px; /* Smaller minimum height for mobile */
        order: 1; /* Image first on mobile */
    }
    
    .gallery-image img {
        max-height: 300px; /* Adjust max height for mobile */
    }
    
    .gallery-info {
        padding: 1.5rem; /* Reduced padding for mobile */
        min-height: auto;
        order: 2; /* Info second on mobile */
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .interactive-gallery {
        padding: 2rem 0; /* Further reduced padding for mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .gallery-info {
        padding: 1rem;
    }
    
    .gallery-image {
        min-height: 200px; /* Even smaller for very small screens */
    }
    
    .gallery-image img {
        max-height: 250px;
    }
    
    .achievement-card {
        padding: 2rem 1.5rem;
    }
    
    .swipe-indicators {
        gap: 0.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .gallery-controls {
        gap: 1rem; /* Reduce gap between controls */
    }
    
    .control-btn {
        width: 40px; /* Smaller buttons */
        height: 40px;
        font-size: 1rem;
    }
}

/* Custom Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Swipe Animation Effects */
.swipe-left {
    animation: swipeLeft 0.8s ease-in-out;
}

.swipe-right {
    animation: swipeRight 0.8s ease-in-out;
}

@keyframes swipeLeft {
    0% {
        transform: translateX(0) rotateY(0deg);
    }
    50% {
        transform: translateX(-25%) rotateY(-15deg);
    }
    100% {
        transform: translateX(-100%) rotateY(-30deg);
    }
}

@keyframes swipeRight {
    0% {
        transform: translateX(0) rotateY(0deg);
    }
    50% {
        transform: translateX(25%) rotateY(15deg);
    }
    100% {
        transform: translateX(100%) rotateY(30deg);
    }
}