/* Header Styles */
.header-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 50px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo img {
    height: 70px;
    padding: 11px 0;
}

.nav-center {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-links li a {
    text-decoration: none;
    color: #3D3D3D;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5rem;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 48%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 20px;
    min-width: 300px;
    z-index: 1;
    text-align: left;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: var(--primary-color);
    text-align: left;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    border-radius: 5px;
    text-decoration: none;
    color: #3D3D3D;
    white-space: nowrap;
}

.dropdown-item img {
    margin-right: 10px;
    width: 55px;
    height: 55px;
}

.nav-center .dropdown-item:hover {
    background-color: rgba(193, 181, 237, 0.35);
}

.nav-links li:hover .dropdown-content {
    display: block;
    transition: visibility 0.5s, opacity 0.5s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.btn-navbar {
    display: flex;
    align-items: center;
    padding: 10px 25px;
    background: linear-gradient(280.65deg, #5b388c 42.09%, #7956a1 68.6%);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    border: none;
    font-weight: 700;
    transition: background 0.3s;
    font-size: 14px;
}

.btn-navbar:hover {
    background: linear-gradient(280.65deg, #7956a1 42.09%, #5b388c 68.6%);
}

.burger-menu {
    width: 35px;
    height: 40px;
    display: none;
}

.burger-menu div {
    width: 100%;
    height: 4px;
    background-color: #3d3d3d;
}

.nav-links-mobile {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: 95%;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 20px;
    z-index: 1;
    margin-left: 19px;
    margin-top: 15px;
}

.nav-links-mobile.open {
    display: flex;
}

.nav-links-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links-mobile li {
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
}

.nav-links-mobile a {
    color: #3D3D3D;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

.nav-links-mobile a:hover {
    color: #7956a1;
}

.dropdown-content-mobile {
    display: none;
    background-color: white;
    box-shadow: none;
    border-radius: 14px;
    padding: 20px;
    z-index: 1;
    width: 100%;
}

.dropdown-content-mobile.show {
    display: block;
}

.dropdown-item:hover {
    background-color: rgba(193, 181, 237, 0.35);
}

.close-menu {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    align-self: flex-end;
}
img {
    max-width: 100%;
    height: auto;
    /* display: block; */
}

/* الشعار الكبير */
.logo-large {
    width: 200px;
    height: 80px;
    object-fit: contain;
    display: block;
}

/* الشعار الصغير */
.logo-small {
    width: 120px;
    height: 60px;
    object-fit: contain;
    display: none;
}
/* .logo-small {

} */

/* .logo-large {
    display: block;
} */

/* Add this CSS to handle RTL and button styles */
.btn-language {
    padding: 8px 8px;
    border-radius: 12px;
    border: 1px solid hsla(0, 0%, 80%, 0.005);
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    color: #3d3d3d;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse;
    height: 40px;
    /* Reverses the order of flag and text */

}

.btn-language:hover {
    background-color: #F1EEF6;
}

.btn-language img {
    width: 30px;
    height: 20px;
    margin-bottom: 2px;
    object-fit: cover;
    margin-right: 8px;
}





.header-container.rtl .header-content {
    direction: rtl;
    justify-content: space-between;
}

.header-container.rtl .nav-links li a {
    text-align: right;
}

.header-container.rtl .dropdown-item img {
    margin-right: 0;
}

.header-container.rtl .dropdown-content {
    left: auto;
    right: 48%;
    transform: translateX(50%);
}

.header-container.rtl .language-selector {
    justify-content: flex-start;
}

/* Styles specific for Arabic language in the header */
.header-container.rtl .nav-center ul {
    direction: rtl;
}

.header-container.rtl .nav-center ul li {
    text-align: right;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-icon {
    display: none;
    background-color: #F1EEF6;
    padding: 7px 8px;
    margin-top: 8px;
    border-radius: 12px;
    color: #5b388c;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.call-icon:hover {
    background-color: #dcdcdc;
}

.call-icon i {
    font-size: 1.2rem;
}


/********************** Responsive adjustments ***********************/
@media (max-width: 1200px) {
    .header-container {
        padding: 0 70px;
    }
}

@media (max-width: 1120px) {
    .header-container {
        padding: 0 85px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links li a {
        font-size: 16px;
        font-weight: bold;
    }

    .rtl .nav-links li a {
        font-size: 14px;
        font-weight: bold;
    }

    .logo-large {
        display: block;
        padding: 5px 0;
    }

    .logo-small {
        display: none;
    }

    .nav-links-mobile {
        display: none;
    }

    .burger-menu {
        display: none;
    }

    .language-selector {
        gap: 8px;
    }

    .language-selector button {
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        margin-left: 2px;
    }

    .language-selector {
        margin: 10px 0;
    }
}

@media (max-width: 992px) {
    .logo-large {
        display: none;
    }

    .logo-small {
        display: block;
    }

    .header-container {
        padding: 0 50px;
    }

}


@media (max-width: 855px) {
    .header-container {
        padding: 10px 40px;
    }


    .logo img {
        width: 9%;
        height: 9%;
        padding: 10px;
    }

    .nav-center {
        display: none;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 0;
        right: 40px;
        margin-top: 2px;
        transform: translateY(50%);


    }

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 0;
        margin-left: 10px;
        left: 30px;
        right: auto;
        will-change: transform;
    }


    .burger-menu div {
        width: 100%;
        height: 3px;
        background-color: #9C979E;
    }

    .dropdown-content-mobile {
        background-color: rgba(255, 255, 255, 1);
        box-shadow: none;
        border-radius: 0;
        padding: 5px;
        z-index: 1;
        width: 90%;

    }

    .nav-links-mobile.open {
        margin-left: 39px;
        margin-top: 11px;
        height: 70%;
        width: 89%;
    }

    .dropdown-content-mobile h3 {
        margin-top: 5px;
        font-size: 20px;
        margin-right: 20px;
        font-weight: 600;
        color: var(--primary-color);
    }

    .rtl .dropdown-content-mobile h3 {
        text-align: right;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-links-mobile a {
        font-size: 20px;

        font-weight: 600;
        color: #3d3d3d;
    }

    .language-selector {
        margin: 10px 0;
        position: absolute;
        top: 5px;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
    }

    .language-selector a {
        font-size: 20px;
        padding: 15px;
        width: 80%;
        text-align: center;
        border-radius: 12px;
    }

    .language-selector button {
        font-size: 17px;
        font-weight: bold;
        text-align: center;
        padding: 6px 6px;

    }

    .btn-navbar {
        height: 38px;
        width: 10px;
        font-size: 11px;
    }

    .dropdown-content .dropdown-item,
    .dropdown-content-mobile .dropdown-item {
        font-size: 19px;
        padding: 5px 0;
        font-weight: 500;
    }

    .dropdown-content .dropdown-item img,
    .dropdown-content-mobile .dropdown-item img {
        width: 55px;
        height: 55px;
        margin-right: 5px;
        margin-left: 0;
    }
}

@media(max-width: 740px) {
    .logo img {
        width: 10%;
        height: 10%;
        padding: 10px;
    }

    .nav-center {
        display: none;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 0;
        right: 40px;
        margin-top: 2px;
        transform: translateY(50%);


    }

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 0;
        margin-left: 10px;
        left: 30px;
        right: auto;
    }

}


@media(max-width: 660px) {
    .logo img {
        width: 9%;
        height: 10%;
        padding: 0;
    }

    .nav-center {
        display: none;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: -2px;
        right: 40px;
        margin-top: -2px;
        transform: translateY(50%);
    }

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: -1px;
        margin-left: 10px;
        left: 30px;
        right: auto;
    }

    .burger-menu div {
        width: 100%;
        height: 3px;
        background-color: #9C979E;
    }

}



@media (max-width: 580px) {



    .language-selector a {
        font-size: 20px;
        padding: 7px 10px;
        width: 50%;
        text-align: center;
        border-radius: 12px;
    }

    .language-selector {
        position: absolute;
        margin-top: 1px;
        margin-bottom: 15px;
        margin-left: 23%;
        height: 90%;
        gap: 8px;

    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: 2px;
        bottom: 0;
        margin-left: -26%;

        height: 90%;
        gap: 6px;

    } */
    .rtl .language-selector {
        position: absolute;
        bottom: 0;
        left: 135px;
        margin-left: 10px; /* بدل النسب السالبة */
        height: 90%;
        gap: 8px;
        display: flex;
        align-items: center;
    }


    .language-selector button {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }




    .nav-links-mobile.open {
        flex-direction: column;
        gap: 10px;
        background-color: rgba(255, 255, 255, 1);
        position: fixed;
        top: 0;
        left: 0;
        width: 90%;
        height: 80%;
        overflow-y: auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 14px;
        padding: 20px;
        z-index: 1;
        margin-left: 27px;
        margin-top: 15px;
    }


    .dropdown-grid {
        display: inline-block;
        gap: 10px;
    }

    .dropdown-content-mobile {
        display: none;
        background-color: #fff;
        box-shadow: none;
        border-radius: 0;
        padding: 5px;
        z-index: 1;
        width: 100%;
    }

    .dropdown-content-mobile h3 {
        margin-top: 5px;
        font-size: 20px;
        margin-right: 20px;
        font-weight: 600;
        color: var(--primary-color);
    }

    .rtl .dropdown-content-mobile h3 {
        text-align: right;
        margin-left: 0;
        margin-right: 0;
    }

    .rtl .dropdown-content-mobile .dropdown-item {
        text-align: right;
    }

    .rtl .header-container.rtl .dropdown-item img {
        text-align: right;
    }

    .rtl .dropdown-content-mobile {
        text-align: right;
        align-items: right;
    }


    .dropdown-content .dropdown-item,
    .dropdown-content-mobile .dropdown-item {
        font-size: 18px;
        font-weight: 500;
        text-align: right;
    }

    .dropdown-content .dropdown-item img,
    .dropdown-content-mobile .dropdown-item img {
        width: 45px;
        height: 45px;
        margin-right: 10px;

    }

    .rtl .dropdown-content .dropdown-item img,
    .dropdown-content-mobile .dropdown-item img {
        width: 45px;
        height: 45px;
        margin-left: 10px;
    }

    .language-selector button {
        padding: 8px 6px;
    }

    .call-icon {
        margin-bottom: 10px;
    }

    .call-icon {
        display: block;
    }

    .call-icon i {
        font-size: 1.3rem;
    }

    .btn-navbar {
        display: none;
    }

    .burger-menu div {
        width: 100%;
        height: 2.2px;
        background-color: #9C979E;
    }
}


@media (max-width: 550px) {
    .header-container {
        padding: 0 30px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 35px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 3px;
        margin-left: 20px;
        left: 11px;
        right: auto;
    }


    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        right: 30px;
        margin-top: -2px;
        transform: translateY(50%);
    }




    .language-selector {
        position: absolute;
        margin-top: 1px;
        margin-left: 22%;
        height: 90%;
        gap: 8px;
        min-width: 140px;

    }

    .rtl .language-selector {
        position: absolute;
        bottom: 0;
        left: 135px;
        margin-left: 10px; /* بدل النسب السالبة */
        height: 90%;
        gap: 8px;
        display: flex;
        align-items: center;

    }
}


@media (max-width: 490px) {


    .call-icon i {
        font-size: 1.1rem;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-end;
        width: 35px;
        height: 35px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 0;
        right: 30px;
        margin-top: -6px;
        transform: translateY(50%);
    }

    .burger-menu div {
        width: 80%
    }


    .language-selector {
        position: absolute;
        margin-top: -4px;
        margin-left: 21%;
        height: 90%;
        gap: 8px;

    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: -2px;
        bottom: 0;
        margin-left: -23%;
        height: 90%;
        gap: 8px;

    } */

    .language-selector button {
        padding: 8px 7px;
        font-size: 15px;
    }

    .language-selector a {
        font-size: 20px;
        padding: 1px 10px;
        width: 50%;
        text-align: center;
        border-radius: 12px;
    }

    .call-icon i {
        font-size: 1rem;
    }



}

@media (max-width: 440px) {

    .language-selector {
        position: absolute;
        margin-top: -1px;
        margin-left: 16%;
        height: 90%;
        gap: 8px;

    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: -1px;
        bottom: 0;
        margin-left: -19%;
        height: 90%;
        gap: 8px;

    } */

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-end;
        width: 35px;
        height: 35px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 1px;
        margin-left: 20px;
        left: 10px;
        right: auto;
    }

}


@media (max-width: 399px) {

    .language-selector {
        position: absolute;
        margin-left: 14%;
        height: 90%;
        gap: 8px;

    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: -2px;
        bottom: 0;
        margin-left: -16%;
        height: 90%;
        gap: 8px;
    } */

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 35px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: 0;
        align-items: flex-end
    }

    .nav-links-mobile.open {
        flex-direction: column;
        gap: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 90%;
        height: 80%;
        overflow-y: auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 14px;
        padding: 20px;
        z-index: 1;
        margin-left: 20px;
        margin-top: 13px;
    }
}


@media (max-width: 373px) {

    .language-selector {
        position: absolute;
        margin-top: -3px;
        margin-left: 13%;
        height: 90%;
        gap: 8px;
    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: -2px;
        bottom: 0;
        margin-left: -15%;
        height: 90%;
        gap: 8px;

    } */

    .language-selector button {
        padding: 5.5px 5.5px;
        font-size: 15px;
    }

    .language-selector a {
        font-size: 20px;
        padding: 0px 7px;
        width: 50%;
        text-align: center;
        border-radius: 12px;
    }

    .burger-menu {

        position: absolute;
        top: -5px;
        width: 30px;
        height: 30px;
        margin-top: 0;
        transform: translateY(50%);
    }

    .rtl .burger-menu {
        position: absolute;
        width: 35px;
        height: 30px;
        margin-top: -4px;
    }

}

@media (max-width: 340px) {

    .language-selector {
        position: absolute;
        margin-top: -4px;
        margin-left: 13%;
        height: 90%;
        gap: 8px;
    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: 1px;
        bottom: 0;
        margin-left: -13%;
        height: 90%;
        gap: 8px;

    } */

    .burger-menu {
        position: absolute;
        top: -8px;
        right: 30px;
        margin-top: 0;
        transform: translateY(50%);
    }

}

@media (max-width: 320px) {

    .language-selector {
        position: absolute;
        margin-top: -2px;
        margin-left: 11%;
        height: 90%;
        gap: 8px;
    }

    .language-selector a {
        font-size: 20px;
        padding: 1.5px 7px;
        width: 50%;
        text-align: center;
        border-radius: 12px;
    }

    /* .rtl .language-selector {
        position: absolute;
        margin-top: -2px;
        bottom: 0;
        margin-left: -17%;
        height: 90%;
        gap: 8px;


    } */

    .language-selector button {
        padding: 5px 5px;
        font-size: 12px;
    }


    .burger-menu {

        position: absolute;
        width: 25px;
        height: 25px;
        top: -2px;
        right: 30px;
        margin-top: 0;
        transform: translateY(50%);
    }

    .dropdown-grid {
        display: inline-block;
        gap: 10px;
    }

    .rtl .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: none;
        cursor: pointer;
        z-index: 2;
        position: absolute;
        top: -1px;
        margin-left: 20px;
        left: 11px;
        right: auto;
    }

}
/* LTR styles */
[dir="ltr"] .text-align {
    text-align: left;
}

[dir="ltr"] .float-left {
    float: left;
}


[dir="ltr"] .float-right {
    float: right;
}

/* RTL styles */
[dir="rtl"] .text-align {
    text-align: right;
}

[dir="rtl"] .float-left {
    float: right;
}

[dir="rtl"] .float-right {
    float: left;
}

:root {
    --primary-color: #5b388c;
    --secondary-color: #7956a1;
    /* Lighter purple */
    --gradient-color: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    --subtext-color: rgb(75 68 68);
    --color-white: #ffffff;
    --color-black: #000000;


      --secondary-light: #f8f5ff;


      --shadow: 0 10px 30px rgba(91, 56, 140, 0.15);
      --border-radius: 15px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-family-primary: "Cairo", sans-serif;
    --font-family-bold: "DIN Next LT W23 Bold", sans-serif;
    --font-family-medium: "DIN Next LT W23 Medium", sans-serif;
    --font-family-regular: "DIN Next LT W23 Regular", sans-serif;

    --font-size-hero: 82px;
    --font-size-large: 36px;
    --font-size-medium: 30px;
    --font-size-regular: 16px;
    --font-size-small: 14px;

    --font-weight-bold: bold;
    --font-weight-medium: 500;
    --font-weight-regular: normal;
}

/* Global Rules */

* {
    box-sizing: border-box;
    font-family: var(--font-family-primary);
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.container {
    padding: 0 15px;
    margin: 0 auto;
}

/* container Screen Sizes */
/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* General Button Style */
.btn {
    padding: 12px 24px;
    font-size: var(--font-size-regular);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

.btn-primary {
    background-image: var(--gradient-color);
    color: var(--color-white);
}

.btn-primary:hover {
    background-image: linear-gradient(
        to right,
        var(--secondary-color),
        var(--primary-color)
    );
}

.fixed-width-btn {
    width: auto; /* Allow button to grow with text */
}
.admin-cta-button  {
    border-radius: 8px !important;
    border: none;
}
.btn-secondary {
    background-color: var(--color-white);
    color: var(--primary-color);
    border-radius: 8px !important;
}

.btn-video {
    background-color: transparent;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.btn-video .video-icon {
    width: 20px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.btn-video:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


/* .btn-navbar {
    display: flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(
        280.65deg,
        var(--primary-color) 42.09%,
        var(--secondary-color) 68.6%
    );
    border-radius: 8px;
    color: var(--color-white);
    text-decoration: none;
    border: none;
    font-weight: var(--font-weight-bold);
    transition: background 0.3s;
    font-size: var(--font-size-regular);
} */

/* Media queries for button adjustments */
@media (max-width: 992px) {
    .btn {
        padding: 10px 20px;
        font-size: var(--font-size-small);
        max-width: 100%;
    }

    .fixed-width-btn {
        width: auto;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 8px 16px;
        font-size: var(--font-size-small);
        margin-top: 7px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .btn {
        padding: 8px 16px;
        font-size: var(--font-size-small);
    }
}

.btn-primary {
    background-image: var(--gradient-color);
    color: var(--color-white);
}

.btn-primary:hover {
    background-image: linear-gradient(
        to right,
        var(--secondary-color),
        var(--primary-color)
    );
}

.fixed-width-btn {
    width: auto;
}

/*Font Used*/

@font-face {
    font-family: "DIN Next LT W23 Regular";
    src: url("/fonts/dinnext/din-next-lt-w23-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;


}

@font-face {
    font-family: "DIN Next LT W23 Bold";
    src: url("/fonts/dinnext/din-next-arabic-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;


}

@font-face {
    font-family: "DIN Next LT W23 Medium";
    src: url("/fonts/dinnext/din-next-lt-w23-medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;


}
/* Loading screen styles */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading .logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: blink 1.2s infinite both;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}
.loading-dot:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes blink {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

#main-content {
    display: none;
}
 .projects-section {
    padding: 50px 0;
    background: var(--secondary-light);
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .section-heading .subtitle {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-align: center
  }

  .section-heading .subtitle .bracket {
    color: var(--subtext-color);
    font-weight: 400;
  }

  .section-heading .title {
    font-size: 42px;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 700;
    position: relative;
    display: block;
    text-align: center
  }

  .section-heading .section-description {
    color: var(--subtext-color);
    font-size: 16px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center
  }
  .modal-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
  }

  /* Project Item Styles */
  .project-item {
    padding: 0 15px;
    outline: none;
    transition: var(--transition);
  }

  .project-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--color-white);
    height: 100%;
  }

  .project-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(91, 56, 140, 0.2);
  }

  .project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .project-wrapper:hover .project-image img {
    transform: scale(1.1);
  }

  .project-hover-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(91, 56, 140, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    z-index: 2;
  }

  .project-wrapper:hover .project-hover-content {
    opacity: 1;
  }

  .project-link {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
  }

  .project-link i {
    margin-right: 8px;
    transition: var(--transition);
  }

  .project-link:hover {
    color: var(--color-white);
    transform: translateX(-5px);
  }

  .project-link:hover i {
    margin-right: 12px;
  }

  .project-content {
    padding: 20px;
    position: relative;
    z-index: 1;
  }

  .project-title {
    margin: 0 0 10px;
  }

  .project-title a {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
  }

  .project-title a:hover {
    color: var(--secondary-color);
  }

  .project-category a {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .project-category a:hover {
    color: var(--primary-color);
  }

  .view-all-btn {
    display: inline-block;
    background: var(--gradient-color);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(91, 56, 140, 0.3);
  }

.view {
display: flex;
justify-content: center;
}

  .view-all-btn i {
    margin-right: 8px;
    transition: var(--transition);
  }

  .view-all-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(91, 56, 140, 0.4);
  }

  .view-all-btn:hover i {
    margin-right: 12px;
  }

  /* Project Modal Styles */
  .project-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
    overflow: auto;
  }

  .project-modal.active {
    display: block;
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .modal-container {
    position: relative;
    background: white;
    margin: 50px auto;
    max-width: 900px;
    width: 90%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: modalFadeIn 0.4s ease;
    overflow: hidden;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
  }

  .modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
  }

  .modal-content {
    padding: 60px 40px 40px;
  }

  .modal-content img {
    width: 50%;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
  }

  .modal-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
  }

  .modal-content .project-category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
  }

  .modal-content p {
    color: var(--subtext-color);
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .modal-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
  }

  .modal-links a {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }


 [dir="ltr"] .modal-links a i {
    margin-right: 8px;
  }
[dir="rtl"] .modal-links a i {
    margin-left: 8px;
  }
  .modal-links a.live-demo {
    background: var(--gradient-color);
    color: white;
  }

  .modal-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Slick Slider Custom Styles */
  .slick-slider {
    position: relative;
  }

  .slick-list {
    overflow: hidden;
    margin: 0 -15px;
    padding: 30px 0;
  }

  .slick-track {
    display: flex;
  }

  .slick-slide {
    height: auto;
  }

  .slick-slide > div {
    height: 100%;
  }

  .slick-arrow {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
  }

  .slick-arrow:hover {
    background: var(--primary-color);
    color: var(--color-white);
  }

  .slick-arrow::before {
    display: none;
  }

  .slick-prev {
    right: -70px;
    left: auto;
  }

  .slick-next {
    left: -70px;
    right: auto;
  }

  /* Dots Styles for both RTL and LTR */
  .slick-dots {
    position: absolute;
    bottom: -124px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px !important;
    padding: 0;
  }

  .slick-dots li button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ddd !important;
    transition: var(--transition) !important;
    padding: 0;
    font-size: 0;
    line-height: 0;
    color: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
  }

  .slick-dots li button::before {
    display: none !important;
  }

  .slick-dots li.slick-active button {
    background: var(--primary-color) !important;
    width: 15px !important;
    border-radius: 6px !important;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .slick-prev {
      right: -25px;
    }

    .slick-next {
      left: -25px;
    }
  }

  @media (max-width: 992px) {
    .projects-section {
      padding: 80px 0;
    }

    .section-heading .title {
      font-size: 36px;
    }

    .project-image {
      height: 350px;
    }

    .project-content {
      padding: 15px;
    }

    .modal-container {
      width: 95%;
    }

    .modal-content {
      padding: 50px 30px 30px;
    }
  }

  @media (max-width: 768px) {
    .section-heading .title {
      font-size: 32px;
    }

    .slick-prev,
    .slick-next {
      width: 40px;
      height: 40px;
    }

    .modal-content h3 {
      font-size: 24px;
    }

    .modal-links {
      flex-direction: column;
      gap: 10px;
    }

    .modal-links a {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .projects-section {
      padding: 60px 0;
    }

    .section-heading .title {
      font-size: 28px;
    }

    .section-heading .title::after {
      width: 40px;
      bottom: -8px;
    }

    .project-image {
      height: 280px;
    }

    .project-title a {
      font-size: 18px;
    }

    .modal-content {
      padding: 40px 20px 20px;
    }

    .modal-close {
      top: 10px;
      left: 10px;
      width: 30px;
      height: 30px;
      font-size: 14px;
    }
  }


  /*********************************************Message Form Section Styles *********************************************************************/
.message-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/webdev-imgs/form-background-img.png") no-repeat
        right center;
    background-size: contain;
    padding: 50px 20px;
    width: 100%;
    height: 100vh;
}

.form-content {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    /* max-width: 950px; Width from Figma */
    width: 100%;
    height: 556px; /* Height from Figma */
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
}

.form-with-image {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto; /* Center align */
}

.form-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.message-form {
    flex: 2;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.message-form h2 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: #5b388c;
    margin-bottom: 20px;
}

.message-form .form-group {
    margin-bottom: 20px;
}

.message-form .form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.message-form .form-group input,
.message-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.message-form .form-group textarea {
    height: 100px;
    resize: none;
}

.form-submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #5b388c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.form-submit-button:hover {
    background-color: #4a2e73;
}

