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

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

/******************************/
/******************************/
:root {
    --primary: #c72d19;
    --yellow: #edbc38;
    --dark: #1f1f1f;
    --gray: #7f7f7f;
    --gray-bg: #f5f5f5;
    --light-bg: #f8f8f8;
    --field-bg: #f7f7f7;
    --black: #000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

body {
    font-family:   "Almarai", sans-serif !important;
    color: var(--dark);
    background: var(--white);
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: bold;
    color: var(--dark);
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul,
ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type="submit"],
a {
    transition: all 0.5s linear;
}

img,
iframe,
video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

.no-padding {
    padding: 0 !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.form-control {
    border-radius: 0;
}

html[dir="ltr"] .form-control {
    direction: ltr;
    text-align: left;
}

textarea.form-control {
    height: 200px;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
    color: var(--primary);
}

/******************************/
/* && Main Button &&*/
/******************************/
.main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background-color: var(--white);
    color: var(--dark) !important;
    border: 1px solid var(--primary);
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    padding-inline-start: 30px;
    min-height: 50px;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}

.main-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.35s ease-in-out;
}

.main-btn .btn-icon i {
    transform: rotate(45deg);
    transition: all 0.35s ease-in-out;
}

.main-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 10px 22px rgba(199, 45, 25, 0.18);
    transform: translateY(-4px);
}

.main-btn:hover .btn-icon {
    background-color: var(--primary);
    color: var(--white);
}

.main-btn:hover .btn-icon i {
    transform: rotate(0deg) translateX(-2px);
}

/* Transparent variant (on dark hero) */
.main-btn-trans {
    background-color: transparent;
    color: var(--white) !important;
}

.main-btn-trans:hover {
    background-color: var(--primary);
    color: var(--white) !important;
}

/* Outline variant (on red background) */
.main-btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white) !important;
}

.main-btn-outline .btn-icon {
    background-color: var(--white);
    color: var(--primary);
}

.main-btn-outline:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary) !important;
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.16);
}

.main-btn-outline:hover .btn-icon {
    background-color: var(--white);
    color: var(--primary);
}

/* Join button (header / mobile menu) */
.join-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    min-height: 60px;
    padding: 6px 30px;
    gap: 0;
}

.join-btn:hover {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary) !important;
}

/******************************/
/* && Section Titles &&*/
/******************************/
.section-pill {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--dark);
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 26px;
    margin-bottom: 18px;
}

