/* =====================================================
   Enhanced Hero Section - Masarat Al Diyar (No Animation)
   ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #003d7a 0%, #0066cc 40%, #0088cc 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Overlay - Enhanced Pattern */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 20px;
}

/* Logo Wrapper - Transparent Design */
.hero-logo-wrapper {
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
}

.hero-logo {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.1;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.98;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 45px;
    opacity: 0.92;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: center;
    padding: 10px 20px;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    padding: 20px 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn-outline {
    border-color: white !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-width: 2px !important;
}

.hero-btn-outline:hover {
    background: white !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    z-index: 3;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
}

/* Clean, Professional Design - No Animations */