/* Web Development Message Form Section Responsiveness */
@media (max-width: 768px) {
    .form-with-image {
        flex-direction: column;
    }

    .form-image {
        display: none;
    }

    .message-form {
        padding-left: 0;
    }
}


/********************************************* Landing Page *********************************************/

.landing-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.landing-hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-hero-text-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.landing-welcome-text {
    font-size: 21px;
    font-weight: var(--font-weight-bold);
    line-height: 25px;
    color: var(--color-black);
}

.landing-welcome-word {
    color: var(--primary-color);
}

.landing-hero-title {
    font-weight: var(--font-weight-bold);
    font-size: 70px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-black);
    /* margin: 0 auto;
    white-space: nowrap; */
    text-align: center;
    justify-content: center;
    display: flex
}
[dir="rtl"] .landing-hero-title,
.landing-hero h2 {
    font-size: 30px;
    margin-top: 20px;
}
[dir="ltr"] .landing-hero-title {
    font-size: 26px;
    margin-top: 20px;
}

.play-icon {
    margin-right: 8px;
}

[dir="rtl"] .play-icon {
    margin-left: 8px;
    margin-right: 0;
}

.landing-hero h2 {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.landing-hero-subtext {
    font-size: 26px;
    max-width: 800px;
    font-weight: 400;
    margin: 0 auto 32px;
    color: var(--color-black);
    font-weight: var(--font-weight-regular);
}

/* Animated header in Hero section */
.landing-animate-text {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: auto;
}

.landing-animate-text span {
    font-size: 47px;
    color: var(--primary-color);
    font-weight: 700;
    display: none;
}

.landing-animate-text span.text-in {
    display: block;
    animation: textIn 1s ease;
}

.landing-animate-text span.text-out {
    animation: textOut 1s ease;
}

@keyframes textIn {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes textOut {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.landing-hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Adjust gap between buttons if needed */
    flex-wrap: wrap;
    /* Allows buttons to wrap in smaller screens */
    margin-top: 20px;
    /* Adjust margin as needed */
}

.landing-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 10%;
}

.landing-partner-logo {
    height: auto;
    width: 120px;
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

.scm-logo {
    width: 200px !important;
}

.landing-partner-logo:hover {
    opacity: 1;
}

/************** Responsiveness for Landing Hero section **************/

@media (max-width: 1366px) {
    .landing-hero {
        margin-top: 10%;
    }
    .landing-hero-content {
        /* height: 65vh; */
        gap: 50px;
        /* margin-top: 60px; */
    }
    .landing-partner-logos {
        margin-top: 5%;
    }
}
@media (max-width: 1118px) {
    .landing-hero {
        margin-top: 20%;
    }
    .landing-hero-content {
        /* height: 70vh; */
        gap: 50px;
        /* margin-top: 15%; */
    }
}

@media (max-width: 992px) {
    .landing-hero {
        margin-top: 20%;
    }

    .landing-animate-text span {
        font-size: 40px;
    }

    .landing-hero-title {
        font-size: 60px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .landing-hero h2 {
        font-size: 50px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .landing-hero-subtext {
        font-size: 20px;
        max-width: 600px;
    }

    .landing-welcome-text {
        font-size: 16px;
    }

    .landing-partner-logo {
        height: auto;
        width: 120px;
    }

    .landing-partner-logos {
        gap: 20px;
    }




    @media (max-width: 768px) {
        .landing-animate-text span {
            font-size: 30px;
        }

        .landing-hero-title {
            font-size: 40px !important;
            line-height: 1.2;
        }

        .landing-hero h2 {
            font-size: 50px;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .landing-hero-subtext {
            font-size: 18px;
            max-width: 400px;
        }

        .landing-hero-buttons {
            gap: 10px;
        }

        .landing-partner-logo {
            height: 60px;
            width: auto;
        }

        .landing-partner-logos {
            gap: 15px;
            flex-wrap: wrap;
        }
        [dir="rtl"] .landing-hero-title,
        .landing-hero h2 {
            font-size: 20px !important;
            margin-top: 20px;
            max-width: 100%;
            line-height: 1.7;
        }
    }

    @media (max-width: 576px) {
        .landing-hero-title {
            font-size: 36px;
            line-height: 1.2;
        }

        .landing-hero h2 {
            font-size: 30px;
            margin-top: 15px;
        }

        .landing-hero-subtext {
            font-size: 16px;
        }

        .landing-partner-logos {
            gap: 10px;
        }
        /*
        .landing-partner-logo {
            height: 30px;
            width: 50px;
        } */
        [dir="rtl"] .landing-hero-title,
        .landing-hero h2 {
            font-size: 20px !important;
            margin-top: 20px;
            max-width: 100%;
            line-height: 1.7;
        }
    }

    @media (max-width: 480px) {
        .landing-hero-content {
            /* height: 65vh; */
            gap: 50px;
            /* margin-top: 60px; */
        }
        .landing-animate-text span {
            font-size: 28px;
        }

        .landing-hero-title {
            font-size: 28px ;
            line-height: 1.2;
        }

        .landing-hero h2 {
            font-size: 28px;
            margin-top: 10px;
        }

        .landing-hero-subtext {
            font-size: 12px;
        }

        .landing-partner-logos {
            gap: 15px;
        }

        [dir="rtl"] .landing-hero-title,
        .landing-hero h2 {
            font-size: 13px !important;
            margin-top: 20px;
            max-width: 100%;
            line-height: 1.7;
        }
        [dir="ltr"] .landing-hero-title,
        .landing-hero h2 {
            font-size: 12px !important;
            margin-top: 20px;
            max-width: 100%;
            line-height: 1.7;
        }
    }
}
/*********************************************
Landing Services Section Styles
********************************/
.landing-services {
    background: url("../images/landing-imgs/landing-bg/servicesBg.png")
        no-repeat right center / contain;
    display: flex;
    align-items: center;
    padding: 6px 15px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    /* margin-top: 50px; */
    /* Added margin-top for spacing */
}

.landing-services-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.landing-services-headings h2 {
    font-size: 35px;
    color: var(--color-black);
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
}

.landing-services-headings p {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: var(--font-weight-medium);
}

.landing-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    width: 100%;
}

.landing-service-card {
    background: white;
    border-radius: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 357px;
    height: 232px; /* Fixed height for all cards */
    box-sizing: border-box;
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.landing-service-card:hover {
    background: linear-gradient(280.65deg, #5b388c 42.09%, #7956a1 68.6%);
    color: white;
    transform: translateY(-10px);
}

.landing-service-card:hover h3,
.landing-service-card:hover p {
    color: white;
}

.landing-service-card:hover .landing-service-icon img {
    filter: brightness(0) invert(1);
}
.landing-service-card img {
    width: 100px;
  }

/* .landing-service-icon img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.landing-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.landing-service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}



.landing-service-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.landing-service-card p {
    font-size: 16px;
}

.landing-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/************** RTL Adjustments **************/
[dir="rtl"] .landing-services-cards {
    direction: rtl;
}

[dir="rtl"] .landing-service-card {
    text-align: right;
}

/************** Responsiveness for Landing Services **************/
@media (max-width: 1366px) {
    .landing-services-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .landing-services {
        background-size: 80% auto;
        background-position: right top;
    }

    .landing-service-card h3 {
        font-size: 19px;
    }

    .landing-service-card p {
        font-size: 15px;
    }
}

@media (max-width: 1280px) and (min-width: 992px) {
    .landing-services {
        background-position: right top;
        background-size: cover;
    }

    .landing-services-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .landing-services-headings h2 {
        font-size: 30px;
    }

    .landing-services-headings p {
        font-size: 28px;
    }

    .landing-service-card {
        max-width: 290px; /* Adjust max-width to ensure fit */
        height: auto;
    }

    .landing-service-card p {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .landing-services-cards {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .landing-services-headings h2 {
        font-size: 28px;
    }

    .landing-services-headings p {
        font-size: 24px;
    }

    .landing-service-card p {
        font-size: 14px;
    }

    .landing-service-card {
        width: 295px;
        height: auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .landing-services {
        /* padding: 30px 15px; */
        background-size: cover;
        /* margin-top: 30px; */
    }

    .landing-services-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-services-headings h2 {
        font-size: 24px;
    }

    .landing-services-headings p {
        font-size: 20px;
    }

    .landing-service-card h3 {
        font-size: 18px;
    }

    .landing-service-card p {
        font-size: 14px;
    }

    .landing-service-icon img {
        width: 40px;
        height: auto;
    }
}

@media (max-width: 720px) {
    .landing-services-cards {
        grid-template-columns: 1fr;
    }

    .landing-service-card {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .landing-service-card h3 {
        font-size: 18px;
    }

    .landing-service-card p {
        font-size: 14px;
    }

    .landing-service-icon img {
        width: 40px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .landing-services {
        background-size: cover;
    }

    .landing-services-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-services-headings h2 {
        font-size: 20px;
    }

    .landing-services-headings p{
        font-size: 18px;
    }

    .landing-service-card h3 {
        font-size: 16px;
    }

    .landing-service-card p {
        font-size: 12px;
    }

    .landing-service-icon img {
        width: 30px;
        height: auto;
    }
    .landing-service-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
      }
}

@media (max-width: 480px) {
    .landing-services-cards {
        grid-template-columns: 1fr;
    }

    .landing-services-headings h2 {
        font-size: 20px;
    }

    .landing-services-headings p {
        font-size: 18px;
    }

    .landing-service-card h3 {
        font-size: 14px;
    }

    .landing-service-card p {
        font-size: 12px;
    }

    [dir="rtl"] .landing-service-card {
        width: 315px; /* Set width for RTL in responsive */
        height: 138px; /* Set height for RTL in responsive */
        margin: 0 auto;
        text-align: center;
    }

    .landing-service-card {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

/*************************************************
Landing Support Section Styles
*****************************/
/* Up-and-Down Animation */
@keyframes upAndDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.up-and-down {
    animation: upAndDown 5s ease-in-out infinite;
}

/* Other styles */
.landing-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 40px; */
    padding: 50px 15px;
}

.landing-support .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse; /* Default reverse alignment */
}

.landing-support-content {
    flex: 1;
    box-sizing: border-box;
    text-align: left;
    padding: 20px;
}

.landing-support-content h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.landing-support-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.landing-support-feature {
    display: flex;
    align-items: center;
    text-align: left;
}

.landing-support-feature img {
    margin-right: 10px;
}

.landing-support-feature h3 {
    font-size: 16px;
    color: var(--primary-color);
}

.landing-support-description {
    font-size: 20px;
    opacity: 1;

    margin-bottom: 20px;
}

.landing-support-btn {
    margin-top: 40px;
}

.landing-support-image {
    flex: 1;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.landing-support-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/************** RTL Adjustments **************/
[dir="rtl"] .landing-support-feature img {
    margin-inline-end: 0;
    margin-inline-start: 10px;
}
[dir="rtl"] .landing-support-feature {
    text-align: right;
    padding-right: 5px;
}

[dir="rtl"] .landing-support-content {
    text-align: right;
}

/************ Responsiveness for Landing Support ************/

@media (min-width: 1024px) and (max-width: 1366px) {
    .landing-support .container {
        flex-direction: row-reverse; /* Apply reverse alignment */
    }

    .landing-support-content h2 {
        font-size: 32px;
    }

    .landing-support-feature h3,
    .landing-support-description {
        font-size: 14px;
    }

    .landing-support-image img {
        width: 400px;
    }
}

@media (max-width: 1200px) {
    .landing-support .container {
        flex-direction: row-reverse; /* Apply reverse alignment */
    }

    .landing-support-content h2 {
        font-size: 28px;
    }

    .landing-support-feature h3,
    .landing-support-description {
        font-size: 14px;
    }

    .landing-support-image img {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .landing-support .container {
        flex-direction: column-reverse;
    }

    .landing-support-content {
        text-align: center;
    }

    .landing-support-content h2 {
        font-size: 24px;
    }

    .landing-support-feature h3,
    .landing-support-description {
        font-size: 12px;
    }

    .landing-support-image img {
        width: 232px;
    }
}

@media (max-width: 820px) {
    /* Specific for iPad Air */
    .landing-support .container {
        flex-direction: row-reverse; /* Apply reverse alignment */
    }

    .landing-support-content {
        text-align: left;
    }

    .landing-support-content h2 {
        font-size: 26px;
    }

    .landing-support-feature h3 {
        font-size: 12px;
    }
    .landing-support-image img {
        width: 300px;
    }
}
@media (max-width: 576px) {
    .landing-support .container {
        flex-direction: column-reverse;
        align-items: center; /* Center align for smaller screens */
        text-align: center; /* Center text for smaller screens */
    }

    .landing-support-content {
        text-align: center; /* Ensure text is centered */
    }

    .landing-support-content h2 {
        font-size: 20px;
    }

    .landing-support-feature h3,
    .landing-support-description {
        font-size: 10px;
    }

    .landing-support-image img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .landing-support .container {
        flex-direction: column-reverse;
        align-items: center; /* Center align for very small screens */
        text-align: center; /* Center text for very small screens */
    }

    .landing-support-content {
        text-align: center; /* Ensure text is centered */
        padding: 0;
    }

    .landing-support-content h2 {
        font-size: 18px;
    }

    .landing-support-feature h3,
    .landing-support-description {
        font-size: 10px;
    }

    .landing-support-image img {
        width: 100%;
        max-width: 300px;
    }

    [dir="rtl"] .landing-support-content {
        text-align: center;
    }
}

@media (min-width: 650px) and (max-width: 670px),
    (min-width: 900px) and (max-width: 920px) {
    .landing-support .container {
        flex-direction: row; /* Display in row for specified widths */
        padding-right: 0;
        gap: 0;
    }

    .landing-support-content {
        text-align: left; /* Align text to left */
    }

    .landing-support-image {
        text-align: center; /* Center the image */
    }

    .landing-support-content h2 {
        font-size: 24px;
    }

    .landing-support-feature h3,
    .landing-support-description {
        font-size: 12px;
    }

    .landing-support-image img {
        width: 100%;
        max-width: 250px;
    }
}
/********************************************************
Landing Card Section Styles
********************************************************/
.landing-card-section {
    background: var(--gradient-color);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.landing-card-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.24);
    width: 100%;
    box-sizing: border-box;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-card-content {
    text-align: center;
    position: relative;
    width: 100%;
}

.landing-quote-mark {
    margin-inline-start: 0;
    left: 20%;
    position: absolute;
    top: -35px;
}

.landing-card-text h2 {
    color: var(--primary-color);
    font-size: 35px;
    margin-bottom: 10px;
    text-align: center;
}

.landing-card-text p {
    color: var(--subtext-color);
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.landing-card-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.landing-card-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Add space between image and text in footer */
}

.landing-author-photo {
    border-radius: 10px;
    width: 60px;
    height: 60px;
    margin-inline-end: 10px;
}

.landing-author-info h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 18px;
    text-align: center;
}

.landing-author-info p {
    color: var(--primary-color);
    margin: 0;
    font-size: 20px;
    text-align: center;
}

.landing-card-button {
    margin-top: 20px;
    text-align: center;
}

/************** RTL Adjustments **************/
[dir="rtl"] .landing-card-content {
    text-align: center;
    direction: rtl;
}

[dir="rtl"] .landing-quote-mark {
    margin-inline-start: 0;
    margin-inline-end: 20px;
    right: 0;
    left: auto;
}

[dir="rtl"] .landing-author-photo {
    margin-inline-start: 10px;
}

[dir="rtl"] .landing-card-button {
    margin-inline-start: 0;
}

/************ Responsiveness for Landing Card ************/
@media (max-width: 992px) {
    .landing-card-wrapper {
        padding: 30px;
    }

    .landing-card-content {
        margin-top: 20px;
    }

    .landing-quote-mark {
        width: 80px;
        height: 72px;
        top: -20px;
    }

    [dir="rtl"] .landing-quote-mark {
        margin-inline-end: 20px;
        right: 0;
        left: auto;
    }

    .landing-card-text h2 {
        font-size: 36px;
    }

    .landing-card-text p {
        font-size: 20px;
        /* width: 700px; */
        margin: 0 auto;
    }

    .landing-card-footer {
        align-items: center;
        text-align: center;
    }

    .landing-card-author {
        margin-bottom: 20px; /* Add space between image and text in footer */
    }

    .landing-card-button {
        margin-top: 20px;
    }

    [dir="rtl"] .landing-card-footer {
        align-items: center;
        text-align: center;
    }

    [dir="rtl"] .landing-card-author {
        margin-bottom: 20px; /* Add space between image and text in footer */
    }

    [dir="rtl"] .landing-card-button {
        margin-top: 20px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .landing-card-wrapper {
        padding: 20px;
    }

    .landing-quote-mark {
        width: 60px;
        height: 54px;
    }

    .landing-card-text h2 {
        font-size: 28px;
    }

    .landing-card-text p {
        font-size: 18px;
        /* max-width: 500px; */
    }

    .landing-author-photo {
        width: 50px;
        height: 50px;
    }
    .landing-author-info h3 {
        font-size: 15px;
    }
    .landing-author-info p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .landing-card-wrapper {
        padding: 15px;
    }

    .landing-quote-mark {
        width: 50px;
        height: 45px;
    }

    .landing-card-text h2 {
        font-size: 24px;
    }

    .landing-card-text p {
        font-size: 16px;
        /* max-width: 460px; */
    }

    .landing-author-photo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .landing-card-wrapper {
        padding: 10px;
    }

    .landing-card-text h2 {
        font-size: 20px;
    }

    .landing-card-text p {
        font-size: 16px;
        /* max-width: 250px; */
    }

    .landing-quote-mark {
        width: 40px;
        height: 36px;
        left: 10%;
    }

    .landing-author-photo {
        width: 47px;
        height: 47px;
    }
}

/******************************************************** Landing Projects Section Styles *********************/
/************************************** Landing Testimonials Section Styles **********************************/
.testimonials-section {
    background-image: var(--gradient-color);
    color: var(--color-white);
    text-align: center;
    padding: 50px 50%;
    overflow: hidden;
}

.landing-testimonials-headings h2 {
    font-size: 35px;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
}

.testimonial-quote {
    max-width: 80%;
    margin: 10px auto;
    /* Centers the quote and gives vertical spacing */
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-p {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
}
/************** Testimonials Swiper *********/

/*Swiper Pagination Bullets */
.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5 !important;
    width: 15px !important;
    height: 15px !important;
    margin: 0 7px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    transition: opacity 0.3s !important;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #fff !important;
    /* Keep the active bullet color white */
    opacity: 1 !important;
}

.swiper2 {
    width: 100%;
    max-width: 600px; /* Adjust the max-width as needed */
    padding-top: 30px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch; /* Ensure all slides stretch to the height of the tallest slide */
}

.swiper-slide {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    /* max-width: 400px; */
    height: 100%; /* Ensure the slide takes up full height */
    padding: 20px;
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide-active {
    transform: scale(1.2);
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testimonial-info {
    display: flex;
    color: var(--color-black);
    text-align: left;
    padding: 12px 15px;
    background-color: var(--color-white);
    border-radius: 10px;
    flex-grow: 1;
    height: 240px; /*Card height*/
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.testimonial-img-description {
    display: flex;
    align-items: flex-start;
}

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

:root[dir="rtl"] .testimonial-quote,
:root[dir="rtl"] .testimonial-text,
:root[dir="rtl"] .testimonial-info {
    text-align: right;
}

:root[dir="ltr"] .testimonial-quote,
:root[dir="ltr"] .testimonial-text,
:root[dir="ltr"] .testimonial-info {
    text-align: left;
}

.testimonial-img-description img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-img-opinion {
    display: flex;
    flex-direction: column;
}

.testimonial-info h3 {
    font-weight: bold;
    margin: 0;
}

.rating {
    color: #ffd700;
    margin: 5px 0;
}

:root[dir="rtl"] .testimonial-img-opinion {
    padding-left: 10px;
}

.testimonial-img-opinion {
    padding-right: 10px;
}

/************  Responsiveness for Testimonials ************/
@media (max-width: 992px) {
    .testimonial-img-opinion {
        padding-right: 10px;
    }
    :root[dir="rtl"] .testimonial-img-opinion {
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .swiper2 {
        width: 80%; /* Adjust the width for smaller screens */
    }

    .swiper-slide {
        width: 100%; /* Full width on smaller screens */
        margin: 0 auto;
        height: auto; /* Allow height to adjust for smaller screens */
    }

    .testimonials-headings h1,
    .testimonial-p {
        font-size: 14px;
    }
    .testimonial-p{
        display: none;
    }

    .landing-testimonials-headings h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-quote,
    .testimonial-text {
        font-size: 14px;
    }
    .testimonial-quote {
        max-width: 60%;
    }
    .swiper-slide {
        width: 100%;
        padding: 5px;
        margin: 0 auto;
    }

    .testimonial-info {
        padding: 5px;
    }
}

/************************************* Landing Process Section Styles *********************************/

.landing-process-section {
    padding: 50px 20px;
}

.process-headings {
    text-align: center;
    margin-bottom: 50px;
}

.process-headings h2 {
    font-size: 35px;
    color: var(--color-black);
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
}

.process-headings p {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.process-steps {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 20px;
}

.process-step-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.process-step-image {
    position: relative;
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.process-step-image img {
    width: 100%;
    height: auto;
}

.process-step-number {
    position: absolute;
    font-style: normal;
    font-weight: 400;
    font-size: 204px;
    line-height: 204px;
    letter-spacing: -0.02em;
    color: #000000;
    opacity: 0.05;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.process-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step h3 {
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 25px;
}

.process-step p {
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    color: var(--subtext-color);
    letter-spacing: 1px;
    max-width: 90%;
    margin: 0 auto;
}

/************  Responsiveness for Process Section ************/

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
    }
}
/* Flex column for iPhone SE */
@media (max-width: 375px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* Initial layout for iPad Air */
@media (min-width: 768px) and (max-width: 820px) {
    .process-steps {
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
    }

    .process-step {
        width: 30%;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .process-headings h2 {
        font-size: 24px;
    }

    .process-headings p {
        font-size: 20px;
    }

    .process-step-image {
        width: 120px;
    }

    .process-step-number {
        font-size: 150px;
        top: -40px;
        left: -40px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .process-headings h2 {
        font-size: 20px;
    }

    .process-headings p {
        font-size: 18px;
    }

    .process-step-image {
        width: 100px;
    }

    .process-step-number {
        font-size: 120px;
        top: -30px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 12px;
        max-width: 100%;
    }
    .process-steps {
        flex-direction: column;
    }
}
/************************************* Technologies Section Styles *********************************/

.technologies-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 50px 20px; */
    background-image: var(--gradient-color);
    color: #fff;
    overflow: hidden;
    width: 100%;
}

.technologies-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 20px;
}

[dir="rtl"] .technologies-section .container {
    flex-direction: column;
}

.technologies-content {
    text-align: left;
    max-width: 600px;
}

[dir="rtl"] .technologies-content {
    text-align: center;
    margin-bottom: 30px;
}

.technologies-content h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.technologies-content p {
    font-size: 20px;
    margin-bottom: 2em;
    line-height: 1.5em;
}

.technologies-icons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.technologies-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.technologies-icon {
    width: 80px;
    height: auto;
}

/************  Responsiveness for Technologies ************/

@media (max-width: 992px) {
    .technologies-section {
        /* padding: 3em 15px; */
        text-align: center;
    }

    .technologies-section .container {
        flex-direction: column;
    }

    .technologies-content {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    [dir="rtl"] .technologies-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .technologies-icons-wrapper {
        flex-direction: column;
    }

    .technologies-icons {
        gap: 10px;
    }

    .technologies-icon {
        width: 60px;
    }
}

@media (max-width: 768px) {
    /* .technologies-section {
        padding: 30px 15px;
    } */

    .technologies-content h2 {
        font-size: 24px;
    }

    .technologies-content p {
        font-size: 14px;
    }

    .technologies-icons {
        gap: 8px;
    }

    .technologies-icon {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .technologies-section .container {
        flex-direction: column;
    }

    .technologies-content {
        margin: 20px auto;
        text-align: center;
    }

    [dir="rtl"] .technologies-content {
        text-align: center;
    }

    .technologies-icons {
        gap: 6px;
    }

    .technologies-icon {
        width: 40px;
    }
}

/*********************************** Landing Articles News Blogs Section Styles ********************************/
.no-articles-message {
    font-size: 18px;
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
}

.landing-news-blogs-section {
    position: relative;
    padding: 50px 20px;
    background: url("../images/landing-imgs/landing-bg/articlesBg.webp")
        no-repeat left center;
    background-size: contain;
}

.landing-news-blogs-headings {
    text-align: center;
}

.landing-news-blogs-headings h2 {
    font-size: 35px;
    color: var(--color-black);
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
}

.landing-news-blogs-headings p {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: var(--font-weight-medium);
}

.landing-news-blogs-content {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 30px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    align-items: stretch;
    perspective: 1000px;
}

.landing-article {
    /* background: white;
    border-radius: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 357px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; */
    color: rgb(51, 51, 51);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    z-index: 1;
    flex: 1 1 calc(33.33% - 20px);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    border-image: initial;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: -1px 1px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    /* height: 50px; */
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    justify-content: space-between;
}

.landing-article:hover {
    transform: translateY(-10px);
}

.landing-article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f4f4f4;
    /* border-radius: 17px 17px 0 0; */
}
.landing-article-content {
    padding: 15px;
    text-align: left;
}
:root[dir="rtl"] .landing-article-content {
    text-align: right;
}

.landing-article-badges {
    gap: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.landing-article-badge {
    background: rgba(19, 97, 245, 0.1);
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    padding: 2px;
    margin: 0 5px 5px 0;
    font-size: 17px;
    white-space: nowrap;
}

.landing-article h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.landing-article-read-more {
    display: inline-block;
    color: #f4f4f4;
    font-weight: 500;
    text-decoration: none;
    background-color: #5b388c;
    padding: 5px;
    border-radius: 5px;
    transition: 0.7s ease;
}
.landing-article-read-more:hover {
    background-color: #f4f4f4;
    color: #5b388c;
}

/************  Responsiveness for Landing News & Blogs ************/
/* @media (max-width: 1366px) {
    .landing-news-blogs-content {
        grid-template-columns: repeat(2, 1fr);
    }
} */

/* @media (max-width: 1200px) {
    .landing-news-blogs-content {
        grid-template-columns: repeat(2, 1fr);
    }
} */
@media (min-width: 768px) and (max-width: 991px) {
    .landing-article {
      flex: 1 1 calc(50% - 20px) !important;
      max-width: calc(50% - 20px) !important;
    }

    .landing-news-blogs-content {
      justify-content: flex-start;
      gap: 10px;
    }
  }
@media (max-width: 992px) {
    /* .landing-news-blogs-content {
        grid-template-columns: 1fr;
    } */

    .landing-news-blogs-headings h2 {
        font-size: 28px;
    }

    .landing-news-blogs-headings p{
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .landing-news-blogs-section {
        padding: 30px 15px;
        background-size: 70% auto;
        background-position: left top;
    }

    /* .landing-news-blogs-content {
        grid-template-columns: 1fr;
    } */

    .landing-news-blogs-headings h2 {
        font-size: 24px;
    }

    .landing-news-blogs-headings p {
        font-size: 20px;
    }
    .landing-article-badge {
        font-size: 14px;
    }
    .landing-news-blogs-content {
        gap: 10px;
      }




}

@media (max-width: 576px) {
    /* .landing-news-blogs-content {
        grid-template-columns: 1fr;
        margin-top: 10%;
    } */

    .landing-news-blogs-headings h2 {
        font-size: 20px;
    }

    .landing-news-blogs-headings p {
        font-size: 14px;
        max-width: 300px;
        margin: 0 auto;
    }
    .landing-news-blogs-content {
        gap: 10px;
      }
}

@media (max-width: 344px) {
    /* Adjust for Galaxy Z Fold 5 and iPhone SE */
    /* .landing-news-blogs-content {
        grid-template-columns: 1fr;
        margin-top: 10%;
    } */

    .landing-news-blogs-headings h2 {
        font-size: 20px;
    }

    .landing-news-blogs-headings p{
        font-size: 12px;
    }
    .landing-news-blogs-content {
        gap: 10px;
      }
}


/* ===============================
    Comment Section CSS
================================== */

.comment-section {
    background-color: white;
    padding: 25px 0 100px 0;
    text-align: left;
}

.comment-title {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.comment-section-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto;
}

.comment-section-image {
    max-width: 45%;
    text-align: center;
    margin-right: 30px;
}

.comment-section-image img {
    max-width: 100%;
    height: auto;
}

.comment-section-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    text-align: left;
}

.comment-section-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    text-align: left;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.comment-section-form .form-group {
    margin-bottom: 20px;
}

.comment-section-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    font-weight: lighter;
}

.comment-section-form .form-group label span {
    color: #d32f2f;
}

.comment-section-form .form-group input {
    width: 100%;
    padding: 9px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.07);
    transition: border-color 0.3s ease;
    background-color: rgba(235, 235, 235, 0.5);
    text-align: left;
}

.comment-section-form .form-group input::placeholder {
    text-align: left;
}

.comment-section-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comment-section-form .message-input {
    height: 200px;
    /* Increase the height of the message input box */
}

.comment-section-form .btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: var(--secondary-color);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.comment-section-form .btn-submit:hover {
    background: linear-gradient(280.65deg, #7956a1 42.09%, #5b388c 68.6%);
}

.comment-section-form .arrow-image {
    position: absolute;
    bottom: 45px;
    right: -70px;
    width: 100px;
    height: auto;
}

/****** Responsive adjustments ******/

@media (max-width: 1200px) {
    .comment-section {
        background-color: white;
        padding: 40px 60px 100px 60px;
        text-align: left;
    }

    .comment-section-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        margin: 0 auto;
    }

    .comment-section-form .arrow-image {
        display: none;
    }
}

@media (max-width: 1100px) {
    .comment-section {
        background-color: white;
        padding: 40px 80px 100px 80px;
        text-align: left;
    }

    .comment-section-form .arrow-image {
        display: none;
    }
}

@media (max-width: 992px) {
    .comment-title {
        font-size: 30px;
    }

    .comment-section-container {
        flex-direction: column;
        text-align: center;
    }

    .comment-section-image {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 60%;
    }

    .comment-section-content {
        max-width: 100%;
    }

    .comment-section-form {
        padding: 20px;
        max-width: 90%;
    }

    .comment-section-form .arrow-image {
        display: none;
    }

    .comment-section-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .comment-section {
        padding: 50px 0 50px 0;
    }

    .comment-title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .comment-section-form .form-group label {
        font-size: 15px;
    }

    .comment-section-form .form-group input {
        font-size: 13px;
    }

    .comment-section-image img {
        max-width: 100%;
    }

    .comment-section-form {
        padding: 20px;
        max-width: 80%;
    }

    .comment-section-form .btn-submit {
        font-size: 20px;
        padding: 10px;
    }

    .comment-section-container {
        flex-direction: column;
    }

    .comment-section-image {
        order: 1;
        /* Ensure the image appears first */
    }

    .comment-section-form {
        order: 2;
        /* Ensure the form appears second */
    }
}

/******************************* RTL Specific Styles *******************************/
.rtl .comment-section-form .form-group input,
.rtl .comment-section-form .form-group input::placeholder,
.rtl .comment-section-form {
    text-align: right;
}

.rtl .comment-section-form .form-group label {
    text-align: right;
}

.rtl .comment-section-image {
    margin-left: 30px;
    margin-right: 0;
}

.rtl .comment-section-form {
    text-align: right;
}

.ltr .comment-section-form {
    text-align: left;
}
/* Hero Section */
/* Hero Section with Light Transparent Overlay */
.privacy-hero {
    position: relative;
    background: url('../images/policy.png') center center no-repeat;
    background-size: contain;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Overlay شفاف */
.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

/* Hero Content فوق الـ overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    color:
#5b388c;
/* النص أسود */
    margin-bottom: 20px;
}

.hero-description {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(to right, #5b388c, #7956a1);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #7956a1, #5b388c);
}


/* Privacy Policy Content */
.privacy-policy-page {

    color: #4b4444;
    line-height: 1.8;
    padding: 50px 20px;
}

.privacy-policy-page h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5b388c;

    margin-bottom: 15px;
    border-bottom: 2px solid #7956a1;
    padding-bottom: 5px;
}

.privacy-policy-page h3 {
    font-size: 28px;
    font-weight: 500;
    color: #5b388c;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-policy-page p {
    font-size: 16px;
    margin-bottom: 15px;
}

[dir="rtl"]  .privacy-policy-page ul {
    list-style-type: disc;
    padding-right: 25px;
    margin-bottom: 20px;
}
[dir="ltr"] .privacy-policy-page ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}
.privacy-policy-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.privacy-policy-page a {
    color: #5b388c;
    text-decoration: underline;
}

.privacy-policy-page a:hover {
    color: #7956a1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-description {
        font-size: 18px;
    }
    .privacy-hero {
            height: 58vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 16px;
    }
    .privacy-policy-page h2 {
        font-size: 22px;
    }
    .privacy-policy-page h3 {
        font-size: 22px;
    }
    .privacy-policy-page p,
    .privacy-policy-page ul li {
        font-size: 14px;
    }
}