.section-title {
    color: var(--dark);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

/******************************/
/* && Nav &&*/
/******************************/
.head-home {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    padding: 20px 0;
}

.head-home > .container {
    width: calc(100% - 80px);
    max-width: 1400px;
}

.mid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-logo .main-logo img {
    max-width: 125px;
}

.head-logo {
    flex-shrink: 0;
    margin-inline-end: 85px;
}

/* Language dropdown */
.main-nav-url {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.phone-link img {
    width: 24px;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}

.phone-link:hover {
    transform: translateY(-3px);
}

.lang-menu {
    position: relative;
}

.lang-menu .lang {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.lang-menu .lang img {
    width: 24px;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 30;
    min-width: 140px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease-in-out;
}

html[dir="rtl"] .lang-dropdown {
    left: 0;
    right: auto;
}

.lang-dropdown li a {
    display: block;
    color: var(--dark);
    font-size: 15px;
    font-weight: bold;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.lang-dropdown li a:hover {
    color: var(--primary);
    background-color: var(--gray-bg);
}

.lang-menu:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 100px;
        flex: 0 1 auto;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-list {
        display: flex;
        align-items: center;
        background-color: var(--white);
        border-radius: 14px;
        height: 60px;
        padding: 0 16px;
        margin-inline-start: 0;
        margin-inline-end: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-actions > .join-btn {
        flex-shrink: 0;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    .nav-list > .menu-item > a {
        display: flex;
        color: var(--dark);
        font-weight: bold;
        font-size: 16px;
        position: relative;
        height: 60px;
        align-items: center;
        padding: 0 22px;
        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item > a:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 18px;
        left: 18px;
        height: 2px;
        border-radius:0;
        background-color: var(--dark);
        opacity: 0;
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.35s ease-in-out;
    }

    .nav-list .menu-item:hover > a {
        color: var(--primary);
    }

    .nav-list > .menu-item.active > a {
        color: var(--dark);
    }

    .nav-list > .menu-item.active > a:before {
        background-color: var(--black);
        opacity: 1;
        visibility: visible;
        transform: scaleX(1);
    }

    .nav-list > .menu-item:not(.active):hover > a:before {
        background-color: var(--primary);
        opacity: 1;
        visibility: visible;
        transform: scaleX(1);
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .head-logo {
        margin-inline-end: 0;
    }

    .head-home {
        padding: 15px 0;
    }

    .head-home > .container {
        width: 100%;
    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
    }

    .head-logo {
        display: flex;
        align-items: center;
    }

    .head-logo .main-logo img {
        width: 110px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        color: var(--white);
        background-color: var(--primary);
        margin-inline-start: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }
    .nav-btn:focus ,.nav-btn:hover{
        color: var(--white);
    }
    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 99;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        overflow-y: scroll;
        transition: all 0.5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid var(--gray-bg);
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: var(--dark);
        font-weight: bold;
        padding: 15px;
    }

    .mobile-nav-list .menu-item > a:hover,
    .mobile-nav-list .menu-item.active > a {
        color: var(--primary);
    }

    .main-nav > .join-btn,
    .nav-actions {
        display: none;
    }

    .mobile-nav-list .join-btn {
        width: 100%;
        justify-content: center;
        margin-top: 25px;
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        transition: all 0.35s ease-in-out;
    }
}

/******************************/
/* && Intro &&*/
/******************************/
.main-intro {
    position: relative;
}

.intro-slide {
    position: relative;
    min-height: 900px;
    background-image: url("../images/intro.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.intro-slide .container {
    width: 100%;
}

.intro-content {
    max-width: 640px;
    padding-top: 80px;
}

.intro-title {
    color: var(--yellow);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
}

.intro-text {
    color: var(--white);
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 40px;
}

.main-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}

.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.35s ease-in-out;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.main-slider .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active span {
    width: 26px;
    border-radius: 4px;
    background: var(--white);
}

/******************************/
/* && Track &&*/
/******************************/
.track-section {
    padding: 60px 0 30px;
    background-color: var(--white);
}

.track-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    background-color: var(--primary);
    border-radius: 18px;
    padding: 28px 40px;
}

.track-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 0;
    flex: 0 0 330px;
}
html[dir="ltr"] .track-title {
    font-size: 18px;
}

.track-form {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

.track-input {
    flex: 1 1 620px;
    max-width: none;
    height: 72px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 0 25px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
}

.track-input::placeholder {
    color: var(--gray);
}

.track-form .main-btn {
    flex-shrink: 0;
    min-width: 190px;
    min-height: 72px;
    justify-content: space-between;
}

.track-form .main-btn .btn-icon {
    min-height: 72px;
}

.track-form .main-btn-outline:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary) !important;
}

.track-form .main-btn-outline:hover .btn-icon {
    background-color: var(--white);
    color: var(--primary);
}

.track-form .main-btn-outline:hover .btn-icon i {
    transform: rotate(0deg) translateX(-2px);
}

/******************************/
/* && About &&*/
/******************************/
.about-section {
    position: relative;
    padding: 20px 0 100px;
    background-color: var(--white);
}

.about-section:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4%;
    transform: translateY(-50%);
    width: 205px;
    height: 440px;
    background-image: url("../images/about-bg-left.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.3;
    pointer-events: none;
}

.about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-images {
    position: relative;
    flex: 0 0 550px;
    max-width: 550px;
    min-height: 575px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 122px;
    width: 428px;
}
html[dir="ltr"] .about-img-1 {
    left: 0;
}
.about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 312px;
}
html[dir="ltr"] .about-img-2 {
    left: 230px;
}
.about-badge {
    position: absolute;
    top: 168px;
    left: 50px;
    z-index: 2;
    width: 140px;
    background-color: var(--primary);
    border-radius: 14px;
    text-align: center;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
}
html[dir="ltr"] .about-badge {
    left: 350px;
}
.about-badge .badge-num {
    color: var(--white);
    font-size: 38px;
    font-weight: bold;
    line-height: 1.2;
}

.about-badge .badge-text {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.about-title {
    color: var(--yellow);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-text {
    color: var(--black);
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 30px;
    overflow-wrap: anywhere;
}

.about-content .main-btn {
    margin-top: 15px;
    min-width: 190px;
    justify-content: space-between;
}

.about-vm-section {
    padding: 0 0 100px;
    background-color: var(--white);
}

.about-vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-vm-card {
    position: relative;
    background-color: var(--gray-bg);
    border-radius: 18px;
    padding: 35px 32px;
    overflow: hidden;
}

.about-vm-card:before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

.about-vm-title {
    color: var(--yellow);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px;
}

.about-vm-text {
    color: var(--black);
    font-size: 16px;
    line-height: 2;
    overflow-wrap: anywhere;
}

.about-vm-text p:last-child {
    margin-bottom: 0;
}

/******************************/
/* && Services &&*/
/******************************/
.services-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--gray-bg);
}

.services-section:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 160px;
    height: 110px;
    background-image: url("../images/servise-bg-top.png");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.services-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 45px;
}

