/* --- Hero Section Styles --- */
.hero-wrapper {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Glowing Orbs */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    z-index: 0;
}

/* Typography */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #0F172A;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 20px;
    font-weight: 600;
    color: #64748B;
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Floating Animation */
.main-hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(79, 70, 229, 0.2));
    animation: floatImg 5s ease-in-out infinite;
    z-index: 5;
    position: relative;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

/* Tech Badges & Stats */
.tech-badge {
    background: #EEF2FF;
    color: #4F46E5;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
}

.tech-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 2px solid #f8fafc;
    padding-top: 30px;
}

.stat-item h4 { font-weight: 800; color: #0F172A; margin-bottom: 0; font-size: 28px; }
.stat-item span { font-weight: 700; color: #6366f1; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-title { font-size: 3.2rem; }
    .hero-wrapper { text-align: center; padding: 60px 0; }
    .hero-subtext { margin: 0 auto 30px; }
    .tech-stats { justify-content: center; gap: 20px; }
}


