/* Custom styles to override language switcher */
.mobile-language-switcher a {
    color: #000 !important; /* Black text color */
    text-decoration: none;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-language-switcher a:hover {
    color: #f5a425 !important; /* Keep the hover color */
}

.mobile-language-switcher a.active {
    color: #f5a425 !important; /* Keep the active color */
    font-weight: bold;
}

/* Fix for SVG icons inside object tags - Keep service icons large */
.txbdicon object {
    width: 100%;
    height: 100px; /* Increased from 80px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconalltf {
    text-align: center;
}

.iconalltf object {
    max-width: 100%;
    height: auto;
    transform: scale(1.4); /* Make icons 40% larger */
}

/* Center SVG content specifically in service boxes */
.txbdsva.text-center .txbdicon object {
    margin: 0 auto;
}

/* Make contact section icons smaller */
.icon-list-items.inline-items .icon-list-icon i {
    font-size: 18px !important; /* Even smaller size for contact icons */
}

/* Target specific contact icons to make them smaller */
.icon-list-items.inline-items .flaticon-mail,
.icon-list-items.inline-items .flaticon-phone-call,
.icon-list-items.inline-items .ti-map-alt {
    font-size: 16px !important; /* Much smaller for these specific icons */
}

.cont_left .icon-list-icon i {
    font-size: 18px !important; /* Make contact page icons smaller too */
}

/* Footer contact icons should also be smaller */
.congat_f_color .icon-list-icon i,
.footer-middle .icon-list-icon i {
    font-size: 16px !important;
}

/* Responsive styles for slider area */
@media (max-width: 991px) {
    /* Add padding to slider content */
    .txbdsinner {
        padding: 0 15px !important;
    }
    
    /* Reduce font sizes for headings */
    .txbdscontent h1.txbdstitle {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .txbdscontent h2.txbdstitle {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    /* Adjust paragraph text */
    .txbdscontent p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    /* Make button smaller and fit */
    .txbdsbtn .btnallt {
        padding: 8px 15px !important;
        font-size: 14px !important;
    }
    
    /* Ensure content stays within bounds */
    .txbdscontent {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        margin-top: 12% !important;
    }
    
    /* Keep tab headers in a single row */
    .witr_adv_tab_menu .nav-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
    
    .witr_adv_tab_menu .nav-item {
        flex: 1 !important;
        width: auto !important;
        text-align: center !important;
    }
    
    .witr_adv_tab_menu .nav-link {
        padding: 10px 5px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    
    /* Remove background image for tab area on tablet screens */
    .cg_tab_area {
        background-image: none !important;
        background-color: #f8f8f8 !important; /* Light background color instead of image */
    }
    
    /* Hide the history.jpg image in tab content on tablet screens */
    .tab-pane .col-lg-6.col-md-6:first-child {
        display: none !important;
    }
    
    /* Make the content column full width when image is hidden */
    .tab-pane .col-lg-6.col-md-6:last-child {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Remove background image on tablet screens */
    .txbdslider {
        background-image: none !important;
        background-color: #333 !important; /* Dark background color instead of image */
    }
    
    /* Adjust the overlay gradient for better text visibility */
    .txbdslider::before {
        background-image: linear-gradient(45deg, #000000 0%, #000000 100%) !important;
        opacity: 0.7 !important;
    }
    
    /* Fix header overlap issue */
    .page-title-area {
        padding-top: 80px; /* Slightly less padding on mobile */
    }
}

/* Even smaller screens */
@media (max-width: 767px) {
    /* Further reduce font sizes */
    .txbdscontent h1.txbdstitle {
        font-size: 20px !important;
    }
    
    .txbdscontent h2.txbdstitle {
        font-size: 18px !important;
    }
    
    /* Adjust slider height for mobile */
    .txbdsinner.sliderheightdiv {
        min-height: auto !important;
        padding: 60px 15px !important;
    }
    
    /* Ensure button text doesn't overflow */
    .txbdsbtn .btnallt i {
        margin-left: 5px !important;
    }
    
    /* Further adjust tab headers for very small screens */
    .witr_adv_tab_menu .nav-link {
        padding: 8px 3px !important;
        font-size: 12px !important;
    }
    
    .witr_adv_tab_menu .nav-link strong {
        font-size: 12px !important;
    }
    
    /* Hide project carousel arrows on phone-sized screens */
    .cg_proj_area .slick-prev, 
    .cg_proj_area .slick-next {
        display: none !important;
    }
    
    /* Fix header overlap issue */
    .page-title-area {
        padding-top: 70px; /* Even less padding on very small screens */
    }
}

.witr_single_pslide {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.witr_pslide_image {
    position: relative;
    overflow: hidden;
}

.witr_pslide_image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2; /* Lower z-index than controls */
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.overlay-content h2 {
    margin-bottom: 10px;
}

.overlay-content h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.overlay-content p {
    color: #fff;
    font-size: 16px;
}

/* Hover Effects */
.witr_single_pslide:hover .witr_pslide_image img {
    transform: scale(1.1);
}

.witr_single_pslide:hover .slide-overlay {
    opacity: 1;
}

.witr_single_pslide:hover .overlay-content {
    transform: translateY(0);
}

.witr_single_pslide:hover .witr_content_pslide_text {
    opacity: 0;
}

.witr_content_pslide_text {
    transition: opacity 0.3s ease;
}

/* Arrow Icon Animation */
.witr_pslide_custom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3; /* Higher than overlay but lower than controls */
}

.witr_pslide_custom a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #333;
    transition: all 0.3s ease;
}

.witr_single_pslide:hover .witr_pslide_custom a {
    background: #007bff;
    color: #fff;
    transform: translateX(5px);
}

/* Carousel Styles */
#projectCarousel {
    position: relative;
    width: 100%;
}

#projectCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

#projectCarousel .carousel-control-prev,
#projectCarousel .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10; /* Higher z-index to stay above overlay */
}

#projectCarousel:hover .carousel-control-prev,
#projectCarousel:hover .carousel-control-next {
    opacity: 1;
}

#projectCarousel .carousel-indicators {
    bottom: 20px;
    z-index: 10; /* Higher z-index to stay above overlay */
}

#projectCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

#projectCarousel .carousel-indicators button.active {
    background-color: #fff;
}

