.hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #e6f0ff);
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
}

.hero-text span {
    color: var(--blue);
}

.hero-text p {
    margin: 20px 0;
    color: var(--gray);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary {
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid var(--blue);
    padding: 12px 26px;
    border-radius: 6px;
    color: var(--blue);
    transition: .3s;
}

.btn-secondary:hover {
    background: var(--blue);
    color: white;
}

.hero-image img {
    width: 100%;
    animation: heroFloat 4s ease-in-out infinite;
}


/* IMAGE FLOAT */

@keyframes heroFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-subtext {
    margin-top: 10px;
    font-size: 16px;
    color: #475569;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}


/* Hero Background Glow Accent */

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.25), transparent 70%);
    top: -100px;
    right: -150px;
    filter: blur(100px);
    z-index: 0;
}