/* Fonts loaded via Google Fonts in layout.blade.php */

/* General */
* {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    cursor: default;
}

/* Arabic font override */
html[lang="ar"] {
    font-family: 'Cairo', 'Montserrat', sans-serif !important;
}

html[lang="ar"] * {
    font-family: 'Cairo', 'Montserrat', sans-serif !important;
}

/* RTL Direction for Arabic Content */
html[lang="ar"] {
    direction: rtl;
}

html[lang="ar"] p,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] span,
html[lang="ar"] div,
html[lang="ar"] li,
html[lang="ar"] .slider .content .container .row .col-12 .homepage-slider .swiper-slide span,
html[lang="ar"] .about .small-title,
html[lang="ar"] .about .big-title,
html[lang="ar"] .services h3,
html[lang="ar"] .services .services-list li .content .title,
html[lang="ar"] .services .services-list li .content p,
html[lang="ar"] .subtitle-section h2,
html[lang="ar"] .service-details .info-col .content,
html[lang="ar"] .service-benefits .benefit-item .content .title,
html[lang="ar"] .service-benefits .benefit-item .content p,
html[lang="ar"] .vision-promise .element-col .content .title,
html[lang="ar"] .vision-promise .element-col .content p,
html[lang="ar"] .contact-form h3,
html[lang="ar"] .action-section h3,
html[lang="ar"] .intro-text .mx-auto,
html[lang="ar"] footer .content .menus ul li,
html[lang="ar"] footer .content .addresses li,
html[lang="ar"] footer .copyrights {
    direction: rtl;
    letter-spacing: 0px;
}

/* Specific rule for all title classes in Arabic */
html[lang="ar"] .title {
    direction: rtl;
    letter-spacing: 0px !important;
}

/* Disable text-transform for Arabic text to maintain letter connections */
html[lang="ar"] .header .menu,
html[lang="ar"] .contact-form button[type="submit"],
html[lang="ar"] .slider .content .container .row .col-12 .homepage-slider .swiper-slide span,
html[lang="ar"] .about .small-title,
html[lang="ar"] .services h3,
html[lang="ar"] .vision-promise .element-col .content .title,
html[lang="ar"] * {
    text-transform: none !important;
    letter-spacing: 0px !important;
}

/* Unified h3 styling for both English and Arabic */
h3 {
    font-size: 35px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}
