
/* ==========================================================================
   HERO SECTION (WHITE BACKGROUND)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px; /* Yeh extra space add karega niche wale section se touch hone se rokne ke liye */
    background: var(--bg-white);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-sub {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-size: 1.1rem;
}

/* Giant Headline in Orange */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Small Text in Black */
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px; /* Badges se door rakhne ke liye */
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.badge-item i {
    color: var(--primary);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Light Mode Soft Glow Accent */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(140px);
    opacity: 0.12;
    z-index: 0;
    border-radius: 50%;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
