/* Main/Home Page Styles */

.hero-section {
    padding-top: 100px;
    /* Navbar height */
    padding-bottom: 80px;
    background: linear-gradient(180deg, rgba(255, 154, 61, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    min-height: 90vh;
    /* Full viewport height minus header */
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 154, 61, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-img {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md) !important;
    border-color: rgba(255, 154, 61, 0.3);
}

.feature-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-orange);
    position: relative;
}

/* Mobile Sticky */
.fixed-bottom {
    z-index: 1040;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}