    /* Hero Banner Video/Image Aspect Ratio */
    .heroslider-singleslider {
        width: 100% !important;
        aspect-ratio: 1280/720 !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
    }

    .heroslider-singleslider video,
    .heroslider-singleslider::before {
        aspect-ratio: 1280/720 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* Override any conflicting styles */
    .heroslider-area {
        width: 100%;
        overflow: hidden;
    }

    .heroslider-area .heroslider-slider {
        width: 100%;
    }

    .heroslider-area .heroslider-slider .heroslider-singleslider {
        min-height: unset !important;
        max-height: unset !important;
        height: auto !important;
        aspect-ratio: 1280/720 !important;
    }

    /* Media queries for responsive aspect ratio */
    @media (max-width: 1200px) {
        .heroslider-singleslider {
            aspect-ratio: 1280/720 !important;
        }
    }

    @media (max-width: 768px) {
        .heroslider-singleslider {
            aspect-ratio: 1280/720 !important;
        }
    }

    @media (max-width: 576px) {
        .heroslider-singleslider {
            aspect-ratio: 1280/720 !important;
        }
    }

    /* About Us Section Styles */
    .about-us-section {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
        position: relative;
    }

    .decorative-line {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #E31E24, transparent);
        border-radius: 2px;
        top: -10px;
    }

    .content-wrapper {
        backdrop-filter: blur(10px);
        border: 1px solid rgba(227, 30, 36, 0.1);
        transition: all 0.3s ease;
    }

    .content-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
    }

    .content-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .content-text p {
        margin-bottom: 1.5rem;
        font-weight: 400;
    }

    .content-text h1, .content-text h2, .content-text h3, .content-text h4, .content-text h5, .content-text h6 {
        color: #333;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .content-text ul, .content-text ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }

    .content-text li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .content-text strong, .content-text b {
        color: #E31E24;
        font-weight: 600;
    }

    .content-text em, .content-text i {
        font-style: italic;
        color: #666;
    }

    /* Section Header - Ultra Modern */
    .section-header {
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-subtitle {
        display: inline-block;
        padding: 8px 24px;
        background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(255, 107, 107, 0.1));
        color: #E31E24;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 50px;
        margin-bottom: 1rem;
        border: 1px solid rgba(227, 30, 36, 0.2);
    }

    .section-main-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        background: linear-gradient(135deg, #1e293b, #475569);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.125rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* Advanced Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }


    .pattern-overlay {
        background: radial-gradient(circle at 20% 20%, rgba(227, 30, 36, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.05) 0%, transparent 50%);
    }

    .highlight-quote {
        background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
        border: 1px solid rgba(227, 30, 36, 0.1);
        border-left: 4px solid #E31E24;
        position: relative;
        overflow: hidden;
    }

    .quote-icon {
        background: #E31E24;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        /* top: -10px; */
        left: 20px;
    }

    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    @keyframes shimmer {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .content-wrapper {
            padding: 2rem !important;
        }

        .highlight-quote {
            padding: 1.5rem !important;
        }

        .about-us-section .lead {
            font-size: 1rem !important;
        }

        .floating-circle {
            display: none;
        }
    }

    /* RTL Support */
    [dir="rtl"] .quote-icon {
        left: auto;
        right: 20px;
    }

    [dir="rtl"] .highlight-quote {
        border-left: none;
        border-right: 4px solid #E31E24;
    }

    /* Hover Effects */
    .about-content:hover .decorative-line {
        width: 150px;
        transition: width 0.3s ease;
    }


    .services-banner-section {
        background: #ffffff;
        position: relative;
        margin: 2rem 0;
    }

    .services-title-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 100%;
        pointer-events: none;
    }

    .services-title-overlay h2 {
        background: rgb(255 255 255 / 13%);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(227, 30, 36, 0.2);
        color: #ffffff;
        font-weight: 700;
        pointer-events: auto;
        transition: all 0.3s ease;
        animation: fadeInTitle 1s ease-out;
    }

    .services-title-overlay h2:hover {
        background: rgba(227, 30, 36, 0.95);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(227, 30, 36, 0.3);
        border-color: rgba(227, 30, 36, 0.5);
    }

    @keyframes fadeInTitle {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .services-banner-container {
        border-radius: 20px;
        overflow: hidden;
    }

    .services-banner-image-wrapper {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
        /* padding: 2rem; */
    }

    .services-banner-image {
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    /* .services-banner-wrapper:hover .services-banner-image {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    } */

    /* Responsive Design */
    @media (max-width: 1200px) {
        .services-banner-image-wrapper {
            height: 350px !important;
            /* padding: 1.5rem; */
        }

        .services-title-overlay h2 {
            padding: 0.8rem 1.5rem;
            font-size: 1.8rem;
        }
    }

    @media (max-width: 992px) {
        .services-banner-image-wrapper {
            height: 300px !important;
            /* padding: 1rem; */
        }

        .services-title-overlay h2 {
            padding: 0.7rem 1.2rem;
            font-size: 1.6rem;
        }
    }

    @media (max-width: 768px) {
        .services-banner-image-wrapper {
            height: 250px !important;
            /* padding: 0.5rem; */
        }

        .services-banner-container {
            border-radius: 15px;
            /* margin: 0 1rem; */
        }

        .services-banner-image {
            border-radius: 10px;
        }

        .services-title-overlay h2 {
            padding: 0.6rem 1rem;
            font-size: 1.4rem;
            border-radius: 25px;
        }
    }

    @media (max-width: 576px) {
        .services-banner-image-wrapper {
            height: 150px !important;
            /* padding: 0.25rem; */
        }

        .services-banner-container {
            border-radius: 12px;
            margin: 0 0.5rem;
        }

        .services-banner-image {
            border-radius: 8px;
        }

        .services-title-overlay h2 {
            padding: 0.5rem 0.8rem;
            font-size: 1.2rem;
            border-radius: 20px;
        }
    }

    /* Hover Effects */
    .services-banner-wrapper {
        cursor: pointer;
    }
    /* Loading State */
    /* .services-banner-image {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
    } */

    .services-banner-image[src] {
        background: #ffffff;
        animation: none;
    }

    @keyframes loading {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }

        /* Services List Section Styles */
    .services-list-section {
        background: #ffffff;
        position: relative;
        z-index: 5;
    }

    .services-list {
        background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        padding: 3rem 2.5rem;
        border: 1px solid rgba(227, 30, 36, 0.08);
        position: relative;
        overflow: hidden;
    }

    .services-list::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #E31E24, #ff6b6b, #E31E24);
    }

    .services-list::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(227, 30, 36, 0.03) 0%, transparent 70%);
        border-radius: 50%;
    }

    .service-item {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 8px;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, #E31E24, #ff6b6b);
        border-radius: 2px;
        transition: height 0.3s ease;
    }

    .service-item:hover {
        transform: translateX(5px);
        background: rgba(227, 30, 36, 0.02);
    }

    .service-item:hover::before {
        height: 60%;
    }

    .service-icon-wrapper {
        /* width: 50px;
        height: 50px; */
        margin-right: 1.5rem;
        background: linear-gradient(135deg, rgba(227, 30, 36, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
        border: 1px solid rgba(227, 30, 36, 0.1);
        position: relative;
        overflow: hidden;
    }

    .service-item:hover .service-icon-wrapper {
        background: linear-gradient(135deg, rgba(227, 30, 36, 0.15) 0%, rgba(255, 107, 107, 0.1) 100%);
        transform: scale(1.05);
        border-color: rgba(227, 30, 36, 0.2);
        box-shadow: 0 4px 15px rgba(227, 30, 36, 0.15);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .service-content {
        flex: 1;
    }

    .service-title {
        font-size: 1.1rem;
        font-weight: 500;
        color: #2c3e50;
        margin: 0;
        line-height: 1.4;
        transition: all 0.3s ease;
        position: relative;
    }

    .service-description {
        font-size: 0.8rem;
        font-weight: 400;
        color: #64748b;
        margin: 0.3rem 0 0 0;
        line-height: 1.3;
        display: none;
        transition: all 0.3s ease;
    }

    .service-item:hover .service-title {
        color: #E31E24;
        font-weight: 600;
        text-shadow: 0 0 20px rgba(227, 30, 36, 0.1);
        transform: translateX(2px);
    }

    .service-item:hover .service-description,
    .service-item:active .service-description {
        display: block;
    }

    /* دعم الشاشات اللمسية */
    @media (hover: none) {
        .service-item:active .service-description {
            display: block;
        }
    }

    .service-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.15), rgba(255, 107, 107, 0.1), rgba(227, 30, 36, 0.15), transparent);
        margin: 0 2rem;
        position: relative;
    }

    .service-divider::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 4px;
        height: 4px;
        background: #E31E24;
        border-radius: 50%;
        opacity: 0.6;
    }

    /* Responsive Design for Services List */
    @media (max-width: 992px) {
        .services-list {
            padding: 2.5rem 2rem;
        }

        .services-list::after {
            width: 80px;
            height: 80px;
        }

        .service-icon-wrapper {
            width: 45px;
            height: 45px;
            margin-right: 1.2rem;
        }

        .service-icon {
            width: 25px;
            height: 25px;
        }

        .service-title {
            font-size: 1rem;
        }

        .service-description {
            font-size: 0.75rem;
        }

                .service-item:hover .service-description,
        .service-item:active .service-description {
            display: block;
        }

        @media (hover: none) {
            .service-item:active .service-description {
                display: block;
            }
        }

        .service-divider {
            margin: 0 1.5rem;
        }
    }

        @media (max-width: 768px) {
        .services-list {
            padding: 2rem 1.5rem;
            border-radius: 12px;
        }

        .services-list::before {
            height: 3px;
        }

        .services-list::after {
            width: 60px;
            height: 60px;
        }

        .service-item {
            padding: 1.2rem 0;
            margin: 0 -0.5rem;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        .service-icon-wrapper {
            width: 40px;
            height: 40px;
            margin-right: 1rem;
            border-radius: 10px;
        }

        .service-icon {
            width: 22px;
            height: 22px;
        }

        .service-title {
            font-size: 0.95rem;
        }

        .service-description {
            font-size: 0.7rem;
        }

                .service-item:hover .service-description,
        .service-item:active .service-description {
            display: block;
        }

        @media (hover: none) {
            .service-item:active .service-description {
                display: block;
            }
        }

        .service-divider {
            margin: 0 1rem;
        }
    }

        @media (max-width: 576px) {
        .services-list {
            padding: 1.5rem 1rem;
            border-radius: 10px;
        }

        .services-list::before {
            height: 2px;
        }

        .services-list::after {
            width: 50px;
            height: 50px;
        }

        .service-item {
            padding: 1rem 0;
            margin: 0 -0.3rem;
            padding-left: 0.3rem;
            padding-right: 0.3rem;
        }

        .service-icon-wrapper {
            width: 35px;
            height: 35px;
            margin-right: 0.8rem;
            border-radius: 8px;
        }

        .service-icon {
            width: 20px;
            height: 20px;
        }

        .service-title {
            font-size: 0.9rem;
            line-height: 1.3;
        }

        .service-description {
            font-size: 0.65rem;
            line-height: 1.2;
        }

                .service-item:hover .service-description,
        .service-item:active .service-description {
            display: block;
        }

        /* للشاشات اللمسية */
        @media (hover: none) {
            .service-item:active .service-description {
                display: block;
            }
        }

        .service-divider {
            margin: 0 0.5rem;
        }

        .service-item:hover {
            transform: translateX(3px);
        }
    }

    [dir="rtl"] .service-icon-wrapper {
        margin-right: 0;
        margin-left: 1.5rem;
    }

    [dir="rtl"] .service-item:hover {
        transform: translateX(-5px);
    }

    [dir="rtl"] .service-item::before {
        left: auto;
        right: 0;
    }

    [dir="rtl"] .service-item:hover .service-title {
        transform: translateX(-2px);
    }

    [dir="rtl"] .service-title {
        font-weight: 500;
        text-align: right;
    }

    [dir="rtl"] .service-description {
        font-weight: 400;
        text-align: right;
    }

    [dir="rtl"] .service-item:hover .service-description,
    [dir="rtl"] .service-item:active .service-description {
        display: block;
    }

    @media (max-width: 992px) {
        [dir="rtl"] .service-icon-wrapper {
            margin-left: 1.2rem;
        }
    }

    @media (max-width: 768px) {
        [dir="rtl"] .service-icon-wrapper {
            margin-left: 1rem;
        }
    }

    @media (max-width: 576px) {
        [dir="rtl"] .service-icon-wrapper {
            margin-left: 0.8rem;
        }

        [dir="rtl"] .service-item:hover {
            transform: translateX(-3px);
        }
    }

    /* Service Request Banner Title Responsive */
    .service-request-title {
        transition: all 0.3s ease;
        animation: fadeInTitle 1s ease-out;
    }

    @media (max-width: 1200px) {
        .service-request-title {
            font-size: clamp(1.1rem, 3.2vw, 2rem) !important;
            padding: 0.8rem 1.5rem !important;
        }
    }

    @media (max-width: 992px) {
        .service-request-title {
            font-size: clamp(1rem, 3vw, 1.8rem) !important;
            padding: 0.7rem 1.3rem !important;
            max-width: 85% !important;
        }
    }

    @media (max-width: 768px) {
        .service-request-title {
            font-size: clamp(0.9rem, 2.8vw, 1.6rem) !important;
            padding: 0.6rem 1.2rem !important;
            max-width: 80% !important;
            line-height: 1.2 !important;
        }
    }

    @media (max-width: 576px) {
        .service-request-title {
            font-size: clamp(0.8rem, 2.5vw, 1.4rem) !important;
            padding: 0.5rem 1rem !important;
            max-width: 85% !important;
            line-height: 1.1 !important;
            border-radius: 20px !important;
        }
    }

    @media (max-width: 480px) {
        .service-request-title {
            font-size: clamp(0.75rem, 2.2vw, 1.2rem) !important;
            padding: 0.4rem 0.8rem !important;
            max-width: 90% !important;
            line-height: 1.1 !important;
            border-radius: 15px !important;
        }
    }

    /* Modern Feature Items - Why Choose Us */
    .modern-feature-item {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .modern-feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transition: left 0.6s ease;
    }

    .modern-feature-item:hover::before {
        left: 100%;
    }

    .modern-feature-item:hover {
        transform: translateY(-8px);
        border-color: rgba(227, 30, 36, 0.3);
        box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
        background: rgba(255, 255, 255, 0.02);
    }

    .feature-number-wrapper {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #E31E24, #0e0a0a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
        z-index: 2;
    }

    .feature-number {
        font-size: 1.2rem;
        font-weight: 800;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .feature-content {
        position: relative;
        z-index: 1;
    }

    .feature-title {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
        transition: color 0.3s ease;
    }

    .modern-feature-item:hover .feature-title {
        color: #E31E24;
    }

    .feature-description {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }

    .feature-description p {
        margin-bottom: 0.5rem;
        font-weight: 400;
    }

    .feature-description p:last-child {
        margin-bottom: 0;
    }

    .feature-gradient-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #E31E24, #ff6b6b);
        transition: width 0.6s ease;
    }

    .modern-feature-item:hover .feature-gradient-line {
        width: 100%;
    }

    /* RTL Support for Modern Features */
    [dir="rtl"] .feature-number-wrapper {
        right: auto;
        left: -10px;
    }

    [dir="rtl"] .feature-title {
        text-align: right;
    }

    [dir="rtl"] .feature-description {
        text-align: right;
    }

    /* Responsive Design for Modern Features */
    @media (max-width: 992px) {
        .modern-feature-item {
            padding: 1.8rem;
            border-radius: 16px;
        }

        .feature-number-wrapper {
            width: 50px;
            height: 50px;
            top: -8px;
            right: -8px;
        }

        .feature-number {
            font-size: 1.1rem;
        }

        .feature-title {
            font-size: 1.3rem;
        }

        .feature-description {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 768px) {
        .modern-feature-item {
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .feature-number-wrapper {
            width: 45px;
            height: 45px;
            top: -6px;
            right: -6px;
        }

        .feature-number {
            font-size: 1rem;
        }

        .feature-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .feature-description {
            font-size: 0.9rem;
            line-height: 1.5;
        }
    }

    @media (max-width: 576px) {
        .modern-feature-item {
            padding: 1.2rem;
            border-radius: 10px;
        }

        .feature-number-wrapper {
            width: 40px;
            height: 40px;
            top: -5px;
            right: -5px;
        }

        .feature-number {
            font-size: 0.9rem;
        }

        .feature-title {
            font-size: 1.1rem;
            margin-bottom: 0.7rem;
        }

        .feature-description {
            font-size: 0.85rem;
        }

        .modern-feature-item:hover {
            transform: translateY(-4px);
        }
    }

    /* Animation for feature items */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .modern-feature-item {
        animation: fadeInUp 0.6s ease-out;
    }

.partners-section {
    position: relative;
    background: #fff;
}
.brandlogo-slider {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.brandlogo-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 120px;
}
.brandlogo-slider::before,
.brandlogo-slider::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.brandlogo-slider::before {
    left: 0;
    background: linear-gradient(to right, #fff 60%, transparent);
}
.brandlogo-slider::after {
    right: 0;
    background: linear-gradient(to left, #fff 60%, transparent);
}
