/* ======= HOMEPAGE ======= */
.hero {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero .bot-img {
    width: 200px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    color: #9bb1d4;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ======= FEATURES SECTION ======= */
.features {
    padding: 120px 10%;
    text-align: center;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.feature p {
    color: #9bb1d4;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* optional: small glow hover for life */
.feature:hover h3 {
    color: #1e90ff;
    text-shadow: 0 0 8px rgba(30,144,255,0.4);
    transition: 0.3s;
}


/* ======= CTA SECTION ======= */
.cta {
    text-align: center;
    padding: 120px 20px;
}

.cta h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta p {
    color: #9bb1d4;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta .btn {
    padding: 12px 30px;
    font-weight: 600;
}

