* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px; /* Add padding for fixed headers if any */
}

/* Enhanced smooth scrolling for all browsers */
html, body {
    scroll-behavior: smooth;
}

/* Ensure smooth scrolling works on all elements */
* {
    scroll-behavior: smooth;
}

/* Add visual feedback for scrollable elements */
.hero-button,
.cta-button,
.reviews-button {
    transition: all 0.3s ease, transform 0.2s ease;
}

.hero-button:hover,
.cta-button:hover,
.reviews-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hero-button:active,
.cta-button:active,
.reviews-button:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Add scroll indicator animation */
@keyframes scrollIndicator {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

/* Scroll to top button responsive styles */
@media (max-width: 768px) {
    #scroll-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    #scroll-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}

/* Ensure smooth scrolling works on touch devices */
@media (hover: none) and (pointer: coarse) {
    html {
        scroll-behavior: auto; /* Disable smooth scrolling on touch devices for better performance */
    }
    
    .hero-button,
    .cta-button,
    .reviews-button {
        -webkit-tap-highlight-color: transparent;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('./images/hero-background.jpg'); /* Put your image in the images folder */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Always use scroll for mobile compatibility */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* iOS Safari specific fixes */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/* iOS Safari specific hero background fix */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        /* Force background image to load on iOS */
        background-image: url('./images/hero-background.jpg') !important;
    }
}

/* Ensure hero image loads on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero {
        background-image: url('./images/hero-background.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* Additional iOS Safari fixes for hero section */
@supports (-webkit-touch-callout: none) and (max-width: 768px) {
    .hero {
        background-image: url('./images/hero-background.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        /* Ensure proper display on iOS Safari */
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}

/* Desktop-only parallax effect */
@media (min-width: 769px) and (hover: hover) {
    .hero {
        background-attachment: fixed;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 240px; /* Increased from 20px to 40px for more space */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
    height: 5.5rem; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    line-height: 1.2; /* Tighter line height for better text flow */
    position: relative;
    top: -100px; /* Move title up 100px on desktop */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}



.hero-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    width: auto; /* Prevent width changes */
    min-width: 200px; /* Fixed minimum width */
}



.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.hero-button:active {
    transform: translateY(0);
}











/* Video player styles - REMOVED (replaced with YouTube embeds) */

/* Video player styles - REMOVED (replaced with YouTube embeds) */

/* Video player styles - REMOVED (replaced with YouTube embeds) */

/* Video player styles - REMOVED (replaced with YouTube embeds) */





.video-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 10px;
}



.footer {
    text-align: center;
    padding: 40px 20px;
    color: white;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Three Boxes Section */
.three-boxes-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.three-boxes-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.three-boxes-section .main-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

.three-boxes-section .card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.three-boxes-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.three-boxes-section .card h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.three-boxes-section .card p {
    margin-bottom: 15px;
    color: #666;
}

.three-boxes-section .card ul {
    list-style: none;
    padding-left: 0;
}

.three-boxes-section .card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.three-boxes-section .card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.three-boxes-section .card li:last-child {
    border-bottom: none;
}

.three-boxes-section .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.three-boxes-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.three-boxes-section .cta-button:active {
    transform: translateY(0);
}

/* Responsive Design for Three Boxes Section */
@media (max-width: 1024px) {
    .three-boxes-section .main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .three-boxes-section .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .three-boxes-section .card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .three-boxes-section {
        padding: 60px 15px;
    }
    
    .three-boxes-section .container {
        padding: 15px;
    }
    
    .three-boxes-section .card {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
/* Specific fix for the 769px to 768px breakpoint issue */
@media (max-width: 769px) {
    .reviews-button,
    .hero-button.reviews-button {
        position: relative !important;
        z-index: 1 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        /* Force the button to stay in place */
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        /* Ensure the button stays within its parent container */
        contain: layout style !important;
        /* Prevent any floating or positioning issues */
        float: none !important;
        clear: both !important;
    }
    

}

@media (max-width: 768px) {
    .hero-content {
        justify-content: center; /* Keep content centered */
    }
    
    .hero-title {
        font-size: 3rem;
        height: 4rem; /* Adjusted height for medium screens */
        line-height: 1.1; /* Tighter line height for medium screens */
        margin-bottom: 120px; /* Reduced margin for mobile */
        position: relative;
        top: -150px; /* Move title up 150px (was -200px, now 50px more space from top) */
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        position: relative;
        top: 200px; /* Move subtitle down 200px */
    }
    
    .hero-button {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 180px; /* Adjusted minimum width for medium screens */
        position: relative;
        top: 200px; /* Move button down 200px */
    }
    

    

}

@media (max-width: 480px) {
    .hero-content {
        justify-content: center; /* Keep content centered */
    }
    
    .hero-title {
        font-size: 2.5rem;
        height: 3.5rem; /* Adjusted height for small screens */
        line-height: 1.1; /* Tighter line height for small screens */
        margin-bottom: 80px; /* Further reduced margin for small screens */
        position: relative;
        top: -150px; /* Move title up 150px (was -200px, now 50px more space from top) */
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        white-space: normal; /* Allow text wrapping on very small screens */
        text-align: center;
        position: relative;
        top: 200px; /* Move subtitle down 200px */
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 160px; /* Adjusted minimum width for small screens */
        position: relative;
        top: 200px; /* Move button down 200px */
    }
    
    /* Mobile styling for reviews button */
    .reviews-button,
    .hero-button.reviews-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 160px;
        margin-top: 30px;
        /* On very small screens, use full width for better touch targets */
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    





}



/* Contact & Reviews Section */
.contact-reviews-section {
    background: white;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-reviews-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Form Styling */
.contact-form-container {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:hover {
    border-color: #c3cfe2;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.contact-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Loading animation styles */
.contact-submit-btn.loading {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loadingShine 1.5s infinite;
}

@keyframes loadingShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 600;
}

.loading-dots span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
    animation: loadingDot 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loadingDot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced loading state for better UX */
.contact-submit-btn.loading:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-submit-btn.loading:active {
    transform: none;
}

/* Disabled state styling */
.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Mobile responsive loading animation */
@media (max-width: 768px) {
    .loading-dots span {
        width: 3px;
        height: 3px;
        gap: 1px;
    }
    
    .loading-dots {
        gap: 1px;
    }
}

@media (max-width: 480px) {
    .loading-dots span {
        width: 2px;
        height: 2px;
    }
    
    .contact-submit-btn.loading {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Text Reviews Styling */
.text-reviews-container {
    padding: 20px 0;
}

.text-reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.text-review {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
    text-align: right;
}

/* Responsive Design for Contact & Reviews Section */
@media (max-width: 768px) {
    .contact-reviews-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-title,
    .text-reviews-title {
        font-size: 2rem;
    }
    
    .text-review {
        padding: 25px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .contact-reviews-section {
        padding: 60px 15px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-title,
    .text-reviews-title {
        font-size: 1.8rem;
    }
    
    .contact-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .text-review {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .stars {
        font-size: 1.3rem;
    }
}





/* Mobile responsive hero fixes */
@media (max-width: 768px) {
    .hero {
        /* Ensure hero background is completely static on mobile */
        background-attachment: scroll !important;
        background-position: center center !important;
        /* Prevent any background movement */
        transform: none !important;
        will-change: auto !important;
    }
    
    /* Disable any parallax-related CSS on mobile */
    .hero * {
        transform: none !important;
        will-change: auto !important;
    }
}

/* Video Carousel Section Styles */
.video-carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInDown 1s ease-out;
}

.video-section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.video-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin: 0 auto;
    max-width: 1200px;
}

.video-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.video-item {
    flex: 0 0 320px;
    background: white;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    box-shadow: none;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for YouTube Shorts */
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px 20px 0 0;
}

.video-text {
    padding: 25px;
    background: white;
    border-radius: 0 0 20px 20px;
    -webkit-border-radius: 0 0 20px 20px;
    -moz-border-radius: 0 0 20px 20px;
}

.video-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.video-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Video Carousel */
@media (max-width: 1200px) {
    .video-carousel {
        max-width: 100%;
        padding: 20px;
    }
    
    .video-item {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .video-carousel-section {
        padding: 60px 0;
    }
    
    .video-section-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .video-section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .video-carousel {
        gap: 20px;
        padding: 15px 20px;
    }
    
    .video-item {
        flex: 0 0 280px;
    }
    
    .video-text {
        padding: 20px;
    }
    
    .video-text h3 {
        font-size: 1.1rem;
    }
    
    .video-text p {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        margin-top: 30px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-carousel-section {
        padding: 50px 0;
    }
    
    .video-section-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .video-section-subtitle {
        font-size: 1rem;
        padding: 0 25px;
    }
    
    .video-carousel {
        gap: 15px;
        padding: 10px 15px;
    }
    
    .video-item {
        flex: 0 0 260px;
    }
    
    .video-text {
        padding: 18px;
    }
    
    .video-text h3 {
        font-size: 1rem;
    }
    
    .video-text p {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Animation keyframes for video carousel */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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