/* ============================================================
   INDEX.CSS - Home Page Styles
   ============================================================
   Page-specific styles for index.html
   
   Main stylesheet: style.css
   This file contains home page-specific overrides and 
   additions that don't apply to other pages.
   ============================================================ */

/* Hero Slider - Home specific animations */
.hero__slider {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Feature highlights on home */
.why-choose-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Call-to-action section home exclusive */
.home-cta-section {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
