/* =====================================
   HERO SECTION STYLES
   ===================================== */

.hero {
    padding: 6rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    background: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #000;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 400;
    line-height: 1.6;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-badge i {
    font-size: 1rem;
    color: #ffc107;
}

/* Hero Image */
.hero-image {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%), 
                url('../assets/image1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 40px 100px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease 0.8s both;
    position: relative;
    overflow: hidden;
    z-index: 2;
    min-height: 500px;
    border-radius: 20px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Icon */
.hero-icon {
    margin-top: 1rem;
    font-size: 3rem;
    color: white;
    display: flex;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-icon i {
    font-size: 3rem;
    color: white;
}
.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Icon */
.hero-icon {
    margin-top: 1rem;
    font-size: 3rem;
    color: white;
    display: flex;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-icon i {
    font-size: 3rem;
    color: white;
}
