/* =========================
   Excel Hero Styles (Homepage)
   ========================= */
.excel-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: url('../images/kids-playing.jpg') center/cover no-repeat;
    padding: 50px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.excel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 143, 210, 0.15);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.excel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.excel-hero-content h1 {
    font-weight: 800;
    font-size: 2.4rem;
    color: #FFD369;
    margin-bottom: 1rem;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.3);
}

.excel-hero-content p {
    font-size: 1.15rem;
    font-weight: 400;
    color: #f8f9fc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .excel-hero {
        min-height: 50vh;
        padding: 30px 15px;
    }
    
    .excel-hero-content h1 {
        font-size: 2rem;
    }
    
    .excel-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .excel-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .excel-hero {
        min-height: 40vh;
    }
}
/* Enhanced Hero Section */
.excel-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(74, 143, 210, 0.9) 0%, rgba(44, 85, 48, 0.8) 100%),
        url('../images/kids-playing.jpg') center/cover no-repeat;
    padding: 80px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.excel-hero-content h1 {
    font-weight: 800;
    font-size: 3rem;
    color: #FFD369;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.excel-hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #f8f9fc;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.excel-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Floating shapes animation */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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