/* =========================================
   HERO SECTION EXCLUSIVE CSS
   ========================================= */
.chairy-hero-section {
    height: 85vh; /* स्क्रीन का 85% हिस्सा लेगा */
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 20px;
}

.chairy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.chairy-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

.chairy-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Get Involved Button */
.chairy-hero-btn {
    background-color: #f39c12; /* आपका ऑरेंज कलर */
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.chairy-hero-btn:hover {
    background-color: #2c3e50; /* होवर पर ब्लू कलर */
}

/* =========================================
   HERO SECTION MOBILE VIEW
   ========================================= */
@media (max-width: 991px) {
    .chairy-hero-title { font-size: 3rem; }
    .chairy-hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .chairy-hero-section { height: 75vh; }
    .chairy-hero-title { font-size: 2.2rem; }
    .chairy-hero-btn { padding: 12px 30px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .chairy-hero-title { font-size: 1.8rem; }
    .chairy-hero-subtitle { font-size: 1rem; margin-bottom: 25px;}
}