/* Language switcher font overrides */
html[lang="en"] .header .widgets a[href*="/ar"], html[lang="en"] .mobile-menu .lang-switcher[href*="/ar"] {font-family: 'Cairo', 'Montserrat', sans-serif;}
html[lang="ar"] .header .widgets a[href*="/en"], html[lang="ar"] .mobile-menu .lang-switcher[href*="/en"] {font-family: 'Montserrat', sans-serif;}
a, button, input[type="submit"], input[type="button"], input[type="reset"], [role="button"], .clickable {cursor: pointer;}
a *, a svg, a img, button *, button svg, button img {cursor: pointer;}
input[type="text"], input[type="email"], input[type="password"], input[type="search"], textarea {cursor: text;}
html {scroll-behavior: smooth;}
body {position: relative;}
body.page-home {background-image: linear-gradient(to left top, #3a83c5, #5673b4, #6664a0, #6d558a, #6f4874);}
ul {padding: 0;margin: 0;list-style: none;}
a {text-decoration: none;color: unset;}

/* Header & Footer */
.header {position: absolute;width: 100%;top: 0;z-index: 10;left: 0;right: 0;}
.header .wrapper {display: flex;justify-content: space-between;align-items: center;padding-top: 35px;}
.header .wrapper .logo {height: 75px;display: block;z-index: 10;}
.header .wrapper .logo img {width: 100%;height: 100%;object-fit: contain;}
.header .menu {display: flex;color: #fff;text-transform: uppercase;}
.header .menu li {margin: 0 40px;}
.header .menu li:first-of-type {margin: 0 40px 0 0;}
.header .menu li:last-of-type {margin: 0 0 0 40px;}
.header .menu li a {position: relative;}
.header .menu li a:hover {color: #fff;}
.header .menu li a::after {content: '';width: 100%;height: 5px;background: transparent;position: absolute;bottom: -10px;transition: .3s all ease-in-out;left: 0;}
.header .menu li a:hover::after, .header .menu li a.active::after {content: '';width: 100%;height: 5px;background: #fff;position: absolute;bottom: -10px;transition: .3s all ease-in-out;}
.header .menu li.menu-with-dropdown {position: relative;}
.header .menu li.menu-with-dropdown .dropdown {opacity: 0;pointer-events: none;position: absolute;background: #fff;width: 350px;top: calc(60% + 8px);transition: .3s all ease-in-out;}
.header .menu li.menu-with-dropdown:hover .dropdown {opacity: 1;pointer-events: visible;top: calc(100% + 8px);transition: .3s all ease-in-out;}
.header .menu li.menu-with-dropdown .dropdown li {margin: 0;}
.header .menu li.menu-with-dropdown .dropdown li a {background: #fff;font-size: 12px;padding: 15px 20px 15px 40px;color: #707070;font-weight: 400;width: 100%;display: block;transition: .3s all ease-in-out;}
.header .menu li.menu-with-dropdown .dropdown li a:hover, .header .menu li.menu-with-dropdown .dropdown li a.active {color: #fff;background: #707070;transition: .3s all ease-in-out;}
.header .menu li.menu-with-dropdown .dropdown li a:hover::after {display: none;}
.header .widgets {display: flex;align-items: center;}
.header .widgets a {font-size: 14px;color: #fff;background: transparent;border: 1px solid #fff;padding: 15px 30px;border-radius: 25px;opacity:1;transition: .3s all ease-in-out;}
.header .widgets a:hover {color: #707070;background: #fff;transition: .3s all ease-in-out;}
.header .widgets .menu-trigger {cursor: pointer;display: none;width: 34px;margin: 0 0 0 15px;position: relative;z-index: 10;padding: 10px 0;}
.header .widgets .menu-trigger i {display: block;height: 1.5px;background: #fff;transition: .3s all ease-in-out;}
.header .widgets .menu-trigger::before {content: '';width: 100%;height: 1.5px;background: #fff;position: absolute;top: 0px;transform-origin: top left;transform: rotate(0deg) scaleX(1);transition: .3s all ease-in-out;}
.header .widgets .menu-trigger::after {content: '';width: 100%;height: 1.5px;background: #fff;position: absolute;top: 20px;transform-origin: bottom left;transform: rotate(0deg) scaleX(1);transition: .3s all ease-in-out;}
.header .widgets.menu-open .menu-trigger i {background: transparent;transition: .3s all ease-in-out;}
.header .widgets.menu-open .menu-trigger::before {transform: rotate(30deg) scaleX(1.2);transition: .3s all ease-in-out;}
.header .widgets.menu-open .menu-trigger::after {transform: rotate(-30deg) scaleX(1.2);transition: .3s all ease-in-out;}
.header .widgets.menu-open a {opacity: 0;transition: .3s all ease-in-out;}

.mobile-menu {position: absolute;background: #3A83C5;z-index: 1;width: 100%;height: 100vh;padding: 80px 15px;text-align: center;display: flex;justify-content: center;align-items: center;pointer-events: none;opacity: 0;visibility: hidden;transition: .3s all ease-in-out;}
.mobile-menu.visible {pointer-events: auto;opacity: 1;visibility: visible;transition: .3s all ease-in-out;}
.mobile-menu .content {width: 90%;}
.mobile-menu .content ul li {overflow: hidden;margin: 0 0 10px 0;padding: 0 0 7px 0;}
.mobile-menu .content ul li a {color: #fff;font-size: 20px;position: relative;}
.mobile-menu .content ul li a.active {font-weight: 700;}
.mobile-menu .content ul li.menu-with-dropdown .dropdown-trigger {position: relative;}
.mobile-menu .content ul li.menu-with-dropdown .dropdown-trigger::before {content: '';width: 10px;height: 10px;border-left: 2px solid #fff;border-bottom: 2px solid #fff;position: absolute;top: 50%;right: -30px;transform: translateY(-50%) rotate(-45deg);transition: .3s all ease-in-out;}
.mobile-menu .content ul li.menu-with-dropdown .dropdown-trigger.dropdown-open::before {transform: translateY(0%) rotate(135deg);transition: .3s all ease-in-out;}
.mobile-menu .content ul li.menu-with-dropdown .dropdown-trigger::after {display: none;}
.mobile-menu .content ul li.menu-with-dropdown ul {margin: 20px 0 0 0;display: none;}
.mobile-menu .content ul li.menu-with-dropdown ul li {margin: 0 0 10px 0;}
.mobile-menu .content ul li.menu-with-dropdown ul li a {font-size: 16px;}
.mobile-menu .content ul li.menu-with-dropdown ul li a.active {font-weight: 700;}
.mobile-menu .content .lang-switcher {font-size: 14px;color: #fff;background: transparent;border: 1px solid #fff;padding: 15px 30px;border-radius: 25px;opacity: 1;transition: .3s all ease-in-out;display: block;width: fit-content;margin: 25px auto 0;}

footer {background: #373E43;padding: 75px 0 40px 0;color: #FFFFFF;}
footer .content {display: flex;align-items: flex-start;justify-content: space-between;}
footer .content .menus {width: 40%;display: flex;justify-content: space-between;align-items: flex-start;}
footer .content .menus ul:first-of-type {width: 40%}
footer .content .menus ul:last-of-type {width: 60%}
footer .content .menus ul li {margin: 0 0 20px 0;}
footer .content .addresses li {margin: 0 0 35px 0;}
footer .content .addresses li:last-of-type, footer .content .menus ul li:last-of-type {margin: 0;}
footer .content .addresses li span {display: block;line-height: 28px;}
footer .content .addresses li span.title {font-weight: bold;}
footer .copyrights {margin: 55px 0 0 0;display: block;width: fit-content;font-size: 14px;}

footer .content .menus ul li a, footer .content .addresses li a {transition: .3s all ease-in-out;position: relative;}
footer .content .menus ul li a:hover, footer .content .addresses li a:hover {transition: .3s all ease-in-out;color: #fff;}
footer .content .menus ul li a::after, footer .content .addresses li a::after {content: '';width: 100%;height: 5px;background: transparent;transition: .3s all ease-in-out;position: absolute;left: 0;bottom: -6px;}
footer .content .addresses li a::after {height: 1px;bottom: -3px;}
footer .content .menus ul li a:hover::after, footer .content .menus ul li a.active::after, footer .content .addresses li a:hover::after {background: #fff;transition: .3s all ease-in-out;}

/* Shared Components */

.contact-form {padding: 100px 0;background: #FAFAFA;}
.contact-form.homepage {padding: 80px 0;background: transparent;}
.contact-form h3 {width: 65%;margin: 0 auto 50px auto;text-align: center;color: #3A83C5;font-weight: 700;font-size: 55px;line-height: 60px;}
.contact-form.homepage h3 {margin: 0 auto 35px auto;color: #fff;font-weight: 300;}
.contact-form form {display: flex;flex-direction: column;}
.contact-form input, .contact-form textarea {resize: none;text-align: center;background: transparent;border: none;border-bottom: 1px solid #DEDEDE;font-size: 16px;color: #292B2C;padding: 0 15px 15px 15px;margin: 0 0 40px 0;transition: .3s all ease-in-out;}
.contact-form input:focus, .contact-form textarea:focus {outline: none;border-bottom: 1px solid #3A83C5;transition: .3s all ease-in-out;}
.contact-form.homepage input:focus, .contact-form.homepage textarea:focus {border-bottom: 1px solid #fff;transition: .3s all ease-in-out;}
.contact-form.homepage input, .contact-form.homepage textarea {color: #fff;}
.contact-form input::placeholder, .contact-form textarea::placeholder {color: #707070;}
.contact-form.homepage input::placeholder, .contact-form.homepage textarea::placeholder {color: #DEDEDE;}
.contact-form button[type="submit"] {border: 1px solid #3A83C5;background: #3A83C5;color: #fff;border-radius: 30px;padding: 15px 0;text-transform: uppercase;transition: .3s all ease-in-out;}
.contact-form button[type="submit"]:hover {border: 1px solid #3A83C5;background: #fff;color: #3A83C5;transition: .3s all ease-in-out;}
.contact-form.homepage button[type="submit"] {border: 1px solid #fff;background: #fff;color: #707070;}
.contact-form.homepage button[type="submit"]:hover {border: 1px solid #fff;background: transparent;color: #fff;}
.contact-form .messages {text-align: center;margin: 40px 0 0 0;opacity: 0;visibility: hidden;font-size: 14px;color: #3a83c5;transition: .3s all ease-in-out;}
.contact-form.homepage .messages {color: #fff;}
.contact-form .messages.visible {opacity: 1;visibility: visible;transition: .3s all ease-in-out;}
.contact-form .messages.error {color: red;}

.page-header {height: 60vh;min-height: 450px;background-image: linear-gradient(to left top, #3a83c5, #5673b4, #6664a0, #6d558a, #6f4874);display: flex;align-items: center;justify-content: center;}
/* .page-header h1 {color: #fff;font-weight: 700;width: 20%;text-align: center;font-size: 26px;margin: 20px 0 0 0;} */
/* .page-header h1 {width: 100%;padding-top:20px;text-align: center;font-style: normal;font-variant: normal;font-weight: bold;font-size: 130px;line-height: 175px;line-height: 130px;font-family: sans-serif;text-shadow: 0 0 2px #fff;color: #0A0718;} */
.page-header h1 {width: 100%;padding-top:20px;text-align: center;font-style: normal;font-variant: normal;font-weight: bold;font-size: 110px;line-height: 155px;line-height: 110px;font-family: sans-serif;text-shadow: 0 0 2px #fff;color: #0A0718;}
@supports (-webkit-text-stroke: 1px white) {
    .page-header h1 {
        text-shadow: none;
        color: transparent;
        -webkit-text-stroke: 1px #fff;
    }
}

.intro-text {padding: 100px 0;}
.intro-text .mx-auto {text-align: center;color: #707070;font-weight: 700;font-size: 18px;line-height: 36px;}

.action-section {background-image: linear-gradient(to left top, #3a83c5, #5673b4, #6664a0, #6d558a, #6f4874);display: flex;padding: 100px 0;position: relative;z-index: 1;}
.action-section h3 {width: 65%;text-align: center;font-size: 55px;line-height: 60px;margin: 0 auto 35px auto;color: #fff;font-weight: 300;}
.action-section a {width: 60px;display: block;margin: auto;transition: .3s all ease-in-out;}
.action-section a:hover {width: 70px;transition: .3s all ease-in-out;}
.action-section a svg {width: 100%;}

/* .form-paddings {padding-left: 174px;} */
.form-paddings {padding-left: 240px;}

/* Homepage */
.slider {height: 100vh;overflow: hidden;position: relative;}
.slider video {height: 100%;transform: scale(1.5);position: absolute;top: 0;right: 0;left: 0;z-index: -1;}
.slider .content {background-image: url("../images/slider-overlay.png");z-index: 0;position: absolute;width: 100%;height: 100%;top: 0;right: 0;bottom: 0;left: 0;display: flex;align-items: center;}
.slider .content .container, .slider .content .container .row, .slider .content .container .row .col-12, .slider .content .container .row .col-12 .homepage-slider {height: 100%;}
.slider .content .container .row .col-12 .homepage-slider .swiper-slide {color: #fff;display: flex;align-items: center;}
.slider .content .container .row .col-12 .homepage-slider .swiper-slide span {width: calc(100% - 60px);font-weight: 300;font-size: 59px;line-height: 61px;text-transform: uppercase;}
.slider .content .container .row .col-12 .homepage-slider .swiper-slide span p {margin: 0;}
.slider .content .container .row .col-12 .homepage-slider .swiper-button-next {width: 60px;opacity: 0;transition: .3s all ease-in-out;}
.slider .content .container .row .col-12 .homepage-slider.swiper-initialized .swiper-button-next {opacity: 1;}
.slider .content .container .row .col-12 .homepage-slider .swiper-button-next:hover {opacity: 0.7;transition: .3s all ease-in-out;}
.slider .content .container .row .col-12 .homepage-slider .swiper-button-next::after {display: none;}
.slider .content .container .row .col-12 .homepage-slider .swiper-pagination {bottom: 60px;}
.slider .content .container .row .col-12 .homepage-slider .swiper-pagination .swiper-pagination-bullet {background: transparent;width: 12px;height: 12px;border: 1px solid #fff;margin: 0 9px;opacity: 1;transition: .3s all ease-in-out;}
.slider .content .container .row .col-12 .homepage-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {background: #fff;transition: .3s all ease-in-out;}

.about {padding-top: 170px;padding-bottom: 85px;background: #fff;overflow: hidden;}
.about .container, .about .container .row, .about .container .row .col-12 {height: 100%;}
.about .container .row .col-12 {display: flex;flex-direction: column;justify-content: center;}
.about .small-title {font-size: 19px;text-transform: uppercase;color: #292B2C;font-weight: 500;margin: 0 0 50px 0;}
.about .big-title {font-weight: 300;color: #3A83C5;font-size: 75px;line-height: 100px;}
.about .btn-wrapper {position: relative;margin: 50px 0 0 auto;height: 200px;width: 200px;}
.about .btn-wrapper svg {width: 60px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 10;transition: .3s all ease-in-out;}
.about .btn-wrapper:hover svg {width: 70px;transition: .3s all ease-in-out;}
.about .btn-wrapper a {position: relative;height: 200px;width: 200px;z-index: 5;display: block;}
.about .btn-wrapper a p {margin: 0;width: 200px;height: 200px;position: absolute;top: 0;left: 0;}
.about .btn-wrapper a p span {position: absolute;transform-origin: 0 90px;font-size: 14px;color: #5980BB;font-weight: 400;text-transform: lowercase;}
.about .btn-wrapper-ar {position: relative;height: 200px;width: 200px;}
/* .about .btn-wrapper-ar svg {width: 60px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index: 0;transition: .3s all ease-in-out;} */
.about .btn-wrapper-ar svg {width: 60px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%) rotate(180deg);z-index: 10;transition: .3s all ease-in-out;}
.about .btn-wrapper-ar:hover svg {width: 70px;transition: .3s all ease-in-out;}
.about .btn-wrapper-ar a {position: relative;height: 200px;width: 200px;z-index: 5;display: block;transform-origin: center center;}
.about .btn-wrapper-ar a p {margin: 0;width: 200px;height: 200px;position: absolute;top: 0;left: 0;}
.about .btn-wrapper-ar a p span {position: absolute;transform-origin: 0 90px;font-size: 14px;color: #5980BB;font-weight: 400;text-transform: lowercase;}

.services {padding: 110px 0;}
.services .container, .services .container .row, .services .container .row .col-12 {height: 100%;}
.services .container .row .col-12 {display: flex;flex-direction: column;justify-content: center;}
.services h3 {color: #fff;font-size: 35px;font-weight: 700;text-transform: uppercase;text-align: center;margin: 0 0 55px 0;}
.services .services-list {display: flex;flex-direction: row;flex-wrap: wrap;align-items: flex-start;justify-content: space-between;}
/* .services .services-list li {background: #fff;border-radius: 15px;width: calc(33.33% - 8px);padding: 60px 45px;min-height: 45vh;display: flex;align-items: center;} */
.services .services-list li {background: #fff;border-radius: 15px;width: calc(33.33% - 8px);height: 460px;margin-bottom: 20px;padding: 60px 45px;min-height: 45vh;display: flex;align-items: center;}

.services .services-list li .content img {display: block;margin: 0 0 30px 0;}
.services .services-list li .content .title {font-weight: 700;color: #3A83C5;font-size: 20px;width: 85%;height: 60px;display: block;}
.services .services-list li .content p {color: #717171;margin: 20px 0 0 0;height: 100px;}
/* .services .services-list li .content a {width: 60px;display: block;margin: 20px 0 0 0;transition: .3s all ease-in-out;} */
.services .services-list li .content a {width: 60px;display: block;margin: 20px 0 0 0;padding-top: 30px;transition: .3s all ease-in-out;}
.services .services-list li .content a:hover {margin: 20px 0 0 25px;transition: .3s all ease-in-out;}
.services .services-list li .content a svg {width: 100%;}

.clients {background: #fff;padding: 145px 0 55px 0;}
.clients .clients-slider .swiper-slide {transition: .3s all ease-in-out;filter: grayscale(1);}
.clients .clients-slider .swiper-slide:hover {transition: .3s all ease-in-out;filter: grayscale(0);}
.clients .clients-slider .swiper-slide img {width: 80px;height: 80px;object-fit: contain;display: block;margin: auto;}
.clients .clients-slider .swiper-wrapper {margin: 0 0 75px 0;}
.clients .clients-slider .swiper-pagination {bottom: 0;}
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {background: transparent;width: 12px;height: 12px;border: 1px solid #7C7C7C;margin: 0 9px;opacity: 1;transition: .3s all ease-in-out;}
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {background: #7C7C7C;transition: .3s all ease-in-out;}

/* About Page */
.vision-promise {height: 100vh;}
.vision-promise .row {height: 100%;}
.vision-promise .element-col {display: flex;text-align: center;flex-direction: column;align-items: center;justify-content: center;color: #707070;}
.vision-promise .element-col.dark {color: #fff;}
.vision-promise .element-col .content {width: 75%;}
.vision-promise .element-col .content .title {font-weight: 700;font-size: 40px;text-transform: uppercase;margin: 0 0 20px 0;display: block;}
.vision-promise .element-col .content p {font-size: 16px;line-height: 24px;}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

/* Service Page */
.subtitle-section {padding: 50px 0;}
.subtitle-section h2 {color: #3A83C5;font-weight: 300;font-size: 65px;line-height: 80px;}

.service-details {height: 100vh;}
.service-details .row {height: 100%;}
.service-details .info-col {background-color: #FAFAFA;}
.service-details .img-col {background-color: #FAFAFA;position: relative;}
.service-details .info-col, .service-details .img-col {display: flex;flex-direction: column;align-items: center;justify-content: center;}
.service-details .img-col .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.service-details .img-col .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service-details .info-col .content {width: 75%;color: #707070;}
.service-details .info-col .content p {font-size: 16px;line-height: 24px;}

.service-benefits {display: flex;flex-direction: row;flex-wrap: wrap;align-items: center;}
.service-benefits .benefit-item {position: relative;border-right: 1px solid #EFEFEF;border-bottom: 1px solid #EFEFEF;}
.service-benefits .benefit-item::before {content: '';padding-bottom: 85%;display: block;}
.service-benefits .benefit-item .content {position: absolute;width: 85%;height: auto;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align: center;}
.service-benefits .benefit-item .content .title {font-size: 25px;font-weight: 700;color: #3A83C5;margin: 0 auto 15px auto;line-height: 27px;display: block;width: 75%;}
.service-benefits .benefit-item .content p {margin: 0;}

.clients-section {display: flex;flex-direction: row;flex-wrap: wrap;align-items: center;}
.clients-section .client-item {position: relative;border-right: 1px solid #EFEFEF;border-bottom: 1px solid #EFEFEF;}
.clients-section .client-item::before {content: '';padding-bottom: 85%;display: block;}
/* .clients-section .client-item .content {position: absolute;top: 0;right: 0;bottom: 0;left: 0;width: 100%;height: 100%;filter: grayscale(1);transition: .3s all ease-in-out;display: flex;justify-content: center;align-items: center;} */
.clients-section .client-item .content {position: absolute;top: 0;right: 0;bottom: 0;left: 0;width: 100%;height: 100%;transition: .3s all ease-in-out;display: flex;justify-content: center;align-items: center;}
.clients-section .client-item:hover .content {filter: grayscale(0);transition: .3s all ease-in-out;}
.clients-section .client-item .content img {width: 200px;height: fit-content;object-fit: contain;}

/* Case Study Page */
.case-study-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    line-height: 55px;
    font-weight: bold;
    font-style: normal;
    color: #fff;
    /* transition: font-size 1s ease; */
    text-align: center;
}

/* .case-study-title:hover {
    animation: enlargeFont 1s forwards;
}

.case-study-title:not(:hover) {
    animation: reduceFont 1s forwards;
} */

/* @keyframes enlargeFont {
    0% {
        font-size: 54px;
    }
    100% {
        font-size: 64px;
    }
} */

/* @keyframes reduceFont {
    0% {
        font-size: 64px;
    }
    100% {
        font-size: 54px;
    }
} */

/* Common classes */
.background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0);
    transition: background 1s ease;
}

.background-image:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.background-image:not(:hover)::after {
    background: rgba(0, 0, 0, 0);
}

@keyframes spinning-text {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (min-width: 1800px) {

}

@media (max-width: 1400px) {
    html[lang="ar"] .header .menu {display: none;}
    html[lang="ar"] .header .widgets .menu-trigger {display: block;margin: 0 15px 0 0;}

}

@media (max-width: 1200px) {
    /* Header & Footer */
    .header .menu li {margin: 0 20px;}
    .header .menu li:first-of-type {margin: 0 20px 0 0;}
    .header .menu li:last-of-type {margin: 0 0 0 20px;}

    footer .content {padding-top: 50px;padding-bottom: 50px;}
    footer .content .menus {width: 45%;}
    footer .content .addresses {width: 40%;}

    /* Homepage */
    .slider .content .container .row .col-12 .homepage-slider .swiper-slide span {font-size: 49px;line-height: 51px;}
    .about .big-title {font-size: 65px;line-height: 90px;}
    /* .services .services-list li {width: calc(50% - 8px);margin: 0 0 20px 0;} */
    .services .services-list li {width: calc(50% - 8px); height: unset; min-height: unset; margin: 0 0 20px 0;}
    /* */

    .subtitle-section h2 {font-size: 55px;line-height: 70px;}
}

@media (max-width: 1024px) {
    /* Homepage */
    .page-header h1 {font-size: 100px;line-height: 145px;line-height: 100px;}

    /* Header & Footer */
    footer .content {flex-direction: column;}
    footer .content .menus {width: 100%;}
    footer .content .addresses {width: 100%;display: flex;margin: 30px 0 0 0;flex-direction: row;justify-content: space-between;align-items: flex-start;}
    footer .content .addresses li {margin: 0;width: 40%;}
}

@media (max-width: 992px) {
    /* Header & Footer */
    .header .wrapper {padding-top: 25px;}
    .header .wrapper .logo {height: 50px;}
    .header .widgets a {padding: 12px 24px;}

    /* Homepage */
    .slider .content .container .row .col-12 .homepage-slider .swiper-slide span {font-size: 39px;line-height: 45px;}
    .about .big-title {font-size: 55px;line-height: 80px;}
    .services .services-list li {width: 100%;min-height: unset;}

    html[lang="en"] .header .menu {display: none;}
    html[lang="en"] .header .widgets .menu-trigger {display: block;}

    /* Shared Components */
    .form-paddings {padding-left: 0;}
}

@media (max-width: 769px) {
    /* Header & Footer */
    footer .content .addresses {flex-direction: column;}
    footer .content .addresses li {width: 100%;margin: 0 0 35px 0;}

    /* Homepage */
    .slider .content .container .row .col-12 .homepage-slider .swiper-slide span {width: 100%;}
    /* .slider .content .container .row .col-12 .homepage-slider .swiper-pagination {width: fit-content;} */
    .slider .content .container .row .col-12 .homepage-slider .swiper-button-next {width: 70px;top: unset;bottom: 70px;transform: translateY(50%);}

    .about .small-title {font-size: 16px;margin: 0 0 30px 0;}
    .about .big-title {font-size: 45px;line-height: 70px;}
    .about, .services {padding: 80px 0;}
    .services h3 {font-size: 30px;}
    .contact-form h3, .action-section h3 {font-size: 45px;}
    .clients .clients-slider .swiper-slide img {width: 100px;height: 100px;}

    /* .page-header h1 {width: 50%;} */
    /* .page-header h1 {font-size: 60px;line-height: 105px;line-height: 60px;} */
    .page-header h1 {font-size: 60px;line-height: 105px;line-height: 60px;}

    .intro-text, .action-section {padding: 80px 0;}
    .vision-promise {height: auto;}
    .vision-promise .element-col {padding-top: 80px;padding-bottom: 80px;}

    .subtitle-section h2 {font-size: 45px;line-height: 60px;}
    .clients-section .client-item .content img {width: 150px;}
}

@media (max-width: 567px) {
    /* Header & Footer */
    footer {padding: 50px 0;}
    footer .content .menus {flex-direction: column-reverse;}
    footer .content .menus ul:last-of-type {margin: 0 0 30px 0;}
    footer .content .menus ul:first-of-type, footer .content .menus ul:last-of-type {width: unset}

    .about .big-title {font-size: 35px;line-height: 60px;}
    .about .btn-wrapper {margin: 25px 0 0 auto;}
    .contact-form h3, .action-section h3 {font-size: 40px;}

    .subtitle-section h2 {font-size: 35px;line-height: 50px;}
    .clients-section, .service-benefits {display: block;}
    .clients-section .client-item, .service-benefits .benefit-item {border-right: none;}
    .service-benefits .benefit-item .content .title {width: 85%;}
    .clients-section .client-item::before {padding-bottom: 65%;}
}

@media (max-width: 420px) {
    /* Homepage */
    .slider .content .container .row .col-12 .homepage-slider .swiper-slide span {font-size: 30px;line-height: 40px;}
    .about .big-title {font-size: 30px;line-height: 55px;}
    .services h3 {font-size: 25px;}
    .contact-form h3, .action-section h3 {width: 95%;font-size: 35px;}
    .vision-promise .element-col .content {width: 95%;}

    /* .page-header h1 {width: 100%;font-size: 20px;} */
    .page-header h1 {width: 100%;font-size: 20px;}
    .intro-text .mx-auto {font-size: 16px;line-height: 26px;}

    /* Case Study Page */
    .case-study-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 44px;
        line-height: 45px;
        font-weight: bold;
        font-style: normal;
        color: #fff;
    }

    .case-study-title:hover {
        font-family: 'Montserrat', sans-serif;
        /* font-size: 54px;
        line-height: 55px; */
        font-size: 44px;
        line-height: 45px;
        font-weight: bold;
        font-style: normal;
        color: #fff;
}
}

@media (max-width: 350px) {
    .services .services-list li .content .title {width: 100%;height: unset;}
    .services .services-list li .content p {height: unset;}
}

/* Social Media Section */
.social-info-section {
    background: #fff;
    max-width: 1450px;
    height: 271px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.social-info-section-content-container, .social-info-section-content-container-ar {
    display: flex;
    width: 100%;
}

.social-info-section-content-container-ar {
    max-width: 1450px;
    align-items: center;
    direction: rtl;
}

.social-item {
    height: 271px;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px gray;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    line-height: 55px;
    font-weight: 500;
    color: #2C2C2C;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.social-item:hover {
    background: #c0c0c0;
    color: #fff;
    transition: .3s all ease-in-out;
}

/* Arabic social items - bigger size */
html[lang="ar"] .social-item {
    height: 271px;
    font-size: 44px;
    line-height: 65px;
}

@media (max-width: 1200px) {
    .social-info-section {
        height: unset;
        width: 100%;
    }
    
    .social-info-section-content-container, .social-info-section-content-container-ar {
        flex-wrap: wrap;
    }
    
    .social-item {
        height: 271px;
        width: 50%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    html[lang="ar"] .social-item {
        height: 271px;
        font-size: 40px;
    }
}

@media (max-width: 850px) {
    .social-item {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    html[lang="ar"] .social-item {
        height: 271px;
        font-size: 38px;
    }
}

html[lang="ar"] .page-header h1 {
    color: #fff !important;
    -webkit-text-stroke: none !important;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3) !important;
}