:root {
    --default-font: "Readex Pro", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --heading-font: "Readex Pro", "Roboto", sans-serif;
    --nav-font: "Readex Pro", "Poppins", sans-serif;

    --background-color: #ffffff;
    --default-color: #1F2452;
    --heading-color: #1F2452;
    --accent-color: #0081C8;
    --accent-color-50: #0082c883;
    --accent-color-80: #0082c8d0;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --primary-light: #80c0e3;
    --primary-dark: #407da0;
    --accent: #005280;
    --surface: #f8f9fa;
    --text: #1e293b;
    --text-50: #495057;
    --shadow-sm: 0 12px 24px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;

    --nav-color: rgba(255, 255, 255, 0.7);
    --nav-hover-color: #ffffff;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #218669;

    /* Saydan Colors */
    --saydan-dark-gray:  #404040;
    --saydan-gray:  #A7A8AC;
    --saydan-medium-gray: #BDBEC1;
    --saydan-soft-gray: #D3D3D6;
    --saydan-light-gray: #E9E9EA;

    --saydan-dark-blue: #005280;
    --saydan-medium-blue: #407DA0;
    --saydan-soft-blue: #80A9C0;
    --saydan-light-blue: #BFD4DF;

}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

p {
    line-height: 1.8;
}

/*
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    max-height: 80px;
    width: auto;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    font-size: 24px;
    padding-left: 1px;
    font-family: var(--heading-font);
    color: var(--color-primary);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.95);
    --heading-color: #3c3c3c;
    --nav-color: #3c3c3c;
    --nav-hover-color: #3c3c3c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 20px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    /* Style for dropdown arrows */
    .navmenu .dropdown-toggle .bi-chevron-down {
        font-size: 12px;
        transition: transform 0.3s ease;
        background: none;
        width: auto;
        height: auto;
        margin-left: 5px;
    }

    .navmenu .dropdown.active .bi-chevron-down {
        transform: rotate(180deg);
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

.navmenu .lang-switch {
    background-color: #ffffff10;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    margin-left: 15px;
    transition: background-color 0.3s;
    text-transform: none;
}

.navmenu .lang-switch:hover {
    background-color: #ffffff30;
    color: #fff;
}

.navmenu .lang-switch i {
    margin-right: 5px;
}

.scrolled .navmenu .lang-switch {
    background-color: #f9f9f9;
    color: var(--nav-color);
}

.scrolled .navmenu .lang-switch:hover {
    background-color: #eaeaea;
    color: var(--nav-hover-color);
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    /* Style for dropdown arrows */
    .navmenu .dropdown-toggle .bi-chevron-down {
        font-size: 12px;
        transition: transform 0.3s ease;
        background: none;
        width: auto;
        height: auto;
        margin-left: 5px;
    }

    .navmenu .dropdown.active .bi-chevron-down {
        transform: rotate(180deg);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }

    .navmenu .lang-switch {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
        padding: 10px 15px;
        font-size: 17px;
        color: #333;
        text-decoration: none;
    }

    .navmenu .lang-switch i {
        font-size: 18px;
        background: #f0f0f0;
        padding: 8px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
    }

    .navmenu .lang-switch:hover {
        background-color: #e9ecef;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    background: url("../img/footer-bg.jpg") top center no-repeat;
    background-size: cover;
    font-size: 14px;
    position: relative;
}

.footer .container {
    position: relative;
}

.footer:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.78);
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    position: absolute;
    inset: 0;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 95px;
    margin-right: 6px;
    width: auto;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vertical-divider {
    width: 1px;
    background-color: #fff;
    height: 50px;
    margin: 0 1rem;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

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

.footer .footer-contact p {
    margin-bottom: 5px;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer-contact-list li i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--accent-color);
}

.footer-contact-list li a {
    text-decoration: none;
    color: inherit;
}

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

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

[dir="rtl"] .footer .footer-links ul i {
    padding-right: 0;
    padding-left: 2px;
}

[dir="rtl"] .footer-contact-list li i {
    margin-right: 0;
    margin-left: 8px;
}

@media (max-width: 576px) {
    .footer .copyright {
        text-align: center;
        flex-direction: column !important;
    }

    .footer .copyright > div,
    .footer .copyright > p {
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--default-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    z-index: 1000;
    right: 0px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.55);
    background-color: color-mix(in srgb, var(--background-color), transparent 40%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

[dir="rtl"] .page-title .breadcrumbs ol li + li {
    padding-left: 0;
    padding-right: 10px;
}

[dir="rtl"] .page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-left: 10px;
    padding-right: 0;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border: 8px solid transparent;
}

.section-title h2:before {
    border-right: 12px solid var(--accent-color);
}

.section-title h2:after {
    border-left: 12px solid var(--accent-color);
}

[dir="rtl"] .section-title h2:before,
[dir="rtl"] .section-title h2:after {
    transform: rotate(180deg);
}

.section-title p {
    margin-bottom: 0;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .info {
    position: relative;
    inset: 0;
    z-index: 3;
    padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
    .hero .info {
        padding: 100px 50px 60px 50px;
    }
}

.hero .info h2 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }
}

.hero .info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
}

