/* Hero Redesign - Split Layout */
.hero {
    background-color: #000;
    /* Dark background */
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    /* Optional: Subtle gradient background */
    background: radial-gradient(circle at 70% 30%, #1a1a1a 0%, #000 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Column - Text */
.hero-content {
    max-width: 100%;
    /* Reset max-width from previous styles */
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title span {
    color: #ffb800;
    /* Accent Color */
}

/* Right Column - Image & Stats */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensure container is above hero bg overlay */
    z-index: 10;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Increased z-index to sit ABOVE the hero background overlay */
    z-index: 5;
}

.hero-img-professional {
    width: 100%;
    height: auto;
    display: block;
    /* Remove border radius for cleaner look or adjust */
    border-radius: 20px;
    /* Original format - No filters */
}

/* Glassmorphism Stats Cards */
.stat-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.8);
    /* Darker semi-transparent bg */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 25px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    min-width: 140px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffb800;
    /* Gold/Accent from brand */
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 300;
    line-height: 1.2;
}

/* Positioning Stats Cards */
.stat-card-1 {
    top: 15%;
    left: -30px;
}

.stat-card-2 {
    bottom: 25%;
    right: -30px;
}

.stat-card-3 {
    bottom: 10%;
    left: 20px;
}


/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        /* Adjust padding for mobile header */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    /* Stack Order: Image First, Text Second */
    .hero-image-container {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-content {
        order: 2;
        text-align: center;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        /* Smaller font on mobile */
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 90%;
        /* Larger image relative to screen width */
    }

    .stat-card {
        padding: 10px 15px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-card-1 {
        left: -10px;
        top: 10%;
    }

    .stat-card-2 {
        right: -10px;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}