﻿.hero-section {
    background: linear-gradient(135deg,#0F172A,#111827);
    color: white;
    overflow: hidden;
    padding-top: 100px;
}

.hero-tag {
    display: inline-block;
    background: #2563EB;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .hero-title span {
        color: #38BDF8;
    }

.hero-description {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .tech-stack span {
        background: #1E293B;
        padding: 10px 20px;
        border-radius: 30px;
        transition: .3s;
    }

        .tech-stack span:hover {
            background: #2563EB;
        }

.hero-image {
    max-width: 550px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}