.hero .info .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
    background: var(--accent-color);
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
}

.hero .carousel-item img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.70);
    background-color: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-control-prev {
    justify-content: start;
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }

    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

@media (min-width: 640px) {
    [dir="rtl"] .hero .carousel-control-prev {
        padding-right: 15px;
        padding-left: 0;
    }

    [dir="rtl"] .hero .carousel-control-next {
        padding-left: 15px;
        padding-right: 0;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

[dir="rtl"] .carousel-control-prev-icon,
[dir="rtl"] .carousel-control-next-icon {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 16px;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: var(--heading-color);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    /* font-size: 14px; */
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
    color: var(--heading-color);
}

.services .service-item:hover .icon:before {
    background: var(--accent-color);
}

.services .service-item:hover h3 {
    border-color: var(--accent-color);
    color: var(--heading-color);
}

.services .service-item:hover .readmore {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Goals Section
--------------------------------------------------------------*/

.goals-section {
    background: var(--surface);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.steps-wrapper {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 2rem; */
}

.vertical-line {
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--primary-dark) 30%,
            var(--primary-dark) 70%,
            transparent 100%);
    transform: translateX(-50%);
}

.steps-column {
    display: flex;
    flex-wrap: wrap;
    /* gap: 1.5rem; */
    z-index: 2;
    justify-content: center;
}

.step-box {
    background-color: white;
    border-radius: 16px;
    padding: 4rem 2.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    /* border: 1px solid rgba(0, 0, 0, 0.03); */
    overflow: hidden;
    /* margin: 10px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.step-box[style*="--index: 1"] {
    background-image: url('../img/hero-carousel/hero-1.webp');
}
.step-box[style*="--index: 2"] {
    background-image: url('../img/hero-carousel/hero-2.webp');
}
.step-box[style*="--index: 3"] {
    background-image: url('../img/hero-carousel/hero-3.webp');
}
.step-box[style*="--index: 4"] {
    background-image: url('../img/hero-carousel/hero-4.webp');
}

.step-box-overlay {
    opacity: 1;
    background-color: #fff;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.step-box:hover .step-box-overlay {
    background-color: var(--accent-color-80);
}


.step-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.step-box:hover * {
    color: white !important;
}


.goal-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(33, 134, 105, 0.1); */
    transition: var(--transition);
    transform: rotate(0);
    z-index: 1;
    position: relative;
}

.goal-icon i {
    color: var(--primary-dark);
    font-size: 1.8rem;
    transition: var(--transition);
}

/* .step-box:hover .goal-icon {
    background: var(--primary-dark);
    transform: rotate(5deg) scale(1.05);
} */

.step-box:hover .goal-icon i {
    color: white;
    transform: rotate(-5deg);
}

.step-title {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.step-box:hover .step-title {
    color: white !important;
}

.step-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* [dir="rtl"] .goals-section {
    direction: rtl;
} */

/* [dir="rtl"] .steps-column.left {
    margin-left: auto;
    margin-right: unset;
    padding-left: 5%;
    padding-right: unset;
} */

/* [dir="rtl"] .steps-column.right {
    margin-right: auto;
    margin-left: unset;
    padding-right: 5%;
    padding-left: unset;
} */

[dir="rtl"] .step-box:hover .goal-icon {
    transform: rotate(-5deg) scale(1.05);
}

[dir="rtl"] .step-box:hover .goal-icon i {
    transform: rotate(5deg);
}

@media (min-width: 992px) {
    .steps-wrapper {
        display: flex;
        justify-content: space-between;
    }

    /* .steps-column.left {
        margin-right: auto;
        padding-right: 5%;
    } */

    /* .steps-column.right {
        margin-left: auto;
        padding-left: 5%;
    } */

    /* .steps-column.right .step-box:first-child {
        margin-top: 8rem;
    } */
}

@media (max-width: 991px) {
    .vertical-line {
        display: none;
    }

    .goals-section {
        padding: 4rem 0;
    }

    .steps-wrapper {
        padding: 0 1rem;
    }

    .steps-column {
        /* width: 100% !important; */
        padding: 0 !important;
    }

    .step-box {
        margin-bottom: 1.5rem;
        padding: 1.5rem !important;
    }

    .goal-icon {
        margin: 0 auto 1rem;
        width: 50px;
        height: 50px;
    }

    .goal-icon i {
        font-size: 1.5rem;
    }

    .step-title {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1.2rem;
    }

    .step-description {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .steps-column.right .step-box:first-child {
        margin-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .step-box {
        padding: 2rem !important;
    }

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .client-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.clients .client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.clients .client-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 15px;
    transition: all 0.3s ease;
}

.clients .client-item:hover .client-logo {
    transform: scale(1.05);
}

.clients .client-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    transition: color 0.3s ease;
}

.clients .client-item:hover .client-name {
    color: var(--accent-color);
}

.clients .client-name-ar {
    font-size: 16px;
    color: var(--default-color);
    margin-top: 5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .clients .client-item {
        padding: 20px;
    }
    
    .clients .client-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .clients .client-name {
        font-size: 16px;
    }
    
    .clients .client-name-ar {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.projects .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.projects .portfolio-filters li:first-child {
    margin-left: 0;
}

.projects .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .projects .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.projects .portfolio-content {
    position: relative;
    overflow: hidden;
}

.projects .portfolio-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 31, 63, 0) 0%,
            rgba(0, 31, 63, 0.967949) 100%);
    z-index: 1;
}


.projects .portfolio-content img {
    transition: 0.3s;
}

.projects .portfolio-content:hover img {
    transform: scale(1.1);
}

.project-meta,
.project-actions {
    position: relative;
    z-index: 2;
}

.projects .portfolio-content:hover img {
    transform: scale(1.05);
}

.projects .portfolio-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
}

.projects .portfolio-content {
    background: #ffffff;
    ;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    position: relative;
}

.projects .portfolio-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.projects .portfolio-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.projects .portfolio-content img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.projects .portfolio-content:hover img {
    transform: scale(1.05);
}

.project-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: white;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #9CC5A1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.project-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.portfolio-content:hover .project-actions {
    opacity: 1;
}

.project-actions a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #216869;
    transition: all 0.3s ease;
}

