/* HOMEPAGE STYLES */

#mainNavbar {
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    background-color: #0d2c4b;
    padding-top: 1rem;
}
#mainNavbar.scrolled {
    background-color: rgba(13, 44, 75, 0.85);
    backdrop-filter: blur(5px);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    overflow: hidden;
}
.min-vh-80 {
    min-height: 80vh;
}
.hero-title {
    line-height: 1.2;
}
.hero-image-wrapper {
    position: relative;
}
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}
.floating-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: 50px;
    animation-delay: 0s;
}
.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30px;
    left: -30px;
    animation-delay: 3s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* FEATURES & STEPS */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.feature-card {
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.step-number {
    width: 60px;
    height: 60px;
    font-weight: bold;
}

/* CTA & STATS */
.cta-section {
    background: linear-gradient(135deg, #0d2c4b 0%, #1a4a6e 100%);
}
.stats-section .stat-number {
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}