.hero-header {
    position: relative;
    background: linear-gradient(rgba(29, 42, 77, 0.7), rgba(29, 42, 77, 0.7)), url(../img/hero.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-header .btn {
    margin: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-header .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-header .btn-outline-light {
    border-width: 2px;
}

@media (max-width: 991.98px) {
    .hero-header {
        min-height: auto;
        padding: 100px 0;
    }
    
    .hero-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-header {
        padding: 80px 0;
    }
    
    .hero-header h1 {
        font-size: 2rem;
    }
    
    .hero-header .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* RTL Support */
.rtl {
    text-align: right;
}
.rtl .navbar-nav,
.rtl .dropdown-menu {
    padding-right: 0;
    text-align: right;
}
.rtl-gallery .mfp-arrow-left {
    right: 0;
    left: auto;
}