.services-head {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-head .section-title {
    font-size: 26px;
    margin-bottom: 28px;
}

.services-image {
    width: 100%;
    height: 330px;
    margin-top: 12px;
    object-fit: cover;
    border-radius: 18px;
}

.services-cards {
    flex: 1;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--white);
    border-radius: 16px;
    min-height: 146px;
    padding: 15px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease-in-out;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 50px;
}

.service-title {
    color: var(--dark);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}

.service-text {
    color: var(--dark);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 0;
}

/******************************/
/* && Counters &&*/
/******************************/
.counters-section {
    position: relative;
    background-image: url("../images/counter-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 240px;
}

.counters-page-section {
    padding: 95px 0;
}

.counters-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.78);
}

.counters-section .container {
    position: relative;
    z-index: 1;
}

.counters-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.counter-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
}

.counter-item:not(:last-of-type) {
    border-inline-end: 0;
}

.counter-item:not(:last-of-type):after {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-end: 0;
    width: 1px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
}

.counter-icon {
    width: 64px;
    margin-bottom: 18px;
}

.counter-num {
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
    direction: ltr;
}

.counter-label {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 0;
}

/******************************/
/* && Join Form + Clients &&*/
/******************************/
.clients-section {
    background-color: var(--light-bg);
    padding: 0 0 90px;
}

.join-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 55px 25px 60px;
    margin-top: -160px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.join-title {
    color: var(--dark);
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 45px;
}

.join-form {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.join-field-wrap {
    position: relative;
    flex: 1 1 calc(33.333% - 17px);
    min-width: 250px;
    display: flex;
}

.join-field {
    width: 100%;
    height: 64px;
    background-color: var(--field-bg);
    border-radius: 12px;
    padding: 0 25px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: right;
    direction: rtl;
}
html[dir="ltr"] .join-field {
    text-align: left;
    direction: ltr;
}

.join-field::placeholder {
    color: var(--gray);
}

select.join-field {
    color: var(--gray);
    cursor: pointer;
}

.join-select-wrap i {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    pointer-events: none;
}

.join-form .main-btn {
    width: 100%;
    justify-content: space-between;
}

/* Clients */
.clients-head {
    text-align: center;
    padding-top: 80px;
    margin-bottom: 45px;
}

.clients-text {
    color: var(--dark);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.9;
    margin-bottom: 0;
}

.client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 14px;
    height: 108px;
    padding: 20px 30px;
}

.client-card img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.clients-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.clients-slider .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: #c9c9c9;
    transition: all 0.35s ease-in-out;
}

.clients-slider .owl-dots .owl-dot.active span {
    width: 26px;
    border-radius: 4px;
    background: var(--dark);
}

/******************************/
/* && News &&*/
/******************************/
.news-section {
    background-color: var(--white);
    padding: 100px 0;
}

.news-section .container {
    position: relative;
}

.news-head {
    margin-bottom: 45px;
}

.news-slider .owl-nav {
    position: absolute;
    top: -130px;
    left: 15px;
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    margin: 0;
}

.news-slider .owl-nav .owl-prev,
.news-slider .owl-nav .owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.35s ease-in-out;
}

.news-slider .owl-nav .owl-prev:hover,
.news-slider .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--white);
}

.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 14px;
}

.news-date i {
    font-size: 16px;
    color: #8b8b8b;
}

.news-go {
    color: var(--dark);
    font-size: 15px;
}

.news-go:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.news-go:hover {
    color: var(--primary);
}