/* Ensure hover effects work with carousel */
.carousel-item .witr_single_pslide {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.carousel-item .witr_pslide_image {
    position: relative;
    overflow: hidden;
}

.carousel-item .witr_pslide_image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.carousel-item .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2; /* Lower z-index than controls */
}

.carousel-item .overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.carousel-item .overlay-content h2 {
    margin-bottom: 10px;
}

.carousel-item .overlay-content h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.carousel-item .overlay-content p {
    color: #fff;
    font-size: 16px;
}

/* Hover Effects for carousel items */
.carousel-item .witr_single_pslide:hover .witr_pslide_image img {
    transform: scale(1.1);
}

.carousel-item .witr_single_pslide:hover .slide-overlay {
    opacity: 1;
}

.carousel-item .witr_single_pslide:hover .overlay-content {
    transform: translateY(0);
}

.carousel-item .witr_single_pslide:hover .witr_content_pslide_text {
    opacity: 0;
}

.carousel-item .witr_content_pslide_text {
    transition: opacity 0.3s ease;
}

/* Arrow Icon Animation for carousel items */
.carousel-item .witr_pslide_custom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3; /* Higher than overlay but lower than controls */
}

.carousel-item .witr_pslide_custom a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #333;
    transition: all 0.3s ease;
}

.carousel-item .witr_single_pslide:hover .witr_pslide_custom a {
    background: #007bff;
    color: #fff;
    transform: translateX(5px);
}

/* Add pointer-events to ensure controls are clickable */
#projectCarousel .carousel-control-prev,
#projectCarousel .carousel-control-next,
#projectCarousel .carousel-indicators {
    pointer-events: auto;
}

/* Ensure overlay doesn't block controls */
.slide-overlay {
    pointer-events: none;
}

/* Make sure content within overlay is clickable */
.overlay-content {
    pointer-events: auto;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #b59266;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #a17f55;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

[data-lang="ar"] .service-link {
    font-family: 'Tajawal', sans-serif;
}

/* Fix header overlap issue */
.page-title-area {
    padding-top: 100px; /* Add padding to account for fixed header */
    background-color: #f8f9fa;
    margin-bottom: 40px;
}

.service-content-area {
    padding: 80px 0 40px; /* Increased top padding to account for header */
    background-color: #f8f9fa;
}

/* Consulting Services Page Styles */
.service-section {
    padding: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f5a425;
    margin: 15px auto 0;
}

.section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.service-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5a425;
}

.service-details {
    margin: 25px 0;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.service-details ul li:before {
    content: "•";
    color: #f5a425;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.standards-section {
    margin: 30px 0;
}

.standards-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.standard-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #f5a425;
}

