﻿.hero {
    min-height: 90vh;
    background: linear-gradient(-45deg, #4e7d17, #7fbf2f, #3e6b10, #8cc63f);
    background-size: 400% 400%;
    animation: gradientMove 10s ease infinite;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s infinite ease-in-out;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -50px;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeUp 1s ease;
}

/* Text Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-weight: 700;
    color: #ffcc00;
}

.hero p {
    font-size: 15px;
    line-height: 1.7;
}

/* Highlight */
.highlight {
    background: rgba(255,255,255,0.15);
    padding: 10px 15px;
    border-radius: 10px;
    margin: 10px 0;
    font-weight: 500;
}

/* Button */
.btn-custom {
    background: #ffcc00;
    border: none;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-custom:hover {
        background: #fff;
    }

/* Image Styling */
.hero-img img {
    max-width: 320px;
    border-radius: 20px;
    border: 5px solid rgba(255,255,255,0.4);
    transition: 0.4s;
}

    .hero-img img:hover {
        transform: scale(1.05);
    }

/* Responsive */
@media(max-width:768px) {
    .hero {
        text-align: center;
        padding: 40px 20px;
    }
    .hero img {
        margin-bottom:20px;
    }
}
