/*@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');*/
@font-face {
    font-family: 'Nunito';
    src: url('../../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../../fonts/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #17224D;
    --secondary-color: #F5F5F5;
    --bg-color: #FFFFFF;
    --text-color: #666666;
    --accent-color: #FED403;
    --white-color: #FFFFFF;
    --divider-color: #0D0D0D1A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --english-font: Nunito !important;
    --arabic-font: Tajawal !important;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--arabic-font), sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, span {
    font-family: var(--arabic-font), sans-serif !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    text-align: right !important;
    color: #17224D !important;
    transition: all .8s ease-in-out;
}

.dropdown-item:hover {
    color: var(--primary-color);
!important;
    background-color: #17224D;
    transition: all .3s ease-in-out;
}

.project-header-status {
    text-align: center !important;
    font-size: 16px !important;
}

.project-header-status:hover {
    color: #b7a453 !important;
}

.dropdown-menu {
    margin-right: -65px !important;
}

@media (max-width: 991px) {
    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
    }

    .dropdown-item {
        color: #000 !important;
        white-space: normal;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        margin-right: 0 !important;
    }
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-right: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    right: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(50%, -50%) rotate(45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: right;
    transform-origin: right;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

.row.no-gutters {
    margin-left: 0px;
    margin-right: 0px;
}

.row.no-gutters > * {
    padding-left: 0px;
    padding-right: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 5px;
    padding: 17px 20px 17px 57px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.btn-default:hover {
    color: var(--white-color);
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
    border-radius: 5px;
    transform: translateY(-50%) scaleX(-1);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
    background-color: var(--accent-color);
    background-image: url('../images/arrow-primary.svg');
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    left: auto;
    right: 0;
    width: 100%;
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
    background-color: var(--primary-color);
    background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
    background-color: var(--white-color);
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 34px;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: 0px;
    height: 24px;
    width: 24px;
    background-color: var(--accent-color);
    border-radius: 100px;
    background-image: url('../../front/images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    transform: translateY(-50%) rotate(0deg);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 300px;
    position: relative;
    width: 300px;
    border-radius: 100%;
}

#loading-icon img {
    max-width: 200px;
    position: relative;
    right: 100%;

}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    right: 50%;
    max-width: 66px;
    transform: translate(50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.dark-section {
    background-color: var(--primary-color);
    background-image: url('../images/dark-section-bg-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-title-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-btn {
    text-align: center;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: right;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 26px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-right: 16px;
    margin-bottom: 10px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.section-title h1 {
    font-size: 52px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    text-align: justify;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: right;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transform: translateY(0);
    background: var(--primary-color);
}

.navbar {
    align-items: center;
    padding: 25px 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 100px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 10px;
    position: relative;
}

.main-menu ul li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 12px 10px !important;
    background: transparent;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-right: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: right;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    right: 100%;
    top: 0;
    text-align: right;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: '\f105';
    float: left;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--primary-color);
    padding: 6px 20px !important;
    transition: all 0.4s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--white-color);
    background-color: transparent;
    padding: 6px 23px 6px 20px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 30px 7px 20px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-right: 8px;
    color: var(--primary-color);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--white-color);
}

.about-us-image-box-2 .year-experience-circle .sec_fixed_img {
    width: 100%;
    max-width: 130px;
    border-radius: 50%;
    animation: none;
    place-items: center;
    z-index: 2;
    position: absolute;
}

.year-experience-circle .fixed_img {
    width: 100%;
    max-width: 130px;
    border-radius: 50%;
    animation: none;
    place-items: center;
    z-index: 2;
    position: absolute;

}

/* ==================================
striky navbar by mohamed fathy
=====================================*/
header.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    direction: rtl;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

/* Active state when scrolling */
header.main-header .header-sticky.active {
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/************************************/
/*** 	   05. About Us css 	  ***/
/************************************/
.about-us {
    direction: rtl;
}

.about-us-image-box {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.about-us-image-box-1 {
    width: 74%;
}

.about-us-image {
    height: 100%;
    border-radius: 10px;
}

.about-us-image figure {
    height: 100%;
    display: block;
    border-radius: 10px;
}

.about-us-image img {
    /*height: 100%;*/
    width: 100%;
    aspect-ratio: 1 / 1.3;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-image-box-2 {
    position: relative;
    width: 26%;
    z-index: 1;
}

.about-us-image-box-2 .about-us-image,
.about-us-image-box-2 .about-us-image figure,
.about-us-image-box-2 .about-us-image img {
    height: auto;
}

.about-us-image-box-2 .about-us-image {
    margin-top: 80px;
    margin-right: -150px;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.about-us-image-box-2 .about-us-image figure {
    border: 4px solid var(--white-color);
}

.about-us-image-box-2 .year-experience-circle {
    position: relative;
    display: inline-block;
    transform: translate(50%, -50%);
    border: 4px solid var(--white-color);
    border-radius: 50%;
    z-index: 1;
}

.about-us-image-box-2 .year-experience-circle .fixed-img {
    animation: none;
    z-index: 2;
    position: absolute;
}

/************************************/
/*** 	06. Our Servicves css 	  ***/
/************************************/
.our-services {
    background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
    background-position: top left;
    background-size: auto;
    padding: 20px 0;
    /* direction: rtl; */
    padding-bottom: 0px;
}

.our-services .row {
    display: flex;
    flex-direction: row-reverse;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    background: var(--white-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
    box-shadow: 0px 4px 20px 0px rgba(15, 39, 74, 0.20);
}

.service-item-header {
    padding: 15px;
}

.service-item-title {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 10px 20px;
    direction: rtl;
}

.service-item-title h2,
.service-item-title h3 {
    font-size: 16px;
    line-height: 1.4em;
    text-align: right;
}

.service-item-title h2 a {
    color: inherit;
}

.service-item-content {
    border-top: 1px solid var(--divider-color);
    margin-top: 15px;
    padding-top: 15px;
}

.service-item-content p {
    margin: 0;
    text-align: justify;
    direction: rtl;
}

.service-image-box {
    position: relative;
}

.service-item-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.service-item.active .service-item-image img,
.service-item:hover .service-item-image img {
    transform: scale(1.08);
}

.service-item-btn {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scale(0);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.service-item.active .service-item-btn,
.service-item:hover .service-item-btn {
    opacity: 1;
    transform: translate(50%, -50%) scale(1);
}

.service-item-btn a {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-item-btn a:hover {
    background: var(--white-color);
}

.service-item-btn a img {
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
    transform: rotate(45deg);
}

.service-item-btn a:hover img {
    transform: rotate(0);
}

.service-benefit-box {
    margin-top: 30px;
}

.service-benefit-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 25px;
    max-width: 900px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.service-benefit-list ul li {
    position: relative;
    background: var(--white-color);
    font-size: 16px;
    line-height: 1.5em;
    color: var(--primary-color);
    padding: 10px 32px 10px 16px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.service-benefit-list ul li:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.service-benefit-list ul li::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-footer-text p span {
    font-size: 14px;
    font-weight: 500;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.section-footer-text p a {
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.section-footer-text ul {
    width: 100%;
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.section-footer-text ul li {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
    margin-left: 5px;
}

.section-footer-text ul li:last-child {
    margin: 0;
}

.section-footer-text ul li i {
    color: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
    color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}

.section-footer-text.section-footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.section-footer-text.section-footer-contact span img {
    max-width: 14px;
}

.section-footer-text.section-satisfy-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img ul {
    margin: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
    border-color: var(--white-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
    max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
    width: 32px;
    height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
    max-width: 16px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more i {
    font-size: 16px;
}

/************************************/
/*** 	   08. Our Story css 	  ***/
/************************************/

.our-story {
    position: relative;
    background-image: url('../images/our-story-bg-image.jpg');
    padding: 100px 0;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(23, 34, 77, 0.53);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-story .container {
    position: relative;
    z-index: 1;
}

.our-story-content {
    max-width: 990px;
    text-align: center;
    margin: 0 auto;
}

.our-story-content .section-title {
    margin-bottom: 0;
}

/************************************/
/*** 	 11. Our Projects css 	  ***/
/************************************/
.our-projects .section-row .section-title {
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    text-align: center;
}

.project-nav {
    text-align: center;
    margin-bottom: 60px;
}

.project-nav ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 50px;
    padding: 0;
    margin: 0;
}

.project-nav ul li a {
    position: relative;
    font-size: 18px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.project-nav ul li a:before {
    content: '';
    position: absolute;
    top: 9px;
    left: -28px;
    background-color: var(--divider-color);
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

.project-nav ul li:last-child a:before {
    display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover {
    color: var(--accent-color);
}

.project-item {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.project-item-image a,
.project-item-image figure {
    position: relative;
    display: block;
    cursor: none;
}

.project-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-180deg, rgba(13, 13, 13, 0.00) 37.36%, var(--primary-color) 87.69%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1.128;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.project-item:hover .project-item-image img {
    transform: scale(1.08);
}

.project-item-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1;
}

.project-item-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

.project-item-content h2 a {
    color: inherit;
}

.project-item-content p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.project-item-btn {
    position: absolute;
    top: 40px;
    left: 40px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-item-btn {
    opacity: 1;
    transform: scale(1);
}

.project-item-btn a {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover {
    background: var(--accent-color);
}

.project-item-btn a img {
    width: 100%;
    max-width: 24px;
    transform: rotate(140deg);
    transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover img {
    filter: brightness(0) invert(0);
}

.project-item-btn a:hover img {
    transform: rotate(180deg);
}

/************************************/
/*** 		12. CTA Box css		  ***/
/************************************/

.cta-box {
    position: relative;
    background-image: url('../images/cta-box-bg-img.jpg');
    padding: 150px 0;
    overflow: hidden;
    direction: rtl;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(23, 34, 77, 0.53);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-box .container {
    position: relative;
    z-index: 1;
}

.cta-box-content {
    margin-left: 4.167vw;
}

.cta-box-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
}

.cta-box-item {
    width: calc(50% - 20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cta-box-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-box-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.cta-box-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.cta-box-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.cta-box-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.cta-box-item-content {
    width: calc(100% - 80px);
}

.cta-box-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.cta-box-btn {
    margin-top: 60px;
}

.cta-box-image {
    text-align: center;
    margin-top: -150px;
}

.cta-box-image figure {
    display: block;
}

.cta-box-image figure img {
    width: 100%;
    max-width: 165px;
}

/*===================================
    pagination
=====================================*/
.active > .page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #17224d;
    border-color: #fed403;
}

.page-link {
    color: #17224d;
}

.page-link:hover {
    color: #17224d;
    background-color: #fed403;
}

/************************************/
/***   14. Our Testimonials css	  ***/
/************************************/
.our-testimonials {
    background: var(--secondary-color) url('../images/testimonial-image-bg.png') no-repeat;
    background-position: bottom right;
    background-size: auto;
    padding: 50px 0;
    direction: rtl;
}

.our-testimonial-content {
    position: sticky;
    top: 20px;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    background-color: var(--white-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 10px;
    box-shadow: 3px 3px 5px 3px rgba(15, 39, 74, 0.20);
}

.testimonial-company-logo img {
    width: 100%;
    max-width: 70px;
}

.testimonial-item-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: justify;
}

.testimonial-author-content {
    border-top: 1px solid var(--divider-color);
    margin-top: 15px;
    padding-top: 15px;
}

.testimonial-author-content h3 {
    font-size: 16px;
}

.testimonial-author-content p {
    margin: 5px 0 0 0;
}

.testimonial-slider .testimonial-pagination {
    text-align: center;
    display: flex;
    margin-top: 40px;
    padding-bottom: 2px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 3px;
    width: 100%;
    background: var(--divider-color);
    border-radius: 0;
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    right: auto;
    left: 0;
    background: var(--accent-color);
    border-radius: 0;
    width: 0;
    height: 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 100%;
    left: auto;
    right: 0;
}

/************************************/
/*** 	   15. Latest News 	  ***/
/************************************/
.post-item {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.post-featured-image a,
.post-featured-image figure {
    position: relative;
    display: block;
    cursor: none;
}

.post-featured-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(12, 14, 26, 0.4);
    opacity: 40%;
    z-index: 1;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 1.064;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.08);
}

.post-item-tags {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}

.post-item-tags a {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
    background: rgba(254, 212, 3, 0.2);
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 5px;
    padding: 5px 14px;
    transition: all 0.4s ease-in-out;
}

.post-item-tags a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.post-item-body {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px;
    z-index: 1;
    color: var(--white-color);
    background: rgba(82, 69, 2, 0.1);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    padding: 20px;
    border-radius: 10px;
}

.post-content-box {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.post-item-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-item-meta ul li {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
    text-align: right;
}

.post-item-content h2 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
    text-align: right;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-btn a {
    color: var(--white-color);
}

.post-item-btn {
    text-align: right;
}

/* =================================
    what's app icon by Mohamed Fathy
=====================================*/
.whatsapp-button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    animation: effect 3s infinite ease-in;
}

@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10% {
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/************************************/
/*** 	   16. Footer css   	  ***/
/************************************/

.main-footer {
    position: relative;
    background-image: url('../images/footer-bg-image.jpg');
    overflow: hidden;
}

.main-footer::before,
.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
}

.main-footer::before {
    background: var(--primary-color);
    opacity: 85%;
}

.main-footer::after {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-scrolling-ticker {
    position: relative;
    background: var(--accent-color);
    padding: 25px 0;
    z-index: 1;
}

.scrolling-ticker-box {
    --gap: 20px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 80s linear infinite;
}

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2em;
    color: var(--primary-color);
    text-transform: capitalize;
}

.scrolling-content span img {
    width: 100%;
    max-width: 30px;
    margin-left: 20px;
    animation: sparkelotate 3s linear infinite;
}

@keyframes sparkelotate {
    0% {
        transform: rotate(0) scale(1);
    }
    50% {
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * (-100% - var(--gap))));
    }
}

.footer-box {
    position: relative;
    padding: 100px 0 0;
    z-index: 1;
    direction: rtl;
}

.about-footer {
    max-width: 380px;
}

.footer-logo img {
    width: 100%;
    max-width: 192px;
}

.footer-working-hours {
    border-top: 1px solid var(--dark-divider-color);
}

.footer-working-hours h3 {
    font-size: 20px;
    color: var(--white-color);
}

.footer-working-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-working-hours ul li {
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.4em;
}

.footer-working-hours ul li:last-child {
    margin-bottom: 0;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 30px;
}

.footer-links h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p {
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p:last-child {
    margin-bottom: 0;
}

.footer-location-info {
    max-width: calc(26% - 20px);
}

.footer-contact-links {
    max-width: calc(34% - 20px);
}

.footer-contact-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-links ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-divider-color);
}

.footer-contact-links ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.footer-contact-links ul li img {
    width: 100%;
    max-width: 30px;
    margin-left: 10px;
}

.footer-contact-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-links ul li a:hover {
    color: var(--accent-color);
}

.footer-newsletter-form {
    max-width: calc(40% - 20px);
}

.footer-newsletter-form .form-group {
    display: flex;
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
    opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn i {
    font-size: 20px;
    color: var(--primary-color);
    margin-left: 2px;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
    transform: rotate(-45deg);
}

.footer-social-links {
    width: 70%;
    /* width: 700px; */
    padding-top: 40px;
    border-top: 1px solid var(--dark-divider-color);
}

.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    line-height: normal;
    background: var(--dark-divider-color);
    backdrop-filter: blur(180px);
    -webkit-backdrop-filter: blur(180px);
    border-radius: 10px;
    padding: 10px 16px;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-links ul li a i {
    font-size: 20px;
    line-height: normal;
    color: inherit;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    /* border-top: 1px solid var(--dark-divider-color); */
    /* padding: 40px 0 60px; */
    padding: 20px 0 20px;
    /* margin-top: 60px; */
    /* flex-direction: column; */
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.5em;
}

.footer-menu ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
    color: var(--accent-color);
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}


/* -------------------------------------------------------------
    copyright section
--------------------------------------------------------------*/

.copyright-marawan {
    background: var(--primary-color);
}

.copyright-marawan .container .row .col-sm-12 a {
    color: var(--accent-color) !important;
}

.copyright-marawan .container .row .col-sm-12 a:hover {
    color: #7088e3 !important;
    transition: all 0.8s ease-in-out;
}

.copy-right .container-copyright p a:hover {
    color: var(--yellow);
    /* text-shadow: 0 0 3px #ffffff, 0 0 3px #ffffff; */
}

.copy-right .container-copyright p {
    color: var(--light);
    /* padding-bottom: 1rem; */
    font-size: 14px;
}

.site-footer__bottom {
    position: relative;
    display: block;
    background-color: var(--dark);
}


.site-footer-three_bottom-text {
    font-size: 16px;
}

.site-footer-three_bottom-inner {
    color: var(--dark);
    font-size: 16px;
    text-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff;
}

.copyright-marawan .container .row .col-sm-12 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.footer .copyright {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.copyright-dar-metal .col-md-12 {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.copyright-marawan p {
    margin-bottom: 0px;
    color: var(--bg-color);
}

/* ==========================================
    end of copy right section
============================================*/

/************************************/
/*** 	 17. About Us Page css 	  ***/
/************************************/

.page-header {
    position: relative;
    background: url('../../front/images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 275px 0 170px;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(58, 70, 115, 0.36);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 52px;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.our-values {
    padding: 100px 0;
}

.values-image-box {
    position: relative;
    height: 100%;
    padding: 30px 0 0 30px;
}

.values-image {
    height: 100%;
}

.values-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.values-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 10px;
}

.lets-together-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.lets-together-circle a {
    display: inline-block;
    border: 5px solid var(--white-color);
    border-radius: 50%;
}

.lets-together-circle a img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.lets-together-circle a:hover img {
    animation-play-state: paused;
}

.value-counter-box {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: var(--divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.value-counter-box .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-counter-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.value-counter-box:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.value-counter-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.value-counter-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.value-counter-box-content {
    width: calc(100% - 75px);
}

.value-counter-box-content h2 {
    color: var(--white-color);
    font-size: 52px;
    line-height: 1em;
}

.value-counter-box-content p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.our-values-content {
    margin-right: 15px;
}

.skills-progress-bar {
    margin-bottom: 40px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
    line-height: normal;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 100px;
}

.values-content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    padding-top: 50px;
    margin-top: 50px;
}

.values-item-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.values-author-image figure {
    display: block;
    border-radius: 50%;
}

.values-author-image img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.values-author-content h3 {
    font-size: 20px;
}

.values-author-content p {
    margin: 5px 0 0 0;
}

/************************************/
/*** 	 18. Services Page css 	  ***/
/************************************/
.page-services .service-item {
    background-color: var(--secondary-color);
}

.page-services .row {
    display: flex;
    flex-direction: row-reverse;
}

/************************************/
/*** 	19. Service Single css 	  ***/
/************************************/

.page-service-single {
    padding: 100px 0;
    direction: rtl;
}

.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-left: 20px;
}

.page-category-list {
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 60px;
    overflow: hidden;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.page-category-list h3 {
    font-size: 20px;
    background: var(--accent-color);
    line-height: normal;
    padding: 20px 30px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-category-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    padding-left: 30px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
    color: var(--primary-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
    transition: all 0.4s ease-in-out;
    transform: rotate(45deg);
}

.page-category-list ul li a:hover::before {
    transform: rotate(0);
}

.sidebar-cta-box {
    background: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.sidebar-cta-title {
    background: var(--primary-color);
    padding: 20px 40px;
}

.sidebar-cta-title h3 {
    font-size: 20px;
    line-height: normal;
    color: var(--white-color);
}

.sidebar-cta-body {
    padding: 40px;
}

.sidebar-cta-body-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-cta-body-content ul li {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--primary-color);
    align-items: center;
    margin-bottom: 25px;
}

.sidebar-cta-body-content ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-body-content ul li img {
    width: 100%;
    max-width: 30px;
    margin-left: 15px;
}

.sidebar-cta-body-content ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-body-content ul li a:hover {
    color: var(--white-color);
}

.sidebar-cta-body-image {
    margin-top: 50px;
    text-align: right;
}

.sidebar-cta-body-image figure {
    display: block;
    margin: 0 0 -40px -40px;
}

.sidebar-cta-body-image img {
    width: 100%;
    max-width: 240px;
}

.page-single-image {
    margin-bottom: 30px;
}

.page-single-image figure {
    display: block;
    border-radius: 10px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.568;
    object-fit: cover;
    border-radius: 10px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.service-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-right: 16px;
}

.service-entry ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.service-why-choose-box,
.service-offer-box,
.service-process-box {
    margin-top: 60px;
}

.service-why-choose-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-why-choose-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 15px);
    gap: 20px;
}

.service-why-choose-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-why-choose-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.service-why-choose-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-why-choose-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-why-choose-item-content {
    width: calc(100% - 80px);
}

.service-offer-list {
    margin-top: 40px;
}

.service-offer-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-offer-item {
    position: relative;
    width: calc(50% - 15px);
}

.service-offer-item-image figure {
    display: block;
    border-radius: 10px;
}

.service-offer-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0.00) 60.52%, rgba(0, 0, 0, 0.80) 88.79%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-offer-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 10px;
}

.service-offer-item-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    z-index: 1;
}

.service-offer-item-content h3,
.service-offer-item-content p {
    color: var(--white-color);
}

.service-process-box {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
}

.service-process-image-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-process-content,
.service-process-image {
    width: calc(50% - 15px);
}

.service-process-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.service-process-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-process-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-process-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-process-item:hover .icon-box::before {
    border-radius: 0%;
    transform: rotate(0) scale(1);
}

.service-process-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-process-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-process-item-content {
    width: calc(100% - 80px);
}

.service-process-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.service-process-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 10px;
}

/************************************/
/*** 	 20. Blog Archive css 	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-blog .row {
    display: flex;
    flex-direction: row-reverse;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}

/************************************/
/*** 	21. Blog Single css 	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
    direction: rtl;
}

.post-single-meta {
    margin-top: 5px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-left: 15px;
}

.post-single-meta ol li:last-child {
    margin-left: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-left: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 10px;
}

.post-content {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.tag-links {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing {
    text-align: left;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-left: 10px;
}

.post-social-sharing ul li:last-child {
    margin-left: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 22. Projects Page css 	  ***/
/************************************/

.page-projects {
    padding: 100px 0 70px;
}

/************************************/
/*** 	23. Project Single css 	  ***/
/************************************/

.page-project-single {
    padding: 100px 0;
    direction: rtl;
}

.project-title {
    font-weight: bold;
}

.project-category-item-list {
    padding: 20px;
}

.project-category-item {
    border-bottom: 1px solid var(--divider-color);
    margin-top: 20px;
}

.project-category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-category-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-category-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.project-category-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 16px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-category-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.project-category-item-content h4 {
    font-size: 16px;
    line-height: normal;
}

.project-category-item-content p {
    margin-bottom: 0;
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
    text-align: justify;
}

.project-entry h2 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.project-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
    margin-bottom: 0;
}

.project-features-box,
.project-process-box,
.project-issue-box {
    margin-top: 60px;
}

.project-feature-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-feature-item {
    width: calc(33.33% - 20px);
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.project-feature-item-body .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.project-feature-item-body .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-feature-item:hover .project-feature-item-body .icon-box::before {
    transform: rotate(0) scale(1);
}

.project-feature-item-body .icon-box img {
    position: relative;
    width: 100%;
    max-width: 25px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-feature-item:hover .project-feature-item-body .icon-box img {
    filter: brightness(0) invert(1);
}

.project-feature-item-image {
    margin: 0 -30px -30px;
}

.project-feature-item-image figure {
    mask-image: url('../images/project-feature-image-shape.svg');
    background-image: url('../images/project-feature-image-shape.svg');
    display: block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.project-feature-item-image img {
    width: 100%;
    object-fit: cover;
}

.project-features-box .section-footer-text {
    margin-top: 60px;
}

.project-process-item-list {
    margin-top: 40px;
}

.project-process-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.project-process-item:last-child {
    margin-bottom: 0;
}

.project-process-item-no {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-process-item-no::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-process-item:hover .project-process-item-no::before {
    transform: rotate(0) scale(1);
}

.project-process-item-no h4 {
    position: relative;
    font-size: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-process-item:hover .project-process-item-no h4 {
    color: var(--white-color);
}

.project-process-item-content {
    width: calc(100% - 80px);
}

.project-issue-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    margin-top: 40px;
}

.project-issue-box-item {
    position: relative;
    width: calc(50% - 30px);
}

.project-issue-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.project-issue-box-item:nth-child(2n + 2):before,
.project-issue-box-item:last-child:before {
    display: none;
}

.project-issue-box-title {
    margin-bottom: 30px;
}

.project-issue-item {
    margin-bottom: 25px;
}

.project-issue-item:last-child {
    margin-bottom: 0;
}

.project-issue-item h4 {
    position: relative;
    font-size: 16px;
    line-height: normal;
    padding-right: 25px;
    margin-bottom: 10px;
}

.project-issue-item h4::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 3px;
    right: 0;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
    padding: 100px 0;
    direction: rtl;
}

.contact-info-list {
    max-width: 510px;
}

.contact-info-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.contact-info-item:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.contact-info-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    overflow: hidden;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

.contact-info-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(-180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-info-item-content {
    width: calc(100% - 80px);
}

.contact-info-item-content h3 {
    font-size: 20px;
}

.contact-info-item-content p {
    margin: 10px 0 0;
}

.contact-info-item-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
    color: var(--accent-color);
}

.contact-us-form {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 3.125vw;
    margin-right: 30px;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}


.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125em;
    color: var(--text-color);
    background: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 21px 20px;
    /* box-shadow: none; */
    outline: none;
    box-shadow: 1px 1px 9px 1px rgba(15, 39, 74, 0.20);
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.google-map {
    direction: rtl;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 700px;
    border-radius: 5px;
    box-shadow: 3px 4px 20px 3px rgba(15, 39, 74, 0.20);
}

/************************************/
/***   32. 404 Error Page css	  ***/
/************************************/

.error-page {
    padding: 100px 0px;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 830px;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px) {

    .container {
        max-width: 1300px;
    }

    .hero-info-content-box {
        padding: 10px;
    }

    .hero-info-item.box-3 {
        padding: 30px;
    }

    .about-us-body {
        padding: 25px 20px 25px 30px;
    }

    .about-us-footer {
        gap: 20px;
    }

    .about-us-footer-content {
        width: calc(56% - 10px);
    }

    .about-footer-content-list ul li {
        margin-bottom: 15px;
    }

    .about-us-video-box {
        width: calc(44% - 10px);
    }

    .service-item-header {
        padding: 5px;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        margin-bottom: 30px;
    }

    .our-story {
        padding: 150px 0;
    }

    .watch-video-circle {
        margin-top: 150px;
    }

    .feature-item {
        padding: 30px;
    }

    .feature-item-info-content h3 {
        font-size: 26px;
    }

    .feature-item-image figure {
        margin: 0 -100px -30px -30px;
    }

    .pricing-item-header {
        padding: 20px;
    }

    .pricing-item-body {
        padding: 30px 10px 10px;
    }

    .cta-box {
        padding: 100px 0;
    }

    .cta-box-image {
        margin-top: -100px;
    }

    .cta-box-image figure img {
        max-width: 150px;
    }

    .faq-accordion {
        padding: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 30px;
    }

    .testimonial-item-content p {
        font-size: 18px;
    }

    .post-item-tags {
        top: 30px;
        right: 30px;
    }

    .post-item-body {
        left: 30px;
        bottom: 30px;
        right: 30px;
    }

    .approach-item {
        padding: 30px;
    }

    .approach-item .icon-box img {
        max-width: 100px;
    }

    .approach-item-image {
        margin-bottom: 60px;
    }

    .value-counter-box {
        padding: 20px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 15px;
    }

    .values-content-footer {
        padding-top: 40px;
        margin-top: 40px;
    }

    .page-category-list h3,
    .page-category-list ul {
        padding: 20px;
    }

    .sidebar-cta-title {
        padding: 20px;
    }

    .sidebar-cta-body {
        padding: 30px;
    }

    .sidebar-cta-body-image figure {
        margin: 0 0 -30px -30px;
    }

    .post-content {
        max-width: 1100px;
    }

    .project-category-item-list {
        padding: 20px;
    }

    .project-feature-item {
        padding: 20px;
    }

    .project-feature-item-image {
        margin: 0 -20px -20px;
    }

    .team-experience-item-list {
        gap: 20px;
    }

    .team-experience-item {
        width: calc(50% - 10px);
        padding: 12px;
        gap: 10px;
    }

    .team-experience-item-content {
        width: calc(100% - 50px);
    }

    .team-skills-box,
    .team-values-info {
        width: 100%;
    }

    .team-values-info-list ul li {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1024px) {

    .main-menu ul li {
        margin: 0px;
    }

    .hero-info-item {
        width: calc(50% - 15px);
    }

    .hero-info-item.box-1 {
        width: 100%;
    }

    .about-us-image-box {
        height: auto;
        margin: 0 0 30px;
    }

    .about-us-image,
    .about-us-image figure,
    .about-us-image img {
        height: auto;
    }

    .about-us-image-box-1 .about-us-image img {
        aspect-ratio: 1 / 1.02;
    }

    .about-us-image-box-2 .about-us-image img {
        aspect-ratio: 1 / 1.05;
    }

    .about-video-image img {
        aspect-ratio: 1 / 0.5;
    }

    .what-we-do-content {
        margin-bottom: 30px;
    }

    .what-we-do-image {
        max-width: 540px;
        margin: 0 auto;
    }

    .watch-video-circle {
        margin-top: 100px;
    }

    .feature-item {
        gap: 30px;
    }

    .feature-item-shape-image figure {
        width: 170px;
        height: 85px;
    }

    .our-faqs-content {
        height: auto;
        padding: 0;
        margin-bottom: 30px;
    }

    .our-testimonials {
        background-size: 400px auto;
    }

    .our-testimonial-content {
        position: initial;
        margin-bottom: 40px;
    }

    .testimonial-author-content {
        margin-top: 20px;
        padding-top: 15px;
    }

    .about-footer {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-links-box {
        gap: 30px;
    }

    .footer-social-links {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .values-image-box {
        margin: 0 0 30px 0;
        height: auto;
    }

    .values-image {
        height: auto;
    }

    .values-image img {
        height: auto;
        aspect-ratio: 1 / 0.7;
    }

    .our-values-content {
        margin-right: 0;
    }

    .team-item-image img {
        aspect-ratio: 1 / 1.15;
    }

    .team-item-content {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }

    .page-single-sidebar {
        margin: 0;
    }

    .page-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .sidebar-cta-body {
        padding: 20px;
    }

    .sidebar-cta-body-content ul li {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .sidebar-cta-body-content ul li img {
        max-width: 24px;
        margin-left: 10px;
    }

    .sidebar-cta-body-image figure {
        margin: 0 0 -20px -20px;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-why-choose-box,
    .service-offer-box,
    .service-process-box {
        margin-top: 40px;
    }

    .service-why-choose-item-list {
        margin-top: 30px;
        gap: 30px 20px;
    }

    .service-why-choose-item {
        width: calc(50% - 10px);
        gap: 15px;
    }

    .service-why-choose-item .icon-box {
        width: 45px;
        height: 45px;
    }

    .service-why-choose-item .icon-box img {
        max-width: 24px;
    }

    .service-why-choose-item-content {
        width: calc(100% - 60px);
    }

    .service-offer-item-list {
        margin-top: 30px;
    }

    .service-offer-item-image img {
        aspect-ratio: 1 / 0.95;
    }

    .service-offer-item-content {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .service-process-box {
        padding: 30px;
    }

    .service-process-image-content {
        margin-top: 30px;
    }

    .service-process-content,
    .service-process-image {
        width: 100%;
    }

    .service-process-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .project-category-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .project-category-item-content h4 {
        width: 100%;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-features-box,
    .project-process-box,
    .project-issue-box {
        margin-top: 40px;
    }

    .project-feature-item-list {
        margin-top: 30px;
    }

    .project-feature-item {
        width: calc(50% - 15px);
        gap: 30px;
    }

    .project-feature-item-body .icon-box {
        margin-bottom: 20px;
    }

    .project-features-box .section-footer-text {
        margin-top: 30px;
    }

    .project-process-item-list {
        margin-top: 30px;
    }

    .project-process-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .project-issue-boxes {
        margin-top: 30px;
    }

    .team-sidebar-body,
    .team-sidebar-footer {
        padding: 20px;
    }

    .team-sidebar-body ul li span {
        width: 34%;
    }

    .team-member-about, .team-experience-box, .team-member-info-box {
        margin-bottom: 60px;
    }

    .team-member-about,
    .team-experience-box,
    .team-member-info-box {
        margin-bottom: 40px;
    }

    .team-member-info-box {
        gap: 40px;
    }

    .contact-us-content {
        margin-bottom: 30px;
    }

    .contact-info-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-us-form {
        margin-right: 0;
        padding: 35px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 550px;
    }
}

@media only screen and (max-width: 991px) {

    .btn-default {
        font-size: 16px;
        padding: 15px 16px 15px 51px;
    }

    .btn-default::before {
        width: 36px;
        height: 36px;
        left: 5px;
        background-size: 18px auto;
    }

    header.main-header {
        top: 0;
    }

    header.main-header .header-sticky.active {
        border-radius: 0;
    }

    .navbar {
        padding: 20px 0;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 40px;
    }

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

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: right;
        margin-top: 15px;
    }

    .hero {
        padding: 140px 0 150px;
    }

    .year-experience-circle img {
        max-width: 100px;
    }

    .year-experience-circle .fixed_img {
        max-width: 100px;
    }

    .hero-info-box {
        margin-top: -100px;
    }

    .hero-info-item.box-3 {
        padding: 20px;
    }

    .hero-info-header .icon-box {
        width: 50px;
        height: 50px;
    }

    .hero-info-header .icon-box img {
        max-width: 24px;
    }

    .hero-info-counter-box h2 {
        font-size: 40px;
    }

    .hero-info-bg-icon img {
        max-width: 80px;
    }

    .about-body-item {
        gap: 15px;
    }

    .about-body-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .about-body-item .icon-box img {
        max-width: 24px;
    }

    .about-body-item-content {
        width: calc(100% - 65px);
    }

    .about-us-footer {
        margin-top: 30px;
    }

    .about-footer-content-list ul li {
        margin-bottom: 10px;
    }

    .our-services {
        background-size: 250px auto;
    }

    .service-item {
        gap: 15px;
    }

    .service-benefit-box {
        margin-top: 10px;
    }

    .service-benefit-list ul {
        gap: 15px;
    }

    .service-benefit-list ul li {
        padding: 6px 30px 6px 14px;
    }

    .service-benefit-list ul li::before {
        right: 14px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .section-footer-text ul li {
        font-size: 18px;
    }

    .service-benefit-box .section-footer-text {
        margin-top: 20px;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        height: 50px;
        width: 50px;
    }

    .what-we-do-item .icon-box img {
        max-width: 24px;
    }

    .what-we-do-btn {
        margin-top: 30px;
    }

    .what-we-do .section-footer-text {
        margin-top: 40px;
    }

    .our-story {
        padding: 100px 0;
    }

    .watch-video-circle a img {
        max-width: 120px;
    }

    .our-features {
        padding: 50px 0;
    }

    .our-features .section-title h2 .feature-title-img-1 {
        width: 30px;
        height: 30px;
    }

    .our-features .section-title h2 .feature-title-img-1 img {
        max-width: 14px;
    }

    .our-features .section-title h2 .feature-title-img-2 img {
        max-width: 30px;
    }

    .our-features .section-title h2 .feature-title-img-3 img {
        max-width: 30px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item-list ul li {
        margin-bottom: 10px;
    }

    .feature-item-btn {
        margin-top: 30px;
    }

    .feature-item-image figure {
        margin: 0 -100px -20px -20px;
    }

    .feature-item-content h2 {
        font-size: 42px;
    }

    .our-pricing {
        padding: 50px 0;
    }

    .pricing-item,
    .pricing-item-header {
        padding: 15px;
    }

    .pricing-item-header .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 20px;
    }

    .pricing-item-header .icon-box img {
        max-width: 24px;
    }

    .pricing-item-content p {
        margin-bottom: 10px;
    }

    .pricing-item-content h2 {
        font-size: 36px;
    }

    .pricing-item-content h2 sub {
        font-size: 18px;
    }

    .pricing-item-body {
        padding: 30px 5px 5px;
    }

    .pricing-item-list ul li {
        margin-bottom: 10px;
    }

    .pricing-item.highlighted-box .pricing-item-header::before {
        top: 15px;
        left: 15px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .pricing-benefit-list {
        margin-top: 10px;
    }

    .pricing-benefit-list ul {
        gap: 15px 30px;
    }

    .project-nav {
        margin-bottom: 40px;
    }

    .project-nav ul {
        gap: 10px 32px;
    }

    .project-nav ul li a:before {
        left: -20px;
    }

    .project-item-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .project-item-btn {
        top: 30px;
        left: 30px;
    }

    .project-item-btn a {
        width: 50px;
        height: 50px;
    }

    .project-item-btn a img {
        max-width: 20px;
    }

    .cta-box {
        padding: 50px 0;
    }

    .cta-box-content {
        margin-left: 0;
    }

    .cta-box-items-list {
        padding-top: 30px;
    }

    .cta-box-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .cta-box-item .icon-box img {
        max-width: 24px;
    }

    .cta-box-item-content {
        width: calc(100% - 70px);
    }

    .cta-box-btn {
        margin-top: 40px;
    }

    .cta-box-image {
        margin-top: -50px;
    }

    .cta-box-image figure img {
        max-width: 100px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .faq-accordion {
        padding: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        padding: 15px 20px 15px 44px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        left: 20px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px 20px;
    }

    .our-testimonials {
        padding: 50px 0;
    }

    .our-testimonial-content {
        margin-bottom: 30px;
    }

    .testimonial-company-logo img {
        width: 100%;
        max-width: 150px;
    }

    .testimonial-item-content p {
        font-size: 16px;
    }

    .testimonial-slider .testimonial-pagination {
        margin-top: 30px;
    }

    .post-item-tags {
        top: 20px;
        right: 20px;
    }

    .post-item-body {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .post-content-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-content span {
        font-size: 22px;
    }

    .footer-box {
        padding: 50px 0 0;
    }

    .footer-location-info,
    .footer-contact-links {
        max-width: 100%;
        width: calc(50% - 15px);
    }

    .footer-newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-social-links ul li a {
        padding: 8px 12px;
    }

    .footer-social-links ul li a i {
        font-size: 18px;
    }

    .footer-copyright {
        padding: 30px 0;
        margin-top: 30px;
    }

    .footer-menu ul {
        gap: 10px 25px;
    }

    .page-header {
        padding: 170px 0 80px;
    }

    .page-header-box h1 {
        font-size: 40px;
    }

    .our-approach {
        padding: 50px 0;
    }

    .approach-item {
        padding: 20px;
    }

    .approach-item .icon-box {
        top: -10px;
        left: -10px;
    }

    .approach-item .icon-box img {
        max-width: 70px;
    }

    .approach-item-image {
        margin-bottom: 30px;
    }

    .approach-item-content p {
        margin-top: 10px;
    }

    .approach-item-content ul {
        margin-top: 20px;
    }

    .approach-item-content ul li {
        margin-bottom: 10px;
    }

    .approach-item-list {
        padding-top: 30px;
        margin-top: 30px;
    }

    .our-values {
        padding: 50px 0;
    }

    .lets-together-circle img {
        max-width: 120px;
    }

    .value-counter-box {
        padding: 20px;
    }

    .value-counter-box .icon-box {
        width: 50px;
        height: 50px;
    }

    .value-counter-box .icon-box img {
        max-width: 24px;
    }

    .value-counter-box-content {
        width: calc(100% - 65px);
    }

    .value-counter-box-content h2 {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .our-team {
        padding: 50px 0;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin-bottom: 30px;
    }

    .page-category-list {
        margin-bottom: 30px;
    }

    .page-category-list h3,
    .sidebar-cta-title {
        padding: 15px 20px;
    }

    .sidebar-cta-body-image {
        margin-top: 20px;
    }

    .service-entry p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-process-item {
        gap: 15px;
    }

    .service-process-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .service-process-item .icon-box img {
        max-width: 24px;
    }

    .service-process-item-content {
        width: calc(100% - 65px);
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: right 20px top 20px;
        background-size: 40px;
        padding: 20px 70px 20px 20px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: right;
    }

    .page-projects {
        padding: 50px 0 20px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-entry h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-process-item {
        gap: 15px;
    }

    .project-process-item-no {
        width: 50px;
        height: 50px;
    }

    .project-process-item-no h4 {
        font-size: 24px;
    }

    .project-process-item-content {
        width: calc(100% - 65px);
    }

    .project-issue-box-title {
        margin-bottom: 20px;
    }

    .project-issue-item {
        margin-bottom: 15px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-sidebar-body ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-footer {
        padding: 15px 20px;
    }

    .page-pricing {
        padding: 50px 0;
    }

    .page-testimonials {
        padding: 50px 0 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-single-faqs {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 50px 0;
    }

    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .contact-info-item .icon-box img {
        max-width: 24px;
    }

    .contact-info-item-content {
        width: calc(100% - 70px);
    }

    .contact-form .form-control {
        padding: 15px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

    .error-page {
        padding: 50px 0px;
    }

    .error-page-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content-body {
        gap: 30px;
    }

    .video-play-button h3 {
        font-size: 16px;
    }

    .hero .year-experience-circle {
        display: none;
    }

    .hero-info-list {
        gap: 20px;
    }

    .hero-info-item {
        width: 100%;
    }

    .hero-info-item-content h3 {
        font-size: 18px;
    }

    .hero-info-header {
        margin-bottom: 30px;
    }

    .hero-info-counter-box h3 {
        font-size: 18px;
    }

    .hero-info-counter-box h2 {
        font-size: 28px;
    }

    .hero-info-bg-icon {
        bottom: -10px;
        left: -10px;
    }

    .hero-info-bg-icon img {
        max-width: 60px;
    }

    .about-us-image-box-1 .about-us-image img {
        aspect-ratio: 1 / 1.47;
    }

    .about-us-image-box-2 .about-us-image {
        margin-top: 40px;
        margin-right: -110px;
    }

    .about-us-body {
        gap: 20px;
        padding: 20px 15px;
        border-width: 5px;
    }

    .about-body-item {
        width: 100%;
    }

    .about-body-item-content h3 {
        font-size: 18px;
    }

    .about-body-item-content p {
        margin: 5px 0 0;
    }

    .about-us-footer-content {
        width: 100%;
    }

    .about-us-video-box {
        width: 100%;
    }

    .about-video-image img {
        aspect-ratio: 1 / 0.6;
    }

    .service-item-title h2,
    .service-item-title h3 {
        font-size: 18px;
    }

    .service-benefit-list ul li {
        padding: 4px 26px 4px 10px;
    }

    .service-benefit-list ul li::before {
        right: 10px;
    }

    .section-footer-text ul li {
        font-size: 16px;
    }

    .what-we-do-item-list {
        gap: 20px;
    }

    .what-we-do-item {
        width: 100%;
    }

    .our-story {
        padding: 50px 0;
    }

    .watch-video-circle {
        margin-top: 50px;
    }

    .watch-video-circle a img {
        max-width: 100px;
    }

    .feature-item-content h3 {
        font-size: 18px;
    }

    .feature-item-content h2 {
        font-size: 30px;
    }

    .feature-item-info-content p {
        margin-bottom: 5px;
    }

    .feature-item-info-content h3 {
        font-size: 20px;
    }

    .feature-item-btn {
        margin-top: 20px;
    }

    .feature-item-image figure {
        margin: 50px -50px -20px -20px;
    }

    .feature-item-image img {
        max-width: 200px;
    }

    .feature-item-tag-list ul li {
        padding: 3px 10px;
    }

    .pricing-item-content p,
    .pricing-item-list h3 {
        font-size: 18px;
    }

    .pricing-item-content h2 {
        font-size: 28px;
    }

    .pricing-item-content h2 sub {
        font-size: 16px;
    }

    .pricing-benefit-list ul {
        gap: 10px;
    }

    .pricing-benefit-list ul li {
        font-size: 14px;
    }

    .pricing-benefit-list ul li img {
        max-width: 16px;
        margin-left: 5px;
    }

    .project-nav {
        margin-bottom: 30px;
    }

    .project-nav ul {
        gap: 10px 20px;
    }

    .project-nav ul li a {
        font-size: 14px;
    }

    .project-nav ul li a:before {
        width: 6px;
        height: 6px;
        left: -14px;
        top: 7px;
    }

    .project-item-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .project-item-btn {
        top: 20px;
        left: 20px;
    }

    .cta-box-items-list {
        gap: 20px;
    }

    .cta-box-item {
        width: 100%;
    }

    .cta-box-btn {
        margin-top: 30px;
    }

    .cta-box-image {
        display: none;
    }

    .faq-accordion {
        padding: 20px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 12px 12px 36px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 18px;
        left: 10px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 12px;
    }

    .testimonial-author-content h3 {
        font-size: 16px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .scrolling-ticker-box {
        --gap: 15px;
    }

    .scrolling-content span {
        font-size: 20px;
    }

    .scrolling-content span img {
        max-width: 24px;
        margin-left: 15px;
    }

    .footer-location-info,
    .footer-contact-links {
        width: 100%;
    }

    .footer-contact-links ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .footer-social-links ul {
        gap: 15px;
    }

    .footer-social-links ul li a {
        font-size: 14px;
        gap: 6px;
        padding: 8px 10px;
    }

    .footer-social-links ul li a i {
        font-size: 16px;
    }

    .footer-copyright {
        justify-content: center;
        padding: 15px 0;
    }

    .footer-menu ul {
        gap: 10px 15px;
    }

    .page-header-box h1 {
        font-size: 28px;
    }

    .approach-item-list ul li {
        padding: 10px 12px;
    }

    .values-image-box {
        padding: 20px 0 0 20px;
    }

    .values-image img {
        aspect-ratio: 1 / 1.15;
    }

    .lets-together-circle a img {
        max-width: 90px;
    }

    .value-counter-box {
        padding: 15px;
    }

    .value-counter-box-content h2 {
        font-size: 28px;
    }

    .value-counter-box-content p {
        font-size: 14px;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .skills-progress-bar .skill-data .skill-title,
    .skills-progress-bar .skill-data .skill-no {
        font-size: 18px;
    }

    .values-content-footer {
        gap: 20px;
        padding-top: 30px;
        margin-top: 30px;
    }

    .values-item-author {
        gap: 10px;
    }

    .values-author-content h3 {
        font-size: 18px;
    }

    .sidebar-cta-body-content ul li {
        font-size: 16px;
    }

    .sidebar-cta-body-content ul li img {
        max-width: 20px;
    }

    .sidebar-cta-body-image img {
        max-width: 200px;
    }

    .page-single-image img {
        aspect-ratio: 1 / 0.65;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-entry ul {
        gap: 10px;
    }

    .service-entry ul li {
        width: 100%;
    }

    .service-why-choose-item {
        width: 100%;
    }

    .service-offer-item {
        width: 100%;
    }

    .service-process-image-content {
        gap: 20px;
    }

    .service-process-box {
        padding: 20px 15px;
    }

    .service-process-item .icon-box {
        width: 45px;
        height: 45px;
    }

    .service-process-item .icon-box img {
        max-width: 22px;
    }

    .service-process-item-content {
        width: calc(100% - 60px);
    }

    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: right 15px top 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .project-entry h2 {
        font-size: 28px;
    }

    .project-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .project-feature-item {
        width: 100%;
    }

    .project-process-item {
        padding: 15px;
    }

    .project-issue-box-item {
        width: 100%;
    }

    .project-issue-box-item::before {
        display: none;
    }

    .project-issue-item h4 {
        margin-bottom: 5px;
    }

    .team-experience-item {
        width: 100%;
    }

    .team-experience-item-content h3 {
        font-size: 18px;
    }

    .team-values-info-list ul li {
        gap: 5px;
    }

    .team-values-info-list ul li span {
        width: 100%;
    }

    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-us-form {
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}

.footer-links-gold {
    max-width: 35%;
}

.footer-links-gold h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-gold p {
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer-links-gold ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-gold ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--white-color);
    line-height: 1.5em;
    padding-right: 16px;
    margin-bottom: 15px;
}

.footer-links-gold ul li:last-child {
    margin-bottom: 0;
}

.footer-links-gold ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.footer-links-gold ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links-gold ul li a:hover {
    color: var(--accent-color);
}

@media only screen and (max-width: 1440px) {

    .hero-client-box-gold {
        width: 390px;
        padding: 30px 20px;
    }

    .hero-video-box-gold {
        right: 40px;
    }

    .about-body-items-list-gold {
        gap: 20px;
    }

    .about-us-body-item-gold {
        width: calc(33.33% - 13.33px);
    }

    .service-item-gold {
        min-height: 400px;
        padding: 30px 25px;
    }

    .what-we-counter-item-gold {
        padding: 20px;
    }

    .why-choose-item-body-gold {
        padding-right: 30px;
    }

    .why-choose-counter-list-gold {
        padding: 30px;
    }

    .feature-item-gold {
        min-height: 470px;
        padding: 30px 30px 0 30px;
    }

    .intro-video-box-gold {
        min-height: 600px;
    }

    .intro-video-counter-item-gold {
        padding: 30px 0;
    }

    .pricing-item-header-gold {
        padding: 25px 20px 30px 20px;
    }

    .pricing-item-list-gold {
        padding: 30px 25px;
    }

    .testimonial-item-gold {
        padding: 30px;
    }

    .about-footer-gold {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 1024px) {

    .about-us-images-gold {
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .what-we-item-image-gold figure img {
        aspect-ratio: 1 / 0.9;
    }

    .what-we-item-body-image-gold img {
        max-width: 130px;
    }

    .why-choose-us-content-gold {
        margin-bottom: 30px;
    }

    .why-choose-us-btn-gold {
        margin-top: 30px;
    }

    .why-choose-us-boxes-gold {
        margin: 0;
    }

    .project-item-content-gold {
        width: calc(100% - 60px);
        max-width: 100%;
    }

    .intro-video-button-gold a img {
        max-width: 140px;
    }

    .intro-video-counter-box-gold {
        gap: 0 30px;
    }

    .intro-video-counter-item-gold {
        width: calc(20% - 24px);
        padding: 20px 0;
    }

    .intro-video-counter-item-gold::before {
        left: -15px;
    }

    .our-testimonials-content-gold {
        position: initial;
        margin-bottom: 40px;
    }

    .footer-header-gold .section-title {
        max-width: 600px;
    }

    .footer-contact-list-gold h3 {
        font-size: 26px;
    }

    .about-footer-gold {
        margin: 0 0 40px 0;
    }

    .about-footer-content-gold {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 991px) {

    .hero-gold {
        padding: 140px 0 50px;
    }

    .hero-content-gold .section-title h1 {
        font-size: 50px;
    }

    .hero-content-body-gold {
        margin-top: 0;
    }

    .hero-image-box-gold {
        margin-top: 50px;
    }

    .hero-image-gold figure img {
        aspect-ratio: 1 / 0.7;
    }

    .hero-client-box-gold {
        width: 330px;
        padding: 20px 15px;
    }

    .satisfy-client-image figure img {
        max-width: 40px;
    }

    .hero-client-box-content-gold {
        max-width: 180px;
    }

    .hero-client-box-content-gold p {
        font-size: 14px;
    }

    .hero-video-box-gold {
        right: 15px;
        max-width: 280px;
        padding: 10px;
    }

    .hero-video-content-gold {
        padding: 20px 10px 10px;
    }

    .hero-video-content-gold h3 {
        font-size: 18px;
    }

    .about-us-gold {
        padding: 50px 0;
    }

    .about-us-hightlighted-content {
        margin-bottom: 30px;
    }

    .about-us-footer-gold {
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-us-counter-box-gold h2 {
        font-size: 45px;
    }

    .our-services-gold {
        padding: 50px 0;
        background-size: 350px auto;
    }

    .what-we-do-gold {
        padding: 50px 0;
    }

    .what-we-counter-item-gold h2 {
        font-size: 40px;
    }

    .what-we-contect-list-gold {
        margin-top: 10px;
    }

    .what-we-contect-list-gold ul {
        margin-top: 15px;
    }

    .why-choose-us-gold {
        padding: 50px 0;
    }

    .why-choose-body-item-gold {
        gap: 15px;
    }

    .why-choose-body-item-gold .icon-box {
        width: 50px;
        height: 50px;
    }

    .why-choose-body-item-gold .icon-box img {
        max-width: 24px;
    }

    .why-choose-body-item-content-gold {
        width: calc(100% - 65px);
    }

    .why-choose-item-gold {
        padding: 10px;
    }

    .why-choose-counter-item-gold h2 {
        font-size: 40px;
    }

    .our-features-gold {
        padding: 50px 0;
    }

    .cta-box-gold {
        padding: 50px 0;
    }

    .cta-box-image-gold {
        margin: 0 0 30px 0;
    }

    .cta-box-btn-gold {
        margin-top: 30px;
    }

    .project-item-tag-gold {
        top: 20px;
        right: 20px;
    }

    .project-item-tag-gold a {
        padding: 8px 24px 8px 10px;
    }

    .project-item-tag-gold a::before {
        right: 10px;
    }

    .project-item-body-gold {
        padding: 15px 5px 0 5px;
    }

    .project-item-content-gold h2 {
        font-size: 18px;
    }

    .intro-video-gold {
        padding: 50px 0 0;
    }

    .intro-video-box-gold {
        min-height: 500px;
    }

    .intro-video-button-gold {
        width: 100%;
        text-align: center;
    }

    .intro-video-counter-box-gold {
        padding: 0 15px;
    }

    .intro-video-counter-item-gold h2 {
        font-size: 40px;
    }

    .our-pricing-gold {
        padding: 50px 0;
    }

    .pricing-item-gold {
        padding: 10px;
    }

    .pricing-item-header-gold {
        padding: 10px 10px 20px 10px;
    }

    .pricing-item-content-gold h3 {
        margin-bottom: 15px;
    }

    .pricing-item-content-gold h2 {
        font-size: 40px;
    }

    .pricing-item-content-gold p {
        margin-top: 10px;
    }

    .pricing-item-btn-gold {
        margin-top: 20px;
    }

    .pricing-item-list-gold {
        padding: 20px;
    }

    .pricing-item-list-gold ul li {
        margin-bottom: 10px;
    }

    .pricing-item-list-gold ul li::before {
        font-size: 16px;
    }

    .pricing-benefit-list-gold {
        margin-top: 10px;
    }

    .pricing-benefit-list-gold ul {
        gap: 15px 30px;
    }

    .our-testimonials-gold {
        background-size: 400px auto;
        padding: 50px 0;
    }

    .our-testimonials-content-gold {
        margin-bottom: 30px;
    }

    .testimonial-item-gold {
        /*min-height: 300px;*/
        gap: 20px;
    }

    .testimonial-item-body-gold {
        padding-top: 20px;
    }

    .main-footer-gold {
        padding: 50px 0 0 0;
    }

    .footer-header-gold {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-header-gold .section-title {
        max-width: 100%;
    }

    .footer-contact-list-gold {
        text-align: right;
    }

    .footer-links-gold {
        max-width: 40%;
    }

    .footer-links-gold h3 {
        margin-bottom: 15px;
    }

    .footer-links-gold ul li {
        margin-bottom: 10px;
    }

    .footer-newsletter-form-gold p {
        margin-bottom: 15px;
    }

    .footer-copyright-gold {
        margin-top: 40px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {

    .hero-content-gold .section-title h1 {
        font-size: 30px;
    }

    .hero-content-body-gold {
        gap: 20px;
    }

    .hero-client-box-gold {
        position: initial;
        width: 100%;
        border-radius: 10px;
        margin-top: 20px;
    }

    .hero-video-box-gold {
        position: initial;
    }

    .hero-client-box-gold::before,
    .hero-client-box-gold::after {
        display: none;
    }

    .hero-video-box-gold {
        max-width: 100%;
        margin: 20px 0 -50px;
    }

    .about-us-image-title-gold h2 {
        font-size: 44px;
    }

    .about-us-hightlighted-content {
        padding: 20px 15px;
    }

    .about-us-hightlighted-content h3 {
        font-size: 18px;
    }

    .about-us-body-item-gold {
        width: calc(50% - 10px);
    }

    .about-us-body-item-gold .icon-box {
        margin-bottom: 10px;
    }

    .about-us-body-item-content-gold h3 {
        font-size: 18px;
    }

    .about-us-footer-gold {
        gap: 20px;
    }

    .about-us-counter-box-gold {
        gap: 10px;
    }

    .about-us-counter-box-gold h2 {
        font-size: 30px;
    }

    .about-us-counter-box-gold p {
        font-size: 14px;
    }

    .service-item-gold {
        min-height: 350px;
        gap: 20px;
        padding: 20px;
    }

    .service-item-gold .icon-box {
        margin-bottom: 15px;
    }

    .service-item-body-gold {
        padding-top: 20px;
    }

    .service-item-title-gold h2 {
        font-size: 18px;
    }

    .what-we-item-gold {
        padding: 20px;
    }

    .what-we-item-header-gold {
        padding: 15px 15px 20px 15px;
    }

    .what-we-item-title-gold h3 {
        font-size: 18px;
    }

    .what-we-counter-item-gold h2 {
        font-size: 30px;
    }

    .what-we-item-body-image-gold {
        margin: 0 0 -20px -20px;
    }

    .what-we-item-body-image-gold img {
        max-width: 100px;
    }

    .what-we-contect-list-gold ul {
        gap: 15px;
    }

    .what-we-contect-list-gold ul li {
        font-size: 14px;
    }

    .what-we-contect-list-gold ul li img {
        max-width: 18px;
        margin-left: 5px;
    }

    .why-choose-body-item-content-gold h2 {
        font-size: 18px;
    }

    .why-choose-item-image-gold {
        width: 100%;
    }

    .why-choose-item-body-gold {
        width: 100%;
        padding: 20px 15px 10px;
        flex-direction: column-reverse;
    }

    .why-choose-counter-list-gold {
        padding: 20px;
        gap: 20px;
    }

    .why-choose-counter-item-gold {
        width: calc(33.33% - 13.33px);
    }

    .why-choose-counter-item-gold::before {
        left: -10px;
    }

    .why-choose-counter-item-gold h2 {
        font-size: 30px;
    }

    .why-choose-counter-item-gold p {
        font-size: 14px;
    }

    .feature-item-gold {
        min-height: initial;
        padding: 20px 20px 0 20px;
    }

    .feature-item-image-gold {
        max-width: 240px;
    }

    .intro-video-button-gold a img {
        max-width: 100px;
    }

    .intro-video-counter-item-gold {
        width: calc(50% - 15px);
    }

    .intro-video-counter-item-gold:last-child:before,
    .intro-video-counter-item-gold:nth-child(5n + 5):before {
        display: block;
    }

    .intro-video-counter-item-gold:nth-child(2n + 2):before {
        display: none;
    }

    .intro-video-counter-item-gold h2 {
        font-size: 30px;
    }

    .pricing-item-content-gold h2 {
        font-size: 30px;
    }

    .pricing-item-list-gold {
        padding: 20px 15px;
    }

    .pricing-benefit-list-gold ul {
        gap: 10px;
    }

    .pricing-benefit-list-gold ul li {
        font-size: 14px;
    }

    .pricing-benefit-list-gold ul li img {
        max-width: 16px;
        margin-left: 5px;
    }

    .testimonial-item-box-gold {
        padding: 10px;
    }

    .testimonial-item-gold {
        padding: 20px;
    }

    .testimonials-rating-gold {
        margin-bottom: 15px;
    }

    .author-image-gold {
        margin-left: 10px;
    }

    .author-content-gold {
        width: calc(100% - 60px);
    }

    .author-content-gold h3 {
        font-size: 18px;
    }

    .footer-header-gold {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-contact-list-gold h3 {
        font-size: 22px;
    }

    .about-footer-gold {
        margin-bottom: 30px;
    }

    .footer-links-gold {
        max-width: 100%;
    }

    .footer-copyright-gold {
        margin-top: 30px;
        padding: 15px 0;
        flex-direction: column-reverse;
    }
}

/* ========================================================== */
/* ======================= Alaa Edit ======================== */
/* ========================================================== */
/*============================*/
/*=====PAGINATION======*/
/*============================*/
.pagination {
    gap: 8px;
}

.page-item {
    list-style: none;
}

.page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #0d1b4c;
    color: #fff;
    border-color: #0d1b4c;
}

.page-item.active .page-link {
    background: #0d1b4c;
    color: #fff;
    border-color: #0d1b4c;
    font-weight: bold;
}

.page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

.page-link.arrow span {
    font-size: 16px;
    line-height: 1;
}

.project-item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.project-item-box {
    margin-bottom: 30px;
    position: absolute;
    padding: 10px;
    float: right;
    text-align: right;
    display: flex;
    justify-content: center;
}

.project-item-image {
    width: 100%;
    min-height: 200px;
    background: #f8f8f8;
}

/*============================*/
/*===== f======*/
/*============================*/
.transition-hover {
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

.text-secondary {
    line-height: 1.8;
}

.features {
    position: relative;
    left: 0;
    right: 0;
    top: -100px;
    z-index: 10;
}

.features .container {
    max-width: 950px;
}

.feature-card {
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.feature-box {
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--accent-color);
    border-radius: 7px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-box {
    background: #17224D;
}

.features-icon {
    color: #17224D;
    font-size: 30px;
}

.feature-card:hover .features-icon {
    transform: scale(1.25) rotate(5deg);
    color: var(--accent-color);
}

.home-about-description {
    line-height: 2;
}

.service-title {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.hero-description {
    text-align: justify;
}

.card-body a {
    text-decoration: none !important;
    color: inherit;
}

.card-body a:hover,
.card-body a:focus,
.card-body a:active {
    text-decoration: none !important;
    color: inherit;
}

.feature-description {
    direction: rtl !important;
}

.form-floating .form-control {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    background-color: rgba(232, 232, 232, 0.5) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 0 4px rgb(252, 225, 118);
    border-color: var(--bs-primary);
}

.form-card-hover {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.form-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.tracking-wide {
    letter-spacing: 1.5px;
}

/*rtl*/
.form-floating > label {
    right: 0;
    left: auto;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(.85) translateY(-.5rem) translateX(0.75rem);
}

.page-services .container {
    max-width: 1200px;
}

.service-sections {
    font-size: 25px;
    color: #17224D;
    line-height: 1;
}

.service-sections:hover {
    color: #a2914b;
}

.latest-description {
    font-size: 20px;
    text-align: justify;
    line-height: 2;
    color: #1d2a60;
}

/*============================*/
/*========ABOUT PAGE==========*/
/*============================*/
.about-page .about-image {
    width: 100%;
    height: 600px !important;
}

.about-page .about-title-header {
    text-align: right;
}

.about-page .about-title {
    color: #17224D !important;
}

.about-page .about-description {
    text-align: justify !important;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    will-change: transform;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.hover-zoom {
    transition: transform 0.6s ease;
    will-change: transform;
}

.hover-lift:hover .hover-zoom {
    transform: scale(1.06);
}


/*============================*/
/*=====Project PAGE======*/
/*============================*/
.project-item-image {
    position: relative;
    overflow: hidden;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    pointer-events: none;
}

.project-badge.ongoing {
    background-color: #ff9800;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.4);
}

.project-badge.executed {
    background-color: #2ecc71;
    box-shadow: 0 2px 10px rgba(46, 204, 113, 0.4);
}

/*============================*/
/*=====Project Show PAGE======*/
/*============================*/
.project-description {
    line-height: 2;
    text-align: justify;
    color: var(--primary-color);

}

/*============================*/
/*===========FOOTER===========*/
/*============================*/
.footer-titles {
    color: var(--accent-color) !important;
}

@media (min-width: 1024px) and (max-width: 2560px) {
    .hero-title {
        font-size: 3rem !important;
    }

    .hero-description {
        font-size: 2rem !important;
        line-height: 1.5;
    }
}

@media (min-width: 320px) and (max-width: 991px) {
    .features {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        z-index: 10;
    }

    .about-page .about-image {
        height: 100% !important;
    }

    .py-5 {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 991px) {
    .about-us {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

@media (min-width: 992px) {
    .about-us {
        margin-top: -3rem !important;
        margin-bottom: 3rem !important;
    }
}

.description-light {
    color: rgba(31, 47, 105, 0.82);
}

.all-projects {
    text-align: center !important;
    font-size: 14px !important;
}

/*============================*/
/*=====PROFILES PAGE======*/
/*============================*/
/* Container & Background styling */
.pdf-grid-container {
    perspective: 1000px;
}

/* The Card Styling */
.pdf-item {
    border-radius: 16px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent !important;
    position: relative;
    overflow: hidden;
}

.pdf-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 123, 255, 0.2) !important;
}

/* Modern Icon Circle */
.pdf-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.pdf-item:hover .pdf-icon-wrapper {
    background: #fff5f5; /* Light red tint for PDF */
}

/* Button Refinement */
.btn-dark {
    background-color: #1a1a1a;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.btn-dark:hover {
    background-color: #000;
}

/* Animation for the progress bar */
.progress-container {
    transition: opacity 0.3s ease;
}

.progress-bar {
    float: right !important;
}

/*============================*/
/*=====PROJECT GALLERY======*/
/*============================*/
.gallery-item {
    position: relative;
    display: block;
}

.more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    pointer-events: none; /* Allows click to pass through to the <a> tag */
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.bg-warning {
    background-color: var(--accent-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.modern-count-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    border-radius:50px;
    background:linear-gradient(135deg,#f8b400,#ffcc33);
    color: var(--primary-color);
    font-size:15px;
    font-weight:700;
    box-shadow:
        0 10px 25px rgba(248,180,0,.25),
        inset 0 1px 1px rgba(255,255,255,.4);
    transition:all .3s ease;
}

.modern-count-badge:hover{
    transform:translateY(-2px);
    box-shadow:
        0 14px 30px rgba(248,180,0,.35),
        inset 0 1px 1px rgba(255,255,255,.5);
}

.modern-status-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.3px;
}

.nav-item .dropdown-menu .dropdown-item {
    font-size: 12px !important;
    text-align: center !important;
}

/* Shared Floating Style */
.floating-btn{
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* WhatsApp */
.whatsapp-btn{
    right: 25px;
    background: #25D366;
}

.whatsapp-btn:hover{
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 30px rgba(37,211,102,0.35);
}

/* Back To Top */
.back-top-btn{
    left: 25px;
    border: none;
    cursor: pointer;
    background: var(--accent-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    color: var(--primary-color);
}

.back-top-btn.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top-btn:hover{
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.08);
}

.text-justify {
    text-align: justify !important;
}

/*==========================================================================================================*/
/*==================================SLIDERS=========================================================*/
/*==========================================================================================================*/
/* ==========================================================================
   Base Structure & Smooth Transitions (Global)
   ========================================================================== */
#header-carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
    min-height: 100vh;
    background-color: #000;
    position: relative;
}

.carousel-img-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.carousel-caption {
    height: 100%;
    top: 0;
    bottom: 0;
    padding-top: 80px;
    z-index: 3;
}

/* Glassmorphism Card Core Base */
.glass-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    width: 90%;
    text-align: center; /* Ensures content centers naturally for LTR & RTL */
}

/* Cinema Fade Transition Physics */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 1200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.02);
    z-index: 1;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
    transition-duration: 1200ms;
    z-index: 1;
}

/* Typography Scales */
.slider-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e0e0e0;
}

.slider-description {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
}

/* ==========================================================================
   RTL Context Corrections (Arabic Language View Override)
   ========================================================================== */
.slider-title,
.slider-title {
    letter-spacing: 0px; /* Letter spacing creates awkward gaps in Arabic text scripts */
    font-family: 'Space Grotesk', 'Cairo', sans-serif; /* Fallback to clean Arabic font if loaded */
}

.carousel-control-prev,
.carousel-control-prev {
    left: auto;
    right: 0; /* Flips controller locations to map natively to RTL expectations */
}

.carousel-control-next,
.carousel-control-next {
    right: auto;
    left: 0;
}

/* ==========================================================================
   Mobile Display Optimization
   ========================================================================== */
@media (max-width: 768px) {
    #header-carousel, .carousel-inner, .carousel-item, .carousel-img-wrapper {
        height: 100vh;
        min-height: 100vh;
    }

    .glass-container {
        padding: 1.75rem 1.25rem !important;
    }

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

    .slider-description {
        font-size: 1.45rem;
    }
}