.project-actions a:hover {
    background: #216869;
    color: white;
    transform: scale(1.1);
}

.filter-finishing .project-status,
.filter-structure .project-status,
.filter-turnkey .project-status {
    background: #9CC5A1;
}

.project-meta-card {
    background: #fff;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    background: var(--surface);
    padding: 2rem;
}

.meta-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.meta-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #216869;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform: scaleX(1);
}

.meta-item:hover::before {
    transform: scaleX(1);
}

.meta-item i {
    font-size: 1.5rem;
    color: #216869;
}

@media (max-width: 992px) {
    .row.g-5 {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    overflow: hidden;
    background-color: transparent !important;
}
.about .bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/saydan-logo.png');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: -1;
}

.modern-frame {
    /* border-radius: 20px 60px; */
    /* transform: rotate(-2deg); */
    /* box-shadow: 40px -40px 0 var(--primary-light); */
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    /* padding-right: 5%; */
}

.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 30px 0;
}

.about.section h2 {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.about.section h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

[dir="rtl"] .about.section h2::after {
    left: auto;
    right: 0;
}

.about.section img:hover {
    transform: scale(1.02);
}

.about.section .content {
    background-color: color-mix(in srgb, var(--surface-color), transparent 80%);
    border-radius: 8px;
}

.about.section h2 {
    color: var(--heading-color);
    font-weight: 700;
}

.about.section .lead {
    /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (min-width: 991px) {
    .about .inner-title {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.about ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    line-height: 1.2;
    color: var(--accent-color);
}

.about .about-img {
    min-height: 400px;
    position: relative;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 600px;
    }
}

.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.vision-mission {
    background: var(--surface);
    position: relative;
    padding: 4rem 0;
}

.vision-box,
.mission-box {
    background: rgba(255, 255, 255, 0.95);
    border-left: 4px solid var(--heading-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100%;
    border-radius: 16px;
}

.vision-box:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.mission-box:hover {
    transform: translateX(-10px);
    border-color: var(--accent-color);
}

.vision-mission .section-heading {
    color: var(--heading-color);
    position: relative;
}

@media (max-width: 768px) {

    .vision-box,
    .mission-box {
        margin: 1rem 0;
    }
}

.vision-mission .section-heading::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -6px;
    left: 0;
}

[dir="rtl"] .vision-mission .section-heading {
    padding-bottom: 10px;
}

[dir="rtl"] .vision-mission .section-heading::after {
    left: auto;
    right: 0;
}


/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 10px;
}

.project-details .swiper-wrapper {
    height: auto;

}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

    .project-details .swiper-button-prev,
    .project-details .swiper-button-next {
        display: none;
    }
}

.project-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.project-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    padding: 20px 0 30px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.contact .info-item i, .branch-info i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

@media (max-width: 575px) {
    .contact .email-form {
        padding: 20px;
    }
}

.contact .email-form input[type=text],
.contact .email-form input[type=email],
.contact .email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 16px;
    color: var(--default-color);
    background-color: var(--surface-color);
    border: 1px solid #ccc;
}

.contact .email-form input[type=text]:focus,
.contact .email-form input[type=email]:focus,
.contact .email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .email-form input[type=text]::placeholder,
.contact .email-form input[type=email]::placeholder,
.contact .email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

[dir="rtl"] .contact .email-form input[type=email]::placeholder,
[dir="rtl"] .contact .email-form input[type=email] {
    text-align: right;
    direction: rtl;
}

.contact .email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.btn-main {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}
.btn-main:hover {
    background: var(--saydan-dark-blue);
    color: var(--contrast-color);
}

.btn-sec{
    background: var(--saydan-light-gray);
}

.text-success{
    color: rgb(25,135,84) !important;
}
