/* ==========================================
   HERO SECTION (Neumorphism Theme)
   ========================================== */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    gap: 40px;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
}

/* Small 3D Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    color: #0858bb;
    font-weight: 700;
    font-size: 13px;
    border-radius: 25px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-blue {
    color: #0858bb;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
}

/* 3D Action Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0858bb;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 8px 8px 16px var(--shadow-dark), 
               -8px -8px 16px var(--shadow-light);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-primary:active {
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.3);
    transform: translateY(0);
}

/* Right Side Blue Card */
.hero-graphics {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.blue-neo-card {
    background: #0858bb;
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    width: 100%;
    max-width: 500px;
    /* Special Neumorphic shadow for dark background */
    box-shadow: 12px 12px 24px var(--shadow-dark), 
               -12px -12px 24px var(--shadow-light);
}

.badge-new {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.blue-neo-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blue-neo-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ==========================================
   MOBILE RESPONSIVE 
   ========================================== */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5% 20px 5%;
    }
    
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { margin: 0 auto 30px auto; max-width: 100%; }
    
    .hero-graphics { justify-content: center; margin-top: 20px; }
    .blue-neo-card { padding: 40px 25px; }
    .blue-neo-card h2 { font-size: 1.8rem; }
}