.news-go i {
    position: relative;
    z-index: 3;
    transition: all 0.35s ease-in-out;
}

.news-card:hover .news-go i {
    transform: none;
}

.news-title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 22px;
    min-height: 65px;
    transition: all 0.35s ease-in-out;
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-image {
    border-radius: 16px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/******************************/
/* && Footer &&*/
/******************************/
.main-footer {
    background-color: var(--dark);
    background-image: url("../images/footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 0;
}

.footer-inner {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-inner > div {
    padding-inline-end: 70px;
}

.footer-inner > div:last-child {
    padding-inline-end: 0;
}

.footer-about {
    flex: 0 0 455px;
    max-width: 455px;
}

.footer-logo img {
    max-width: 100px;
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-social a {
    color: var(--white);
    font-size: 18px;
}

.footer-social a:hover {
    color: var(--yellow);
    transform: translateY(-4px);
}

.footer-title {
    position: relative;
    display: inline-block;
    color: var(--yellow);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 48px;
}

.footer-title span {
    position: relative;
    z-index: 2;
}

.footer-title:after {
    content: "";
    position: absolute;
    top: 58%;
    inset-inline-start: 10px;
    width: 30px;
    height: 30px;
    background-image: radial-gradient(#536489 2px, transparent 2.2px);
    background-size: 10px 10px;
    background-position: right top;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}

.footer-contact {
    margin-inline-end: 50px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-list li:not(:last-of-type) {
    margin-bottom: 30px;
}

.footer-contact-list li i {
    color: var(--yellow);
    font-size: 16px;
}

.footer-contact-list li a,
.footer-contact-list li span {
    color: var(--white);
    font-size: 15px;
}

.footer-contact-list li a:hover {
    color: var(--yellow);
}

.footer-links-cols {
    display: flex;
    gap: 60px;
}

.footer-links-cols li:not(:last-of-type) {
    margin-bottom: 22px;
}

.footer-links-cols li a {
    position: relative;
    color: var(--white);
    font-size: 15px;
    padding-inline-start: 16px;
}

.footer-links-cols li a:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0;
    width: 6px;
    height: 6px;
    background-color: var(--white);
}

.footer-links-cols li a:hover {
    color: var(--yellow);
}

.footer-copy {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
}

.footer-copy:before,
.footer-copy:after {
    content: "";
    flex: 1;
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.footer-copy p {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 0;
}

/******************************/
/* && Responsive &&*/
/******************************/
@media (max-width: 1199px) {
    .intro-slide {
        min-height: 750px;
    }

    .intro-title {
        font-size: 40px;
    }

    .about-images {
        flex: 0 0 470px;
        max-width: 470px;
        min-height: 500px;
    }

    .about-img-1 {
        width: 360px;
        left: 110px;
    }

    .about-img-2 {
        width: 270px;
    }

    .services-inner {
        gap: 40px;
    }

    .services-head {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .services-cards {
        flex: 1;
        max-width: none;
    }

    .footer-inner > div {
        padding-inline-end: 35px;
    }
}

@media (max-width: 991px) {
    .intro-slide {
        min-height: 640px;
    }

    .intro-content {
        padding-top: 60px;
    }

    .intro-title {
        font-size: 34px;
    }

    .intro-text {
        font-size: 16px;
    }

    .main-slider .owl-nav {
        display: none;
    }

    .track-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 30px 25px;
    }

    .track-title br {
        display: none;
    }

    .track-title {
        flex: 0 0 auto;
    }

    .track-form {
        flex-wrap: wrap;
        justify-content: center;
    }

    .track-input {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-inner {
        flex-direction: column;
        gap: 38px;
    }

    .about-images {
        flex: 0 0 auto;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .services-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .services-head {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

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

    .services-image {
        max-width: 100%;
    }

    .services-cards {
        flex: 0 0 auto;
        height: auto;
        max-width: 100%;
        width: 100%;
    }

    .service-card {
        flex: 0 0 auto;
    }

    .counters-section {
        padding: 80px 0 220px;
    }

    .counters-page-section {
        padding: 70px 0;
    }

    .counters-row {
        flex-wrap: wrap;
    }

    .counter-item {
        flex: 1 1 50%;
        padding: 25px 15px;
    }

    .counter-item:nth-of-type(2) {
        border-inline-end: 0;
    }

    .counter-item:nth-of-type(2):after {
        display: none;
    }

    .join-field-wrap {
        flex: 1 1 calc(50% - 13px);
    }

    .footer-inner {
        flex-wrap: wrap;
    }

    .footer-about {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-contact,
    .footer-links {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .footer-inner > div {
        padding-inline-end: 0;
    }

    .footer-contact {
        margin-inline-start: 0;
        margin-inline-end: 0;
    }
}

@media (max-width: 767px) {
    .intro-slide {
        min-height: 560px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-text {
        line-height: 1.9;
        margin-bottom: 30px;
    }

    .main-slider .owl-dots {
        bottom: 25px;
    }

    .about-section {
        padding: 45px 0 70px;
    }

    .about-section:before {
        display: none;
    }

    .about-images {
        width: min(100%, 360px);
        min-height: 0;
        padding-bottom: 90px;
        margin-inline: auto;
    }

    .about-img-1 {
        position: relative;
        top: auto;
        left: 40px;

        display: block;
        width: 86%;
        margin: 0 auto;
    }

    .about-img-2 {
        left: 0;
        right: auto;
        width: 62%;
        max-width: 220px;
        margin: 0;
    }

    html[dir="ltr"] .about-images .about-img-1 {
        left: auto;
        right: auto;
    }

    html[dir="ltr"] .about-images .about-img-2 {
        left: auto;
        right: 0;
    }

    .about-badge {
        top: 40%;
        left: 15px;
        right: auto;
        width: 115px;
        padding: 14px 8px;
    }

    html[dir="ltr"] .about-images .about-badge {
        left: auto;
        top: 40%;
        right:  Q45px;
    }

    .about-badge .badge-num {
        font-size: 30px;
    }

    .about-badge .badge-text {
        font-size: 14px;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-vm-section {
        padding: 0 0 70px;
    }

    .about-vm-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-vm-card {
        padding: 28px 24px;
    }

    .about-vm-title {
        font-size: 22px;
    }

    .services-section {
        padding: 70px 0;
    }

    .services-section:before {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 25px;
    }

    .counters-section {
        padding: 60px 0 200px;
    }

    .counters-page-section {
        padding: 60px 0;
    }

    .counter-item {
        flex: 1 1 50%;
        padding: 20px 10px;
    }

    .counter-num {
        font-size: 30px;
    }

    .counter-label {
        font-size: 15px;
    }

    .join-card {
        padding: 40px 20px;
        margin-top: -140px;
    }

    .join-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .join-field-wrap {
        flex: 1 1 100%;
        min-width: 0;
    }

    .clients-head {
        padding-top: 60px;
    }

    .clients-text {
        font-size: 18px;
    }

    .clients-text br {
        display: none;
    }

    .news-section {
        padding: 70px 0 90px;
    }

    .news-head {
        margin-bottom: 30px;
    }

    .news-slider .owl-nav {
        position: static;
        justify-content: center;
        margin-top: 30px;
    }

    .footer-inner {
        flex-direction: column;
        flex-wrap: wrap;
        padding-bottom: 45px;
    }

    .footer-about {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-contact,
    .footer-links {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }

    .footer-title {
        margin-bottom: 42px;
    }

    .footer-links-cols {
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .main-btn {
        font-size: 14px;
        min-height: 50px;
        gap: 15px;
        padding-inline-start: 20px;
    }

    .main-btn .btn-icon {
        width: 50px;
        height: 50px;
    }

    .intro-slide {
        min-height: 520px;
    }

    .intro-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .intro-text {
        font-size: 14px;
    }

    .track-section {
        padding: 45px 0;
    }

    .track-title {
        font-size: 17px;
    }

    .track-input {
        height: 56px;
        padding: 0 18px;
    }

    .track-form .main-btn {
        width: 100%;
        min-width: 0;
        min-height: 56px;
    }

    .track-form .main-btn .btn-icon {
        width: 48px;
        height: 56px;
        min-height: 56px;
    }

    .counter-icon {
        width: 48px;
        margin-bottom: 12px;
    }

    .counter-num {
        font-size: 26px;
    }

    .news-title {
        font-size: 16px;
        min-height: 0;
    }

    .footer-copy {
        gap: 14px;
    }

    .footer-contact,
    .footer-links {
        flex: 0 0 auto;
        max-width: 100%;
    }
}