.standard-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.standard-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.conclusion {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* RTL Support */
[data-lang="ar"] .service-details ul li {
    padding-left: 0;
    padding-right: 25px;
}

[data-lang="ar"] .service-details ul li:before {
    left: auto;
    right: 0;
}

[data-lang="ar"] .standard-item {
    border-left: none;
    border-right: 4px solid #f5a425;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-content-area {
        padding: 60px 0 30px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .service-subtitle {
        font-size: 22px;
    }
    
    .service-item {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .service-content-area {
        padding: 50px 0 25px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-intro {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .service-subtitle {
        font-size: 20px;
    }
    
    .service-item {
        padding: 15px;
    }
}

/* Header Styles - Ensure it's always visible */
.em40_header_area_main {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    width: 100% !important;
}

/* Mobile Menu Styles */
.mobile_logo_area {
    display: none;
    background: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile_menu_logo img {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile_menu_option {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile_menu_o {
    cursor: pointer;
}

.mobile_menu_o i {
    font-size: 24px;
    color: #333;
}

.mobile_menu_inner {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile_menu_inner.active {
    right: 0;
}

.mobile_menu_content {
    position: relative;
}

.mobile_menu_content .mobile_menu_logo {
    margin-bottom: 30px;
}

.mobile_menu_content .mobile_menu_o {
    position: absolute;
    top: 0;
    right: 0;
}

.mobile_menu_content .mobile_menu_o i {
    font-size: 24px;
    color: #333;
}

.mobile_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile_overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Show mobile menu on smaller screens */
@media (max-width: 991px) {
    .mobile_logo_area {
        display: block !important;
    }
    
    .em40_header_area_main {
        display: none !important;
    }
    
    .service-content-area {
        padding-top: 80px !important;
    }
    
    .page-title-area {
        padding-top: 80px !important;
    }
}

@media (max-width: 767px) {
    .mobile_logo_area {
        padding: 10px 0;
    }
    
    .mobile_menu_logo img {
        max-height: 35px;
    }
    
    .service-content-area {
        padding-top: 70px !important;
    }
    
    .page-title-area {
        padding-top: 70px !important;
    }
}

/* RTL Support for Mobile Menu */
[data-lang="ar"] .mobile_menu_inner {
    right: auto;
    left: -100%;
}

[data-lang="ar"] .mobile_menu_inner.active {
    right: auto;
    left: 0;
}

[data-lang="ar"] .mobile_menu_option {
    right: auto;
    left: 15px;
}

[data-lang="ar"] .mobile_menu_content .mobile_menu_o {
    right: auto;
    left: 0;
}

/* Ensure header stays visible at all sizes */
@media (min-width: 992px) {
    .em40_header_area_main {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }
    
    .mobile_logo_area {
        display: none !important;
    }
}

/* RTL Support */
[data-lang="ar"] .em40_header_area_main {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}

/* Adjust content padding to account for fixed header */
.service-content-area {
    padding-top: 100px !important;
    background-color: #f8f9fa;
}

@media (max-width: 991px) {
    .service-content-area {
        padding-top: 80px !important;
    }
}

@media (max-width: 767px) {
    .service-content-area {
        padding-top: 70px !important;
    }
}

/* Fix header overlap issue */
.page-title-area {
    padding-top: 100px !important;
    background-color: #f8f9fa;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .page-title-area {
        padding-top: 80px !important;
    }
}

@media (max-width: 767px) {
    .page-title-area {
        padding-top: 70px !important;
    }
}

/* Navigation Menu Styles */
.em40_menu .navbar-nav {
    margin-left: auto;
}

.em40_menu .nav-item {
    margin: 0 5px;
}

.em40_menu .nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.em40_menu .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #b59266;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.em40_menu .nav-link:hover:after,
.em40_menu .nav-link.active:after {
    width: 100%;
}

.em40_menu .nav-link:hover,
.em40_menu .nav-link.active {
    color: #b59266;
}

/* Mobile Menu Styles */
.mobile_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_menu li {
    margin-bottom: 10px;
}

.mobile_menu li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile_menu li a:hover,
.mobile_menu li.active a {
    color: #b59266;
    background: #f8f9fa;
}

/* RTL Support for Navigation */
[data-lang="ar"] .em40_menu .navbar-nav {
    margin-left: 0;
    margin-right: auto;
}

[data-lang="ar"] .em40_menu .nav-link:after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.em-top-quearys-area a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.em-top-quearys-area a:hover {
    color: #b59266;
}

/* About Us Page Styles */
.about-content-area {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
}

.about-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #b59266;
    margin: 15px auto 0;
}

.section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.service-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #b59266;
}

.service-details {
    margin: 25px 0;
}

.service-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.service-details ul li:before {
    content: "•";
    color: #b59266;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.conclusion {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* RTL Support for About Us Page */
[data-lang="ar"] .service-details ul li {
    padding-left: 0;
    padding-right: 25px;
}

[data-lang="ar"] .service-details ul li:before {
    left: auto;
    right: 0;
}

[data-lang="ar"] .service-subtitle {
    text-align: right;
}

/* Responsive Styles for About Us Page */
@media (max-width: 991px) {
    .about-content-area {
        padding: 80px 0 40px;
    }
    
    .about-section {
        padding: 30px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .service-subtitle {
        font-size: 22px;
    }
    
    .service-item {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .about-content-area {
        padding: 70px 0 30px;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-intro {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .service-subtitle {
        font-size: 20px;
    }
    
    .service-item {
        padding: 15px;
    }
}

/* Logo Styles */
.em40_logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile_menu_logo img {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

/* Responsive Logo Styles */
@media (max-width: 991px) {
    .em40_logo img {
        max-height: 50px;
    }
    
    .mobile_menu_logo img {
        max-height: 40px;
    }
}

@media (max-width: 767px) {
    .em40_logo img {
        max-height: 45px;
    }
    
    .mobile_menu_logo img {
        max-height: 35px;
    }
}

/* RTL Support for Logo */
[data-lang="ar"] .em40_logo img,
[data-lang="ar"] .mobile_menu_logo img {
    max-height: inherit;
    width: auto;
} 