﻿:root {
    --primary-color: #11284a;
    --secondary-color: #F5F5F5;
    --text-color: #81848A;
    --accent-color: #6295e0;
    --white-color: #FFFFFF;
    --divider-color: #EBEBEB;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Manrope", sans-serif;
    /* Brand Colors */
    --brand-navy: #11284a;
    --brand-orange: #6295e0;
}

body {
    font-family: var(--default-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    color: var(--text-color);
    direction: ltr;
    text-align: left;
}

p {
    line-height: 1.7em;
    margin-bottom: 1.6em;
}

h1, h2, h3, h4, h5, h6, span, a, li, button, input, textarea, .btn-default {
    margin: 0;
    font-weight: 700;
    line-height: 1.2em;
    /*color: var(--primary-color);*/
    font-family: var(--default-font) !important;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

    a:hover, a:focus {
        text-decoration: none;
        outline: 0;
    }

html, body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

    .image-anime:after {
        content: "";
        position: absolute;
        width: 200%;
        height: 0%;
        left: 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: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

    .reveal img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transform-origin: left;
    }

.row {
    margin-right: -15px;
    margin-left: -15px;
}

    .row > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row.no-gutters {
        margin-right: 0px;
        margin-left: 0px;
    }

        .row.no-gutters > * {
            padding-right: 0px;
            padding-left: 0px;
        }

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 0.6em;
    text-transform: capitalize;
    color: var(--white-color);
    /*background-color: var(--brand-orange);*/
    border-color: var(--brand-orange);
    border-radius: 10px;
    padding: 2px 40px 2px 2px;
    border: none;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

    .btn-default:hover {
       /* background-color: var(--brand-navy);
        border-color: var(--brand-navy);*/
    }

    .btn-default::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        bottom: 0;
        width: 12px;
        height: 12px;
        background-image: url('../images/arrow-white.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px auto;
        transform: translate(-15px, -50%);
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

    .btn-default:hover::before {
        transform: translate(-15px, -50%) rotate(45deg);
    }

    .btn-default::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        bottom: 0;
        width: 0;
        height: 100%;
        border-radius: 8px;
        /*background: var(--brand-navy);*/
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

    .btn-default:hover::after {
        width: 100%;
        left: 0;
        right: auto;
    }

    .btn-default span {
        position: relative;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        line-height: 1em;
        background-color: var(--brand-orange);
        /*color: var(--primary-color);*/
        border-radius: 8px;
        padding: 15px 20px;
        overflow: hidden;
        z-index: 1;
        transition: all 0.5s ease-in-out;
    }

    .btn-default:hover span {
        background-color: transparent;
        color: var(--white-color);
    }

    .btn-default span::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        bottom: 0;
        width: 0;
        height: 100%;
        border-radius: 8px;
        background: var(--accent-color);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .btn-default:hover span::after {
        width: 100%;
        left: 0;
        right: auto;
    }

.btn-highlighted {
    background-color: var(--white-color);
}

    .btn-highlighted:hover {
        background-color: var(--primary-color);
    }

    .btn-highlighted::before {
        background-image: url('../images/arrow-dark.svg');
    }

    .btn-highlighted:hover::before {
        filter: brightness(0) invert(1);
    }

    .btn-highlighted span {
        color: var(--white-color );
        background-color: var(--accent-color);
    }

    .btn-highlighted:hover span {
        color: var(--primary-color);
    }

    .btn-highlighted span::after {
        background: var(--white-color);
    }

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 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%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

    .section-row .section-title {
        margin-bottom: 0;
    }

.section-title-content {
    margin-right: 0;
    margin-left: 1px;
    text-align: left;
}

    .section-title-content p {
        margin: 0;
    }

.section-btn {
    text-align: right;
}

.section-title {
    margin-bottom: 40px;
    text-align: left;
}

    .section-title h3 {
        display: inline-block;
        position: relative;
        font-size: 35px;
        font-weight: 800;
        line-height: normal;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--brand-orange) !important;
        padding-left: 26px;
        padding-right: 0;
        margin-bottom: 15px;
    }

        .section-title h3::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: auto;
            transform: translateY(-50%);
            background: url('../images/icon-sub-heading.svg') no-repeat left center;
            background-size: cover;
            width: 16px;
            height: 16px;
        }

    .section-title h1 {
        font-size: 70px;
        font-weight: 300;
        line-height: 1.2em;
        letter-spacing: -0.01em;
        color: var(--primary-color);
        margin-bottom: 0;
        cursor: none;
    }

    .section-title h2 {
        font-size: 40px;
        font-weight: 300;
        line-height: 1.2em;
        letter-spacing: -0.01em;
        color: var(--primary-color);
        margin-bottom: 0;
        cursor: none;
    }

        .hero-content h1 span, .section-title h2 span, .section-title h1 span {
            font-weight: 700;
            color: var(--brand-orange) !important;
        }

    .section-title p {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .section-title-content.dark-section p,
    .section-title.dark-section p,
    .section-title.dark-section h1,
    .section-title.dark-section h2,
    .section-title.dark-section h3 {
        color: var(--white-color) !important;
    }

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

    .help-block.with-errors ul li {
        color: var(--error-color);
        font-weight: 500;
        font-size: 14px;
    }

header.main-header, .topbar {
    position: relative;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    height: 70px;
}

.topbar-contact-info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

    .topbar-contact-info ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
    }

        .topbar-contact-info ul li {
            display: inline-block;
            margin-right: 30px;
            margin-left: 0;
        }

            .topbar-contact-info ul li:last-child {
                margin-right: 0;
            }

            .topbar-contact-info ul li a {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .topbar-contact-info ul li .icon-box {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background: var(--accent-color);
                border-radius: 10px;
                margin-right: 15px;
                margin-left: 0;
                color: var(--brand-orange);
                transition: all 0.3s ease-in-out;
            }

            .topbar-contact-info ul li:hover .icon-box {
                background: var(--primary-color);
            }

    .topbar-contact-info li .icon-box img {
        max-width: 24px;
    }

    .topbar-contact-info ul li p {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

.topbar-qoute-btn {
    line-height: 1em;
}

.logo-panel-wrapper {
    position: absolute;
    top: 0;
    left: 8%;
    right: auto;
    z-index: 9999;
    width: 150px;
}

.site-logo {
    background: #fff;
    text-align: center;
    padding: 0px 0px 5px 0px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .site-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

header.main-header {
    position: relative;
    z-index: 100;
}

    header.main-header .header-sticky {
        position: relative;
        top: 0;
        z-index: 100;
        background: var(--brand-navy);
    }

        header.main-header .header-sticky.hide {
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
            border-radius: 0;
        }

.navbar {
    padding: 0;
    min-height: 60px;
    align-items: center;
    background: transparent;
}

.main-header .header-sticky.active-sticky-header.hide .navbar {
    padding: 20px 0;
}

.main-header .navbar-brand {
    padding: 0;
    margin: 0;
    display: none;
}

.main-header .header-sticky.active-sticky-header.hide .navbar-brand {
    display: block;
    margin-right: 40px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: right;
}

    .main-menu .nav-menu-wrapper > ul {
        align-items: center;
        display: inline-flex;
    }

.main-menu .navbar-nav {
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-left: 0;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.navbar-nav .nav-item {
    margin-right: 30px;
    margin-left: 0;
}

    .navbar-nav .nav-item:first-child {
        margin-left: 160px;
        margin-right: 30px;
    }

.main-menu ul li.nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
    color: var(--white-color);
    text-transform: capitalize;
    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-left: 8px;
}

.main-menu ul li .nav-link:hover,
.main-menu ul li .nav-link:focus {
    color: var(--brand-orange);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: '\f105';
    float: right;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu ul li.submenu > a:hover:after {
    transform: rotate(90deg);
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

    .main-menu ul ul li.nav-item .nav-link {
        color: var(--white-color);
        padding: 4px 20px !important;
        transition: all 0.3s ease-in-out;
    }

    .main-menu ul ul li .nav-link:hover,
    .main-menu ul ul li .nav-link:focus {
        color: var(--primary-color);
        background-color: transparent;
        padding: 4px 20px 4px 23px !important;
    }

.header-social-box {
    margin-right: 0;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 20px;
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.header-social-links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .header-social-links ul li {
        display: inline-block;
        margin-right: 20px;
    }

        .header-social-links ul li:last-child {
            margin-right: 0;
        }

        .header-social-links ul li a {
            color: #fff;
            transition: all 0.3s ease-in-out;
        }

        .header-social-links ul li:hover a {
            color: var(--brand-orange);
        }

        .header-social-links ul li a i {
            font-size: 20px;
        }

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
    float: right;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: #fff;
    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(--brand-navy);
    text-align: left;
}

    .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: 500;
    text-transform: capitalize;
    padding: 8px 20px;
    /*color: var(--dark-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(--primary-color);
    }

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

    .slicknav_arrow:after {
        content: '\f107';
        font-family: 'FontAwesome';
        font-weight: 900;
        font-size: 12px;
        margin-left: 8px;
        color: var(--dark-color);
        position: absolute;
        right: 15px;
        top: 15px;
        transition: all 0.3s ease-out;
    }

.slicknav_open > a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

.hero {
    padding: 150px 0 40px;
    position: relative;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
}

    .hero::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, transparent 42.92%, rgba(0, 0, 0, 0.5) 100%);
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero.hero-video .hero-bg-video {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

        .hero.hero-video .hero-bg-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .hero.hero-slider-layout {
        background: none;
        padding: 0;
    }

        .hero.hero-slider-layout .hero-slide {
            position: relative;
            padding: 210px 0;
        }

            .hero.hero-slider-layout .hero-slide::before {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .hero.hero-slider-layout .hero-slide .hero-slider-image {
                position: absolute;
                top: 0;
                right: 0;
                left: 0;
                bottom: 0;
            }

                .hero.hero-slider-layout .hero-slide .hero-slider-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

        .hero.hero-slider-layout .hero-pagination {
            position: absolute;
            bottom: 50px;
            text-align: left;
            padding-left: calc(((100vw - 1300px) / 2));
            z-index: 2;
        }

            .hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
                width: 12px;
                height: 12px;
                background: var(--white-color);
                opacity: 1;
                transition: all 0.3s ease-in-out;
                margin: 0 5px;
            }

            .hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
                background-color: var(--accent-color);
            }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.excellence-innovating-list {
    position: relative;
    border-top: 3px solid var(--dark-divider-color);
    padding-top: 50px;
    margin-top: 150px;
    z-index: 1;
}

    .excellence-innovating-list ul {
        margin: 0;
        padding-left: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 100px;
    }

        .excellence-innovating-list ul li {
            position: relative;
            color: var(--white-color);
            padding-left: 25px;
            padding-right: 0;
            margin-left: 0;
            font-weight: 800;
            font-size: 21px;
        }

            .excellence-innovating-list ul li:before {
                content: '';
                position: absolute;
                width: 24px;
                height: 24px;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                right: auto;
                background: url('../images/icon-check.svg') no-repeat center left;
                background-size: cover;
            }

.about-us {
    padding: 50px 0;
    background: url('../images/about-us-bg.svg') no-repeat bottom right;
    background-size: auto;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-top: 150px;
    margin-left: 40px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
}

    .about-img-2 figure,
    .about-img-1 figure {
        display: block;
        border-radius: 40px;
    }

        .about-img-1 figure img {
            border-radius: 40px;
        }

.about-img-2 img {
    border: 10px solid var(--white-color);
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 40px;
}

.company-experience {
    position: absolute;
    top: 15px;
    left: 0px;
    display: flex;
    align-items: center;
    max-width: 250px;
}

.company-experience-counter {
    width: 120px;
}

    .company-experience-counter h2 {
        font-size: 40px;
        color: var(--accent-color) !important;
    }

.company-experience-content p {
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
}

.about-content-list {
    margin-bottom: 40px;
}

    .about-content-list ul {
        margin: 0;
        padding-left: 0;
        list-style: none;
    }

        .about-content-list ul li {
            position: relative;
            color: var(--primary-color);
            text-transform: capitalize;
            padding-left: 25px;
            margin-bottom: 20px;
            font-weight: 800;
            font-size: 21px;
        }

            .about-content-list ul li:last-child {
                margin-bottom: 0;
            }

            .about-content-list ul li:before {
                content: '';
                position: absolute;
                width: 24px;
                height: 24px;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                right: auto;
                background: url('../images/icon-check.svg') no-repeat center left;
                background-size: cover;
            }

.genuine-rating-counter {
    background: var(--secondary-color);
    border-radius: 40px;
    padding: 50px;
    text-align: center;
}

    .genuine-rating-counter .about-counter {
        margin-bottom: 5px;
    }

        .genuine-rating-counter .about-counter h2 {
            background: url('../images/genuine-rating-counter-bg.jpg');
            background-size: cover;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 80px;
            font-weight: 900;
        }

.genuine-rating {
    margin-bottom: 20px;
}

    .genuine-rating ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .genuine-rating ul li {
            margin-right: 5px;
        }

            .genuine-rating ul li:last-child {
                margin-right: 0;
            }

            .genuine-rating ul li i {
                color: var(--accent-color);
            }

.genuine-rating-counter-content p {
    text-transform: capitalize;
    margin: 0;
}

.our-services {
    position: relative;
    padding: 100px 0 280px;
    background: url('../images/our-service-bg.jpg') no-repeat center center;
    background-size: cover;
}

    .our-services:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--primary-color);
        opacity: 70%;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .our-services .container {
        position: relative;
        z-index: 1;
    }

.our-story {
    padding: 100px 0;
}

.our-story-header-img {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .our-story-header-img figure {
        width: calc(50% - 15px);
        display: block;
        border-radius: 40px;
    }

        .our-story-header-img figure img {
            aspect-ratio: 1 / 0.71;
            object-fit: cover;
            border-radius: 40px;
        }

.our-story-img {
    margin-left: 40px;
}

    .our-story-img figure,
    .our-story-img img {
        width: 100%;
        display: block;
        border-radius: 40px;
    }

    .our-story-img img {
        aspect-ratio: 1 / 0.85;
        object-fit: cover;
    }

.our-story-content-body {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

    .our-story-content-body p:last-child {
        margin: 0;
    }

.our-story-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.our-story-counter {
    width: calc(33.33% - 20px);
}

    .our-story-counter h3 {
        font-size: 50px;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 5px;
    }

    .our-story-counter p {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4em;
        text-transform: capitalize;
        color: var(--primary-color);
        margin: 0;
    }

.our-story-intro-video {
    display: flex;
    align-items: center;
}

.our-story-client-img {
    margin-right: 50px;
}

    .our-story-client-img .client-image {
        display: inline-block;
        border: 1px solid var(--white-color);
        border-radius: 50%;
        margin-right: -18px;
        overflow: hidden;
    }

        .our-story-client-img .client-image:first-child {
            margin: 0;
        }

        .our-story-client-img .client-image figure {
            display: block;
        }

        .our-story-client-img .client-image img {
            max-width: 60px;
        }

.video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-play-button a {
        border: 6px solid var(--accent-color);
        border-radius: 50%;
        height: 66px;
        width: 66px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        cursor: none;
        transition: all 0.3s ease-in-out;
    }

    .video-play-button:hover a {
        border-color: var(--primary-color);
    }

    .video-play-button a i {
        font-size: 22px;
        color: var(--accent-color);
        transition: all 0.3s ease-in-out;
    }

    .video-play-button:hover a i {
        color: var(--primary-color);
    }

    .video-play-button p {
        color: var(--primary-color);
        font-weight: 600;
        text-transform: capitalize;
        margin: 0;
    }

.what-we-do {
    background: url('../images/what-we-do-bg.svg'), var(--primary-color);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}

    .what-we-do .container-fluid {
        padding: 0;
    }

.what-we-do-content {
    padding: 30px 120px;
    height: 100%;
}

.what-we-do-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.what-we-do-list-box-1,
.what-we-do-list-box-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-do-item {
    width: calc(50% - 15px);
    border: 1px solid var(--dark-divider-color);
    border-radius: 40px;
    padding: 30px;
    text-align: left;
}

.what-we-do-list-box-1 .what-we-do-item:nth-child(even) {
    background: var(--dark-divider-color);
}

.what-we-do-list-box-2 .what-we-do-item:nth-child(odd) {
    background: var(--dark-divider-color);
}

.what-we-do-item .icon-box {
    margin-bottom: 30px;
}

    .what-we-do-item .icon-box img {
        max-width: 50px;
    }

.what-we-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.what-we-item-content p {
    color: var(--white-color);
    opacity: 80%;
    margin: 0;
}

.what-we-do-footer {
    margin-top: 40px;
}

    .what-we-do-footer p {
        color: var(--white-color);
        margin: 0;
    }

        .what-we-do-footer p span {
            color: var(--accent-color);
            text-decoration: underline;
        }

.what-we-do-image {
    position: relative;
}

    .what-we-do-image,
    .what-we-do-image figure,
    .what-we-do-image figure img {
        width: 100%;
        height: 100%;
    }

        .what-we-do-image figure img {
            aspect-ratio: 1 / 0.97;
            object-fit: cover;
        }

.our-work {
    padding: 100px 0 60px;
}

.our-Project-nav {
    text-align: center;
    margin-bottom: 60px;
}

    .our-Project-nav ul {
        list-style: none;
        text-align: center;
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 60px;
        padding: 0;
        margin: 0;
    }

        .our-Project-nav ul li a {
            position: relative;
            display: inline-block;
            color: var(--primary-color);
            font-weight: 600;
            line-height: 1.2em;
            text-transform: capitalize;
            transition: all 0.3s ease-in-out;
        }

            .our-Project-nav ul li a:before {
                content: '/';
                position: absolute;
                top: 0;
                bottom: 0;
                left: -35px;
            }

        .our-Project-nav ul li:last-child a:before {
            display: none;
        }

        .our-Project-nav ul li a.active-btn,
        .our-Project-nav ul li a:hover {
            color: var(--accent-color);
        }

.project-item {
    position: relative;
    height: calc(100% - 40px);
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.project-image {
    position: relative;
    margin-bottom: 30px;
}

    .project-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        aspect-ratio: 1 / 0.7;
        object-fit: cover;
        border-radius: 40px;
        transition: all 0.4s ease-in-out;
    }

.project-item:hover .project-image figure img {
    transform: scale(1.1);
}

.project-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
}

    .project-tag a {
        position: relative;
        display: block;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        color: var(--white-color);
        border-radius: 10px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.1em;
        text-transform: capitalize;
        padding: 10px 12px;
        overflow: hidden;
    }

        .project-tag a::before {
            content: '';
            position: absolute;
            display: block;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primary-color);
            opacity: 10%;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

.project-content {
    text-align: center;
}

    .project-content h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
    }

        .project-content h3 a {
            color: inherit;
        }

.our-process {
    background: var(--secondary-color);
    padding: 35px 0;
}

.our-process-image {
    margin-right: 30px;
}

    .our-process-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .our-process-image img {
        width: 100%;
        aspect-ratio: 1 / 0.93;
        object-fit: cover;
        border-radius: 40px;
    }

.process-step-item {
    position: relative;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    padding-left: 12px;
    border-left: 2px solid #eee;
}

    .process-step-item:last-child {
        margin-bottom: 0;
    }

    .process-step-item::before {
        content: '';
        display: block;
        position: absolute;
        top: auto;
        bottom: 0;
        left: -9px;
        background: var(--accent-color);
        width: 100%;
        height: 0;
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

    .process-step-item.active:before,
    .process-step-item:hover:before {
        height: 100%;
        top: 0;
        bottom: auto;
    }

.process-step-no {
    position: relative;
    margin-right: 20px;
    color: var(--brand-navy);
    z-index: 1;
}

    .process-step-no h2 {
        font-size: 50px;
        font-weight: 700;
        color: var(--accent-color);
        transition: all 0.3s ease-in-out;
    }

.process-step-content {
    position: relative;
    z-index: 1;
}

    .process-step-content h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: all 0.3s ease-in-out;
    }

    .process-step-content p {
        margin: 0;
        transition: all 0.3s ease-in-out;
    }

.process-step-item.active .process-step-content p,
.process-step-item.active .process-step-content h3,
.process-step-item.active .process-step-no h2,
.process-step-item:hover .process-step-content p,
.process-step-item:hover .process-step-content h3,
.process-step-item:hover .process-step-no h2 {
    color: var(--white-color);
}

.our-pricing {
    padding: 100px 0;
}

.pricing-box {
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 50px;
    overflow: hidden;
}

    .pricing-box::before {
        content: '';
        position: absolute;
        top: -25px;
        right: -25px;
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 150px;
        height: 150px;
        z-index: 0;
    }

    .pricing-box.highlighted-box::before {
        filter: brightness(0) invert(1);
    }

    .pricing-box.box-1::before {
        background-image: url('../images/icon-pricing-box-1.svg');
    }

    .pricing-box.box-2::before {
        background-image: url('../images/icon-pricing-box-2.svg');
    }

    .pricing-box.box-3::before {
        background-image: url('../images/icon-pricing-box-3.svg');
    }

    .pricing-box.highlighted-box {
        background-color: var(--accent-color);
        border-top: 5px solid var(--brand-orange);
    }

        .pricing-box.highlighted-box .btn-default {
            background: var(--brand-navy);
            border-color: var(--brand-navy);
        }

            .pricing-box.highlighted-box .btn-default:hover {
                background: var(--brand-orange);
                border-color: var(--brand-orange);
            }

.pricing-title {
    margin-bottom: 60px;
}

    .pricing-title h2 {
        font-size: 60px;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

.pricing-box.highlighted-box .pricing-title h2 {
    color: var(--white-color);
}

.pricing-title h2 sup {
    font-size: 30px;
}

.pricing-title h2 sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub {
    color: var(--white-color);
}

.pricing-title h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-title h3 {
    color: var(--white-color);
}

.pricing-list {
    margin-bottom: 60px;
}

    .pricing-list ul {
        margin: 0;
        padding-left: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

        .pricing-list ul li {
            width: 100%;
            position: relative;
            color: var(--primary-color);
            text-transform: capitalize;
            padding-left: 30px;
        }

.pricing-box.highlighted-box .pricing-list ul li {
    color: var(--white-color);
}

.pricing-list ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--brand-orange);
}

.pricing-box.highlighted-box .pricing-list ul li::before {
    filter: brightness(0) invert(1);
}

.pricing-btn {
    line-height: 1em;
}

.pricing-benefit-list {
    margin-top: 30px;
}

    .pricing-benefit-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 40px;
    }

        .pricing-benefit-list ul li {
            color: var(--primary-color);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

            .pricing-benefit-list ul li img {
                max-width: 20px;
                margin-right: 15px;
            }

.our-testimonial {
    background: url('../images/testimonial-bg.png'), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 10px 0;
}

.our-testimonial-image {
    margin-right: 30px;
}

    .our-testimonial-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .our-testimonial-image img {
        aspect-ratio: 1 / 1.05;
        border-radius: 40px;
        object-fit: cover;
    }

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-item .testimonial-rating i {
    color: var(--accent-color);
}

.testimonial-content {
    margin-bottom: 60px;
}

    .testimonial-content p {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
    }

.testimonial-body {
    display: flex;
    align-items: center;
}

    .testimonial-body .author-image {
        margin-right: 15px;
    }

        .testimonial-body .author-image img {
            width: 60px;
            height: 60px;
            border-radius: 10px;
        }

    .testimonial-body .author-content {
        width: calc(100% - 75px);
    }

        .testimonial-body .author-content h3 {
            font-size: 20px;
            text-transform: capitalize;
            margin-bottom: 5px;
        }

        .testimonial-body .author-content p {
            margin: 0;
        }

.testimonial-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 30px;
    z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
    position: relative;
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
    margin-left: 30px;
}


    .testimonial-slider .testimonial-button-next:hover,
    .testimonial-slider .testimonial-button-prev:hover {
        background: var(--primary-color);
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: url('../images/arrow-white.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px auto;
        transform: rotate(45deg);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease-in-out;
    }

.testimonial-slider .testimonial-button-prev::before {
    transform: rotate(225deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before {
    color: var(--primary-color);
}

.testimonial-company-slider {
    border-top: 1px solid var(--divider-color);
    padding-top: 80px;
    margin-top: 80px;
}

    .testimonial-company-slider .company-logo {
        text-align: center;
    }

        .testimonial-company-slider .company-logo img {
            width: 100%;
            max-height: 40px;
        }

.our-blog {
    padding: 100px 0 70px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 30px;
}

    .post-featured-image a {
        cursor: none;
    }

    .post-featured-image figure,
    .post-featured-image a {
        display: block;
        border-radius: 40px;
    }

    .post-featured-image img {
        width: 100%;
        aspect-ratio: 1 / 0.63;
        object-fit: cover;
        border-radius: 40px;
        transition: all 0.4s ease-in-out;
    }

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-item-content {
    width: 65%;
}

    .post-item-content h2 {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4em;
    }

        .post-item-content h2 a {
            color: inherit;
        }

.post-item-btn {
    text-align: right;
    margin-left: 20px;
}

    .post-item-btn a {
        background-color: var(--accent-color);
        border-radius: 10px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }

        .post-item-btn a:hover {
            background-color: var(--primary-color);
        }

        .post-item-btn a img {
            max-width: 24px;
            transition: all 0.3s ease-in-out;
        }

        .post-item-btn a:hover img {
            transform: rotate(45deg);
        }

.main-footer {
    background: url(../images/footer-bg.svg), var(--primary-color);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
    padding: 40px 0 0;
}

.footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 17px;
    padding-bottom: 17px;
}

    .footer-header .section-title {
        margin-bottom: 0;
    }

.footer-contact-circle {
    margin-right: 20px;
    left: auto;
}

    .footer-contact-circle img {
        max-width: 130px;
        animation: contactrotate 20s infinite linear;
    }

.about-footer {
    width: 100%;
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        max-width: 150px;
    }

.about-footer-content {
    margin-bottom: 20px;
}

    .about-footer-content p {
        color: var(--white-color);
        margin: 0;
    }

.footer-social-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .footer-social-links ul li {
        display: inline-block;
        border-radius: 50%;
        margin-right: 15px;
    }

        .footer-social-links ul li:last-child {
            margin-right: 0;
        }

        .footer-social-links ul li a {
            background: var(--brand-navy);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
        }

        .footer-social-links ul li:hover a {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
        }

        .footer-social-links ul li a i {
            color: var(--white-color);
            font-size: 18px;
            transition: all 0.3s ease-in-out;
        }

.footer-links h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

    .footer-links ul li {
        color: var(--white-color);
        text-transform: capitalize;
        margin-bottom: 15px;
    }

        .footer-links ul li:last-child {
            margin-bottom: 0;
        }

        .footer-links ul li a {
            color: inherit;
            padding-left: 0;
            transition: padding-left 0.3s ease-in-out;
        }

        .footer-links ul li:hover a {
            color: var(--brand-orange);
            padding-left: 10px;
        }

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--dark-divider-color);
    padding: 17px 0;
    margin-top: 17px;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 190px 0;
}

    .page-header::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 23.99%, rgba(0, 0, 0, 0.8) 100%);
        width: 100%;
        height: 100%;
        z-index: 0;
    }

.page-header-box {
    position: relative;
    z-index: 1;
}

    .page-header-box h1 {
        color: var(--white-color);
        font-size: 70px;
        font-weight: 300;
        line-height: 1.2em;
        letter-spacing: -0.01em;
        margin-bottom: 5px;
        cursor: none;
    }

        .page-header-box h1 span {
            font-weight: 700;
        }

    .page-header-box nav {
        display: flex;
        justify-content: flex-start;
    }

    .page-header-box .breadcrumb {
        background: transparent;
        padding: 0;
        margin: 0;
        display: flex;
        list-style: none;
    }

    .page-header-box .breadcrumb-item {
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

        .page-header-box .breadcrumb-item a {
            color: #fff;
            transition: color 0.3s ease;
        }

            .page-header-box .breadcrumb-item a:hover, .page-header-box .breadcrumb-item.active {
                color: var(--brand-orange) !important;
            }

        .page-header-box .breadcrumb-item + .breadcrumb-item::before {
            content: "\f111";
            font-family: "Font Awesome 6 Free", "FontAwesome";
            font-weight: 900;
            font-size: 6px;
            color: var(--brand-orange);
            margin: 0 12px;
            float: none !important;
        }

.our-mission-vision {
    position: relative;
}

.mission-vision-bg {
    position: relative;
    background: url('../images/our-service-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 200px;
}

    .mission-vision-bg:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--primary-color);
        opacity: 70%;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

.mission-vision-box {
    position: relative;
    border: 1px solid var(--dark-divider-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border-radius: 40px;
    margin-top: -200px;
    overflow: hidden;
    z-index: 1;
}

.mission-vision-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background-color: var(--white-color);
    border-bottom: 1px solid var(--divider-color);
    overflow: hidden;
}

    .mission-vision-nav ul li {
        width: 33.33%;
        position: relative;
        display: inline-block;
        text-align: center;
    }

        .mission-vision-nav ul li:last-child {
            padding-right: 0;
        }

        .mission-vision-nav ul li .nav-link {
            display: block;
            width: 100%;
            background: transparent;
            border: none;
            border-radius: 0;
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 600;
            line-height: 1.2em;
            padding: 30px;
            text-transform: capitalize;
            transition: all 0.3s ease-in-out;
        }

            .mission-vision-nav ul li .nav-link.active,
            .mission-vision-nav ul li .nav-link:hover {
                background: var(--accent-color);
                color: var(--white-color);
                border-radius: 0;
            }

            .mission-vision-nav ul li .nav-link img {
                max-width: 40px;
                margin-right: 20px;
                transition: all 0.3s ease-in-out;
            }

            .mission-vision-nav ul li .nav-link.active img,
            .mission-vision-nav ul li .nav-link:hover img {
                filter: brightness(0) invert(1);
            }

.mission-vision-item {
    background-color: var(--white-color);
    padding: 80px;
}

.mission-vision-content-header {
    margin-bottom: 40px;
}

    .mission-vision-content-header p {
        margin: 0;
    }

.mission-vision-content-list ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

    .mission-vision-content-list ul li {
        position: relative;
        color: var(--brand-navy);
        text-transform: capitalize;
        padding-left: 40px;
        margin-bottom: 20px;
        text-align: left;
        font-weight: 600;
    }

        .mission-vision-content-list ul li:last-child {
            margin-bottom: 0;
        }

        .mission-vision-content-list ul li:before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            background: url('../images/icon-check.svg') no-repeat center left;
            background-size: contain;
        }

.mission-vision-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.mission-vision-image img {
    width: 100%;
    aspect-ratio: 1 / 0.63;
    object-fit: cover;
    border-radius: 40px;
}

.our-history {
    padding: 100px 0;
}

.our-history-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.our-history-nav {
    width: calc(30% - 25px);
}

    .our-history-nav ul {
        list-style: none;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        background-color: var(--white-color);
        border: 1px solid var(--secondary-color);
        box-shadow: 0px 4px 30px 0px #0000000A;
        border-radius: 20px;
        overflow: hidden;
    }

        .our-history-nav ul li {
            width: 100%;
            position: relative;
            display: inline-block;
            text-align: center;
        }

            .our-history-nav ul li:last-child {
                border: none;
            }

            .our-history-nav ul li .nav-link {
                display: block;
                width: 100%;
                background: transparent;
                border-radius: 0;
                color: var(--primary-color);
                font-size: 20px;
                font-weight: 600;
                line-height: 1.2em;
                text-transform: capitalize;
                border-bottom: 1px solid var(--divider-color);
                padding: 30px;
                transition: all 0.3s ease-in-out;
            }

                .our-history-nav ul li .nav-link.active,
                .our-history-nav ul li .nav-link:hover {
                    background: var(--accent-color);
                    color: var(--white-color);
                    border-radius: 0;
                }

.our-history-item {
    width: calc(70% - 25px);
}

.our-history-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .our-history-list ul li {
        position: relative;
        color: var(--primary-color);
        text-transform: capitalize;
        padding-left: 40px;
        margin-bottom: 20px;
    }

        .our-history-list ul li:last-child {
            margin-bottom: 0;
        }

        .our-history-list ul li:before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            background: url('../images/icon-check.svg') no-repeat center left;
            background-size: cover;
        }

.our-history-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.our-history-image img {
    width: 100%;
    aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}

.our-features {
    padding: 100px 0;
}

.our-features-boxes {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--divider-color);
    border-radius: 40px;
    overflow: hidden;
}

.our-features-item {
    position: relative;
    width: 50%;
    padding: 50px;
    overflow: hidden;
}

    .our-features-item:nth-child(1n + 1) {
        border-right: 1px solid var(--divider-color);
        border-bottom: 1px solid var(--divider-color);
    }

    .our-features-item:nth-child(2n + 2) {
        border-right: none;
    }

    .our-features-item::before {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--accent-color);
        border-radius: 0;
        height: 100%;
        width: 100%;
        transition: all 0.4s ease-in-out;
        opacity: 0;
        z-index: -1;
    }

    .our-features-item:hover::before {
        top: 0;
        border-radius: 0;
        opacity: 1;
    }

    .our-features-item .icon-box {
        margin-bottom: 30px;
    }

        .our-features-item .icon-box img {
            max-width: 50px;
            transition: all 0.4s ease-in-out;
        }

    .our-features-item:hover .icon-box img {
        filter: brightness(0) invert(1);
    }

.features-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.features-item-content p {
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.our-features-item:hover .features-item-content p,
.our-features-item:hover .features-item-content h3 {
    color: var(--white-color);
}

.our-features-item.features-image-box {
    border: none;
    padding: 0;
}

    .our-features-item.features-image-box figure {
        display: block;
        height: 100%;
    }

    .our-features-item.features-image-box img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 0.485;
        object-fit: cover;
    }

.our-team {
    padding: 100px 0 70px;
}

.team-member-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

    .team-image a {
        display: block;
        cursor: none;
    }

    .team-image figure {
        position: relative;
    }

        .team-image figure::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.93%, rgba(0, 0, 0, 0.8) 95.83%);
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            z-index: 1;
        }

.team-member-item:hover .team-image figure::before {
    opacity: 1;
    visibility: visible;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(100%);
    text-align: center;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
    bottom: 20px;
    transform: translateY(0);
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .team-social-icon ul li {
        display: inline-block;
        text-align: center;
        margin-right: 20px;
    }

        .team-social-icon ul li:last-child {
            margin-right: 0;
        }

        .team-social-icon ul li a {
            color: var(--white-color);
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

            .team-social-icon ul li a i {
                font-size: 20px;
                color: inherit;
            }

            .team-social-icon ul li a:hover {
                color: var(--accent-color);
            }

.team-content {
    text-align: center;
}

    .team-content h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .team-content h3:hover {
            color: var(--accent-color);
        }

        .team-content h3 a {
            color: inherit;
        }

    .team-content p {
        text-transform: capitalize;
        margin: 0;
    }

.our-faqs {
    padding: 20px 0;
}

.our-faqs-images {
    position: relative;
}

.our-faqs-img figure {
    position: relative;
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

    .our-faqs-img figure::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(34, 34, 34, 0) 64.31%, rgba(34, 34, 34, 0.8) 100%);
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .our-faqs-img figure img {
        width: 100%;
        aspect-ratio: 1 / 0.99;
        object-fit: cover;
    }

.faqs-img-cta-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1;
}

    .faqs-img-cta-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .faqs-img-cta-box ul li {
            display: inline-block;
            margin-right: 40px;
        }

            .faqs-img-cta-box ul li:last-child {
                margin-right: 0;
            }

            .faqs-img-cta-box ul li a img {
                max-width: 30px;
                margin-right: 15px;
            }

            .faqs-img-cta-box ul li a {
                font-size: 20px;
                font-weight: 600;
                color: var(--white-color);
                transition: all 0.3s ease-in-out;
            }

            .faqs-img-cta-box ul li:hover a {
                color: var(--accent-color);
            }

.our-faq-section .accordion-item {
    padding: 0;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

    .our-faq-section .accordion-item:last-child {
        margin-bottom: 0;
    }

.our-faq-section .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    background-color: transparent;
    color: var(--white-color);
    padding: 15px 50px 15px 20px;
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--white-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after {
    content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-body {
    background: var(--accent-color);
    padding: 15px 50px 15px 20px;
}

    .our-faq-section .accordion-item .accordion-body p {
        color: var(--white-color);
        margin: 0;
    }

.page-services {
    padding: 100px 0 70px;
}

    .page-services .service-item {
        border: 1px solid var(--divider-color);
        border-radius: 40px;
        height: calc(100% - 30px);
        margin-bottom: 30px;
        padding: 30px;
        transition: all 0.3s ease-in-out;
    }

        .page-services .service-item:hover {
            border-color: var(--secondary-color);
            box-shadow: 0px 4px 30px 0px #0000000A;
        }

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.service-catagery-list {
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0px 4px 30px 0px #0000000A;
    overflow: hidden;
}

    .service-catagery-list h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        background-color: var(--accent-color);
        color: var(--white-color);
        padding: 20px 30px;
    }

    .service-catagery-list ul {
        list-style: none;
        margin: 0;
        padding: 30px;
    }

        .service-catagery-list ul li {
            border-bottom: 1px solid var(--divider-color);
            padding-bottom: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease-in-out;
        }

            .service-catagery-list ul li:last-child {
                margin: 0;
                padding: 0;
                border-bottom: none;
            }

            .service-catagery-list ul li a {
                position: relative;
                display: block;
                text-transform: capitalize;
                color: var(--text-color);
                transition: all 0.3s ease-in-out;
            }

                .service-catagery-list ul li a:hover {
                    color: var(--accent-color);
                }

                .service-catagery-list ul li a::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 0;
                    background: url(../images/arrow-dark.svg) no-repeat;
                    background-size: cover;
                    width: 24px;
                    height: 24px;
                    transform: translateY(-50%);
                    transition: all 0.3s ease-in-out;
                }

                .service-catagery-list ul li a:hover:before {
                    transform: translateY(-50%) rotate(45deg);
                }

.sidebar-cta-box {
    position: relative;
    background-image: url(../images/sidebar-cta-bg-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    z-index: 1;
}

    .sidebar-cta-box::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        opacity: 70%;
        height: 100%;
        width: 100%;
        z-index: 0;
    }

.sidebar-cta-logo {
    position: relative;
    margin-bottom: 30px;
}

    .sidebar-cta-logo img {
        width: 100%;
        max-width: 160px;
    }

.sidebar-cta-content {
    position: relative;
    margin-bottom: 30px;
}

    .sidebar-cta-content h3 {
        font-size: 40px;
        font-weight: 300;
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .sidebar-cta-content h3 span {
            font-weight: 700;
        }

    .sidebar-cta-content p {
        color: var(--white-color);
        margin-bottom: 0;
    }

.sidebar-cta-contact-list {
    position: relative;
}

.sidebar-cta-contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .sidebar-cta-contact-item:last-child {
        margin: 0;
    }

    .sidebar-cta-contact-item .icon-box {
        position: relative;
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        margin-right: 15px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        overflow: hidden;
        z-index: 1;
    }

        .sidebar-cta-contact-item .icon-box::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--white-color);
            opacity: 16%;
            height: 100%;
            width: 100%;
            border-radius: 10px;
            z-index: 0;
        }

    .sidebar-cta-contact-item img {
        position: relative;
        max-width: 24px;
        z-index: 1;
    }

.cta-contact-item-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .cta-contact-item-title h3 {
    color: var(--accent-color);
}

.service-featured-image {
    margin-bottom: 30px;
}

    .service-featured-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .service-featured-image img {
        border-radius: 40px;
        width: 100%;
        aspect-ratio: 1 / 0.67;
        object-fit: cover;
    }

.service-entry {
    margin-bottom: 40px;
}

    .service-entry h2 {
        font-size: 50px;
        font-weight: 300;
        margin-bottom: 20px;
    }

        .service-entry h2 span {
            font-weight: 700;
        }

    .service-entry p {
        margin-bottom: 20px;
    }

        .service-entry p:last-child {
            margin-bottom: 0;
        }

    .service-entry ul {
        padding: 0;
        margin-bottom: 40px;
        list-style: none;
        display: flex;
        gap: 20px 30px;
        flex-wrap: wrap;
    }

        .service-entry ul li {
            position: relative;
            width: calc(33.33% - 20px);
            color: var(--primary-color);
            text-transform: capitalize;
            padding-left: 40px;
        }

            .service-entry ul li::before {
                content: '';
                position: absolute;
                width: 24px;
                height: 24px;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                background: url(../images/icon-check.svg) no-repeat center left;
                background-size: cover;
            }

.service-entry-box {
    display: flex;
    gap: 80px 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.service-entry-item {
    position: relative;
    width: calc(50% - 15px);
}

    .service-entry-item::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--divider-color);
        height: 1px;
        width: 100%;
        transform: translateY(40px);
    }

    .service-entry-item:nth-last-child(-n + 2)::before {
        display: none;
    }

    .service-entry-item .icon-box {
        margin-bottom: 30px;
    }

        .service-entry-item .icon-box img {
            max-width: 50px;
        }

.service-entry-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.service-entry-item-content p {
    margin-bottom: 0;
}

.service-entry-images {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-entry-img {
    width: calc(50% - 15px);
}

    .service-entry-img figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .service-entry-img img {
        width: 100%;
        aspect-ratio: 1 / 0.96;
        object-fit: cover;
        border-radius: 40px;
    }

.page-blog {
    padding: 100px 0;
}

    .page-blog .post-item {
        height: calc(100% - 40px);
        margin-bottom: 40px;
    }

    .page-blog .post-featured-image img {
        aspect-ratio: 1 / 0.91;
    }

    .page-blog .post-item .post-item-body {
        display: block;
    }

    .page-blog .post-item .post-item-content {
        width: 100%;
        margin-bottom: 20px;
    }

.post-readmore-btn a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    padding-right: 34px;
    transition: all 0.3s ease-in-out;
}

    .post-readmore-btn a:hover {
        color: var(--primary-color);
    }

    .post-readmore-btn a::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 24px;
        height: 24px;
        background-image: url(../images/arrow-accent.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
        transform: translateY(-50%);
        transition: all 0.3s ease-in-out;
        z-index: 1;
    }

    .post-readmore-btn a:hover::before {
        transform: translateY(-50%) rotate(45deg);
        filter: brightness(0) invert(0);
    }

.page-pagination {
    margin-top: 10px;
    text-align: center;
}

    .page-pagination ul {
        justify-content: center;
        padding: 0;
        margin: 0;
    }

        .page-pagination ul li a,
        .page-pagination ul li span {
            display: flex;
            text-decoration: none;
            justify-content: center;
            align-items: center;
            background: var(--divider-color);
            color: var(--primary-color);
            border-radius: 10px;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            font-weight: 700;
            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);
                color: var(--white-color);
            }

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

    .post-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.50;
        border-radius: 40px;
        object-fit: cover;
    }

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .post-entry:after {
        content: '';
        display: block;
        clear: both;
    }

    .post-entry a {
        color: var(--accent-color);
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        font-weight: 700;
        line-height: 1.2em;
        margin: 0 0 0.6em;
    }

    .post-entry h1 {
        font-size: 70px;
    }

    .post-entry h2 {
        font-size: 50px;
    }

    .post-entry h3 {
        font-size: 46px;
    }

    .post-entry h4 {
        font-size: 30px;
    }

    .post-entry h5 {
        font-size: 24px;
    }

    .post-entry h6 {
        font-size: 18px;
    }

    .post-entry p {
        margin-bottom: 20px;
    }

        .post-entry p:last-child {
            margin-bottom: 0;
        }

        .post-entry p strong {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: 600;
        }

    .post-entry ol {
        margin: 0 0 30px;
    }

        .post-entry ol li {
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
        }

    .post-entry ul {
        padding: 0;
        margin: 20px 0 20px;
        padding-left: 20px;
    }

        .post-entry ul li {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-color);
            position: relative;
            margin-bottom: 15px;
        }

            .post-entry ul li:last-child {
                margin-bottom: 0;
            }

        .post-entry ul ul,
        .post-entry ul ol,
        .post-entry ol ol,
        .post-entry ol ul {
            margin-top: 20px;
            margin-bottom: 0;
        }

            .post-entry ul ul li:last-child,
            .post-entry ul ol li:last-child,
            .post-entry ol ol li:last-child,
            .post-entry ol ul li:last-child {
                margin-bottom: 0;
            }

    .post-entry blockquote {
        background: url(../images/icon-blockquote.svg), var(--primary-color);
        background-repeat: no-repeat;
        background-position: 35px 30px;
        background-size: 58px;
        border-radius: 30px;
        padding: 30px 30px 30px 100px;
        margin-bottom: 30px;
    }

        .post-entry blockquote p {
            font-family: var(--accent-font);
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4em;
            color: var(--white-color);
        }

            .post-entry blockquote p:last-child {
                margin-bottom: 0;
            }

.tag-links {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 6px 20px;
    transition: all 0.3s ease-in-out;
}

    .post-tags .tag-links a:hover {
        background: var(--primary-color);
    }

.post-social-sharing {
    text-align: right;
}

    .post-social-sharing ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .post-social-sharing ul li {
            display: inline-block;
            margin-right: 10px;
        }

            .post-social-sharing ul li:last-child {
                margin-right: 0;
            }

            .post-social-sharing ul li a {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: var(--accent-color);
                color: var(--white-color);
                border-radius: 10px;
                width: 36px;
                height: 36px;
                transition: all 0.3s ease-in-out;
            }

            .post-social-sharing ul li:hover a {
                background: var(--primary-color);
            }

            .post-social-sharing ul li a i {
                font-size: 18px;
                color: inherit;
            }

.page-projects {
    padding: 100px 0 60px;
}

.page-project-single {
    padding: 100px 0;
}

.project-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.project-detail-box {
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.project-detail-title {
    background-color: var(--accent-color);
    padding: 20px 30px;
}

    .project-detail-title h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--white-color);
    }

.project-detail-list {
    padding: 30px;
}

.project-detail-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .project-detail-item:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .project-detail-item .icon-box {
        background-color: var(--accent-color);
        border-radius: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        transition: all 0.3s ease-in-out;
    }

    .project-detail-item:hover .icon-box {
        background-color: var(--primary-color);
    }

    .project-detail-item .icon-box img {
        max-width: 20px;
    }

.project-detail-content {
    width: calc(100% - 60px);
}

    .project-detail-content h3 {
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .project-detail-content p {
        margin-bottom: 0;
    }

.project-single-image {
    margin-bottom: 30px;
}

    .project-single-image figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .project-single-image img {
        border-radius: 40px;
        width: 100%;
        aspect-ratio: 1 / 0.67;
        object-fit: cover;
    }

.project-entry {
    margin-bottom: 60px;
}

.project-info,
.project-goal {
    margin-bottom: 60px;
}

.project-entry h2 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

    .project-entry h2 span {
        font-weight: 700;
    }

.project-entry p {
    margin-bottom: 20px;
}

    .project-entry p:last-child {
        margin-bottom: 0;
    }

.project-entry ul {
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
}

    .project-entry ul li {
        position: relative;
        width: calc(50% - 15px);
        color: var(--primary-color);
        text-transform: capitalize;
        padding-left: 40px;
    }

        .project-entry ul li::before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            background: url(../images/icon-check.svg) no-repeat center left;
            background-size: cover;
        }

.project-query-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

    .project-query-item:last-child {
        margin-bottom: 0;
    }

    .project-query-item:nth-of-type(even) {
        flex-direction: row-reverse;
    }

.project-query-content {
    width: calc(50% - 15px);
}

.project-query-box ul {
    margin-bottom: 0;
}

    .project-query-box ul li {
        width: 100%;
    }

.project-query-img {
    width: calc(50% - 15px);
}

    .project-query-img figure {
        display: block;
        border-radius: 40px;
        overflow: hidden;
    }

    .project-query-img img {
        width: 100%;
        aspect-ratio: 1 / 0.73;
        object-fit: cover;
        border-radius: 40px;
    }

.page-team {
    padding: 100px 0 70px;
}

.page-team-single {
    padding: 100px 0;
}

.team-member-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.team-member-box {
    background-color: var(--white-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border: 1px solid var(--secondary-color);
    border-radius: 40px;
    padding: 30px;
    margin-bottom: 60px;
}

.team-member-image {
    margin-bottom: 30px;
}

    .team-member-image figure {
        display: block;
        border-radius: 30px;
        overflow: hidden;
    }

    .team-member-image img {
        width: 100%;
        aspect-ratio: 1 / 1.15;
        object-fit: cover;
        border-radius: 30px;
        transition: all 0.4s ease-in-out;
    }

.team-member-box:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-name {
    text-align: center;
    margin-bottom: 20px;
}

    .team-member-name h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--accent-color);
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .team-member-name p {
        text-transform: capitalize;
        margin: 0;
    }

.team-member-social-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

    .team-member-social-list ul li {
        display: inline-block;
        margin-right: 20px;
    }

        .team-member-social-list ul li:last-child {
            margin: 0;
        }

        .team-member-social-list ul li a {
            color: var(--accent-color);
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

            .team-member-social-list ul li a:hover {
                color: var(--primary-color);
            }

            .team-member-social-list ul li a i {
                font-size: 20px;
                color: inherit;
            }

.team-detail-box {
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border-radius: 20px;
    overflow: hidden;
}

.team-detail-title {
    background-color: var(--accent-color);
    padding: 22px 30px;
}

    .team-detail-title h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--white-color);
    }

.team-detail-list {
    padding: 30px;
}

.team-detail-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .team-detail-item:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .team-detail-item .icon-box {
        background-color: var(--accent-color);
        border-radius: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        transition: all 0.3s ease-in-out;
    }

    .team-detail-item:hover .icon-box {
        background-color: var(--primary-color);
    }

    .team-detail-item .icon-box img {
        max-width: 20px;
    }

.team-detail-content {
    width: calc(100% - 60px);
}

    .team-detail-content h3 {
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .team-detail-content p {
        margin-bottom: 0;
    }

.team-member-info,
.team-member-skills-feature {
    margin-bottom: 60px;
}

.team-member-content h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

    .team-member-content h2 span {
        font-weight: 700;
    }

.team-member-content p {
    margin-bottom: 20px;
}

    .team-member-content p:last-child {
        margin-bottom: 0;
    }

.team-member-skills-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member-skills,
.team-member-feature {
    width: calc(50% - 15px);
}

.skills-progress-bar {
    margin-bottom: 20px;
}

    .skills-progress-bar:last-child {
        margin-bottom: 0;
    }

    .skills-progress-bar .skill-data {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .skills-progress-bar .skill-data .skill-title {
            font-size: 15px;
            font-weight: 400;
            color: var(--text-color);
            text-transform: capitalize;
        }

        .skills-progress-bar .skill-data .skill-no {
            font-size: 15px;
            font-weight: 400;
            color: var(--primary-color);
        }

    .skills-progress-bar .skillbar .skill-progress {
        position: relative;
        width: 100%;
        height: 16px;
        background: var(--divider-color);
        border-radius: 100px;
        overflow: hidden;
    }

        .skills-progress-bar .skillbar .skill-progress .count-bar {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            background-color: var(--accent-color);
            border-radius: 100px;
        }

.team-member-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .team-member-content ul li {
        position: relative;
        width: 100%;
        color: var(--primary-color);
        text-transform: capitalize;
        padding-left: 40px;
    }

        .team-member-content ul li::before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            background: url(../images/icon-check.svg) no-repeat center left;
            background-size: cover;
        }

.page-pricing {
    padding: 100px 0;
}

.page-testimonial {
    padding: 100px 0 70px;
}

.client-testimonial-item {
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 40px;
    padding: 40px;
    margin-bottom: 30px;
}

.client-testimonial-item-content {
    margin-bottom: 40px;
}

.client-testimonial-rating {
    margin-bottom: 20px;
}

    .client-testimonial-rating i {
        color: var(--accent-color);
    }

.client-testimonial-content p {
    margin-bottom: 0;
}

.client-testimonial-author {
    display: flex;
    align-items: center;
}

.client-testimonial-author-content {
    width: calc(100% - 55px);
    display: flex;
    align-items: center;
}

.client-author-image {
    margin-right: 15px;
}

    .client-author-image figure {
        display: block;
        border-radius: 10px;
        overflow: hidden;
    }

    .client-author-image img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

.client-author-content {
    width: calc(100% - 75px);
}

    .client-author-content h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .client-author-content p {
        margin: 0;
    }

.client-testimonial-quote {
    margin-left: 15px;
}

    .client-testimonial-quote img {
        max-width: 40px;
    }

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

    .page-gallery-box .photo-gallery a {
        cursor: none;
    }

    .page-gallery-box .photo-gallery figure {
        border-radius: 20px;
    }

    .page-gallery-box .photo-gallery img {
        aspect-ratio: 1 / 0.7;
        object-fit: cover;
        border-radius: 20px;
    }

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

    .video-gallery-image a {
        position: relative;
        display: block;
        cursor: none;
    }

        .video-gallery-image a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--primary-color);
            border-radius: 20px;
            opacity: 0%;
            visibility: hidden;
            width: 100%;
            height: 100%;
            z-index: 1;
            transform: scale(0);
            transition: all 0.4s ease-in-out;
        }

    .video-gallery-image:hover a::before {
        opacity: 50%;
        visibility: visible;
        transform: scale(1);
    }

    .video-gallery-image a::after {
        content: '\f04b';
        font-family: 'FontAwesome';
        position: absolute;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        font-size: 20px;
        background: var(--accent-color);
        color: var(--white-color);
        border-radius: 50%;
        height: 60px;
        width: 60px;
        cursor: none;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out;
        z-index: 1;
    }

    .video-gallery-image:hover a::after {
        opacity: 1;
        visibility: visible;
    }

    .video-gallery-image img {
        aspect-ratio: 1 / 0.7;
        object-fit: cover;
        border-radius: 20px;
    }

.page-faqs {
    padding: 100px 0;
}

.faq-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.faq-catagery-list {
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

    .faq-catagery-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .faq-catagery-list ul li {
            border-bottom: 1px solid var(--divider-color);
            padding-bottom: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease-in-out;
        }

            .faq-catagery-list ul li:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }

            .faq-catagery-list ul li a {
                position: relative;
                display: block;
                color: var(--text-color);
                text-transform: capitalize;
                transition: all 0.3s ease-in-out;
            }

            .faq-catagery-list ul li:hover a {
                color: var(--accent-color);
            }

            .faq-catagery-list ul li a::after {
                content: '';
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                background: url('../images/arrow-dark.svg') no-repeat right center;
                background-size: cover;
                width: 24px;
                height: 24px;
                transition: all 0.3s ease-in-out;
            }

            .faq-catagery-list ul li:hover a::after {
                transform: translateY(-50%) rotate(45deg);
            }

.our-faq-section.page-faq-accordion {
    margin-bottom: 60px;
}

    .our-faq-section.page-faq-accordion:last-child {
        margin-bottom: 0;
    }

.page-contact-us {
    padding: 100px 0;
    background: url(../images/about-us-bg.svg) no-repeat bottom left;
    background-size: auto;
}

.contact-information {
    margin-right: 40px;
}

.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 {
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .contact-info-item .icon-box {
        position: relative;
        background-color: var(--accent-color);
        border-radius: 10px;
        height: 60px;
        width: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        transition: all 0.5s ease-in-out;
    }

    .contact-info-item:hover .icon-box {
        background-color: transparent;
    }

    .contact-info-item .icon-box::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-color);
        border-radius: 10px;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

    .contact-info-item:hover .icon-box::before {
        transform: scale(1);
    }

    .contact-info-item .icon-box img {
        position: relative;
        max-width: 30px;
        z-index: 1;
    }

.contact-info-content {
    width: calc(100% - 80px);
}

    .contact-info-content h3 {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .contact-info-content p {
        margin-bottom: 0;
    }

.contact-us-form {
    background-color: var(--white-color);
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border-radius: 40px;
    padding: 40px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    padding: 17px 15px;
}

    .contact-form .form-control::placeholder {
        color: var(--text-color);
    }

.google-map-iframe,
.google-map-iframe iframe {
    height: 600px;
    width: 100%;
}

    .google-map-iframe iframe {
        filter: grayscale(1);
        transition: all 0.4s ease-in-out;
    }

        .google-map-iframe iframe:hover {
            filter: grayscale(0);
        }

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

    .error-page-image img {
        width: 100%;
        max-width: 50%;
    }

.error-page-content {
    text-align: center;
}

    .error-page-content .section-title {
        margin-bottom: 20px;
    }

.error-page-content-body p {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1366px) {
    .what-we-do-content {
        padding: 100px 80px 100px 15px;
    }

    .contact-now-circle img {
        width: 100px;
        height: 100px;
    }
}

@media only screen and (max-width: 1024px) {
    .what-we-do-content {
        padding: 100px 50px 100px 15px;
    }

    .contact-now-circle img {
        width: 80px;
        height: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .btn-default span {
        padding: 12px 15px;
    }

    .topbar {
        padding: 15px 0;
    }

    .site-logo {
        display: none;
    }

    .topbar-contact-info {
        justify-content: center;
    }

        .topbar-contact-info ul {
            margin-right: 40px;
            padding-right: 40px;
        }

            .topbar-contact-info ul li .icon-box {
                width: 35px;
                height: 35px;
                margin-right: 15px;
            }

        .topbar-contact-info li .icon-box img {
            max-width: 20px;
        }

        .topbar-contact-info ul li p {
            font-size: 18px;
            width: calc(100% - 50px);
        }

    .navbar {
        padding: 15px 0;
    }

    .main-header .navbar-brand {
        display: block;
    }

        .main-header .navbar-brand img {
            max-width: 130px;
        }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .section-row {
        margin-bottom: 50px;
    }

    .section-title-content {
        margin-left: 0px;
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .section-title {
        margin-bottom: 30px;
    }

        .section-title h3 {
            margin-bottom: 15px;
        }

        .section-title h1 {
            font-size: 54px;
        }

        .section-title h2 {
            font-size: 40px;
        }

        .section-title p {
            margin-top: 15px;
        }

    .section-title-content {
        margin-top: 15px;
    }

    .header-social-links {
        display: none;
    }

    .hero {
        padding: 80px 0 40px;
    }

        .hero.hero-slider-layout .hero-slide {
            padding: 100px 0 150px;
        }

        .hero.hero-slider-layout .hero-pagination {
            padding-left: 15px;
            bottom: 30px;
        }

    .excellence-innovating-list {
        padding-top: 30px;
        margin-top: 80px;
    }

        .excellence-innovating-list ul {
            gap: 20px 30px;
        }

            .excellence-innovating-list ul li {
                font-size: 14px;
                padding-left: 30px;
            }

                .excellence-innovating-list ul li:before {
                    width: 20px;
                    height: 20px;
                }

    .about-us {
        padding: 50px 0;
        background-size: 50% auto;
    }

    .about-image {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
        padding-top: 120px;
    }

    .company-experience {
        top: 30px;
        max-width: 195px;
    }

    .company-experience-counter h2 {
        font-size: 40px;
    }

    .company-experience-content p {
        font-size: 16px;
    }

    .about-img-2 img {
        aspect-ratio: 1 / 1.1;
    }

    .about-content-list ul li {
        margin-bottom: 15px;
    }

    .about-content-list {
        margin-bottom: 30px;
    }

        .about-content-list ul li {
            padding-left: 30px;
        }

            .about-content-list ul li:before {
                width: 20px;
                height: 20px;
            }

    .genuine-rating-counter {
        padding: 40px;
    }

        .genuine-rating-counter .about-counter h2 {
            font-size: 60px;
        }

        .genuine-rating-counter .genuine-rating {
            margin-bottom: 10px;
        }

    .our-services {
        padding: 50px 0 180px;
    }

    .services-list-box {
        padding: 40px;
    }

        .services-list-box .service-item {
            width: calc(50% - 30px);
        }

            .services-list-box .service-item:nth-child(2n + 2):after {
                display: none;
            }

    .service-item .icon-box {
        margin-bottom: 20px;
    }

        .service-item .icon-box img {
            max-width: 50px;
        }

    .service-body {
        margin-bottom: 30px;
    }

    .our-story {
        padding: 50px 0;
    }

        .our-story .section-row {
            margin-bottom: 30px;
        }

    .our-story-header-img {
        margin-top: 20px;
    }

    .our-story-img {
        margin-right: 0px;
        margin-bottom: 30px;
    }

        .our-story-img img {
            aspect-ratio: 1 / 0.55;
        }

    .our-story-content-body {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .our-story-counters {
        margin-bottom: 40px;
    }

    .our-story-counter h3 {
        font-size: 40px;
    }

    .our-story-counter p {
        font-size: 18px;
    }

    .our-story-client-img .client-image img {
        max-width: 50px;
    }

    .what-we-do {
        background-position: bottom 50% left;
    }

    .what-we-do-content {
        padding: 50px 15px 70px;
        height: auto;
    }

    .what-we-do-item {
        padding: 30px 20px;
    }

        .what-we-do-item .icon-box {
            margin-bottom: 20px;
        }

    .what-we-do-footer {
        margin-top: 30px;
    }

    .what-we-do-image,
    .what-we-do-image figure,
    .what-we-do-image figure img {
        height: auto;
    }

        .what-we-do-image figure img {
            aspect-ratio: 1 / 0.77;
        }

    .contact-now-circle {
        left: auto;
        right: 50%;
        top: 0;
        transform: translate(50%, -50%);
    }

        .contact-now-circle img {
            width: 100px;
            height: 100px;
        }

    .our-work {
        padding: 50px 0 20px;
    }

    .project-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .our-Project-nav {
        margin-bottom: 40px;
    }

        .our-Project-nav ul {
            gap: 10px 30px;
        }

            .our-Project-nav ul li a:before {
                right: -20px;
            }

            .our-Project-nav ul li a {
                font-size: 14px;
            }

    .project-image {
        margin-bottom: 20px;
    }

    .project-tag {
        top: 15px;
        left: 15px;
    }

        .project-tag a {
            font-size: 14px;
        }

    .project-image figure {
        border-radius: 20px;
    }

    .project-image img {
        aspect-ratio: 1 / 0.7;
        border-radius: 30px;
    }

    .our-process {
        padding: 50px 0;
    }

    .our-process-image {
        margin-right: 0px;
        margin-bottom: 30px;
    }

        .our-process-image img {
            aspect-ratio: 1 / 0.73;
            border-radius: 30px;
        }

    .process-step-item {
        border-radius: 30px;
        padding: 20px;
    }

    .process-step-no h2 {
        font-size: 40px;
    }

    .our-pricing {
        padding: 50px 0;
    }

    .pricing-box {
        border-radius: 30px;
        padding: 30px;
    }

        .pricing-box::before {
            width: 100px;
            height: 100px;
        }

    .pricing-title {
        margin-bottom: 40px;
    }

        .pricing-title h2 {
            font-size: 45px;
        }

            .pricing-title h2 sup {
                font-size: 24px;
            }

    .pricing-list {
        margin-bottom: 40px;
    }

        .pricing-list ul {
            gap: 15px;
        }

    .pricing-benefit-list {
        margin-top: 10px;
    }

    .our-testimonial {
        padding: 50px 0;
    }

    .our-testimonial-image {
        margin-right: 0px;
        margin-bottom: 30px;
    }

        .our-testimonial-image figure,
        .our-testimonial-image img {
            aspect-ratio: 1 / 0.8;
            border-radius: 30px;
        }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-content {
        margin-bottom: 40px;
    }

        .testimonial-content p {
            font-size: 18px;
        }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 46px;
        height: 46px;
    }

    .testimonial-company-slider {
        padding-top: 40px;
        margin-top: 40px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-featured-image {
        margin-bottom: 20px;
    }

        .post-featured-image figure,
        .post-featured-image a,
        .post-featured-image img {
            aspect-ratio: 1 / 0.73;
            border-radius: 30px;
        }

    .post-item-content {
        width: auto;
    }

        .post-item-content h2 {
            font-size: 18px;
        }

    .post-item-btn {
        margin-left: 10px;
    }

        .post-item-btn a {
            width: 40px;
            height: 40px;
        }

    .main-footer {
        background-size: 50% auto;
        padding: 50px 0 0;
    }

    .footer-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .about-footer {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-links h3 {
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-copyright {
        padding: 30px 0;
        margin-top: 30px;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header-box h1 {
        font-size: 54px;
    }

    .mission-vision-bg {
        padding: 50px 0 150px;
    }

    .mission-vision-box {
        border-radius: 30px;
        margin-top: -150px;
    }

    .mission-vision-nav ul li .nav-link {
        font-size: 18px;
        padding: 20px;
    }

        .mission-vision-nav ul li .nav-link img {
            max-width: 30px;
            margin-right: 10px;
        }

    .mission-vision-item {
        padding: 30px;
    }

    .mission-vision-content {
        margin-bottom: 30px;
    }

    .mission-vision-content-header {
        margin-bottom: 20px;
    }

    .mission-vision-content-list ul li {
        margin-bottom: 15px;
    }

    .mission-vision-image figure {
        border-radius: 30px;
    }

    .mission-vision-image img {
        aspect-ratio: 1 / 0.53;
        border-radius: 30px;
    }

    .our-history {
        padding: 50px 0;
    }

    .our-history-box {
        gap: 30px;
    }

    .our-history-item,
    .our-history-nav {
        width: 100%;
    }

        .our-history-nav ul li .nav-link {
            padding: 20px;
        }

    .our-history-content {
        margin-bottom: 30px;
    }

    .our-history-list ul li {
        margin-bottom: 15px;
    }

    .our-history-image figure {
        border-radius: 30px;
    }

    .our-history-image img {
        aspect-ratio: 1 / 0.56;
        border-radius: 30px;
    }

    .our-features {
        padding: 50px 0;
    }

    .our-features-boxes {
        border-radius: 30px;
    }

    .our-features-item {
        padding: 20px;
    }

        .our-features-item .icon-box {
            margin-bottom: 20px;
        }

    .features-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-image img {
        aspect-ratio: 1 / 1.1;
    }

    .team-image {
        margin-bottom: 15px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-img {
        margin-bottom: 30px;
    }

        .our-faqs-img figure {
            border-radius: 30px;
        }

            .our-faqs-img figure img {
                aspect-ratio: 1 / 0.69;
                border-radius: 30px;
            }

    .faqs-img-cta-box {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .our-faq-section .accordion-header .accordion-button {
        font-size: 18px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        margin-bottom: 30px;
    }

        .service-catagery-list h3 {
            padding: 15px 30px;
        }

        .service-catagery-list ul li {
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

    .sidebar-cta-box {
        padding: 30px;
    }

    .sidebar-cta-logo {
        margin-bottom: 20px;
    }

    .sidebar-cta-content {
        margin-bottom: 20px;
    }

        .sidebar-cta-content h3 {
            font-size: 34px;
        }

    .service-featured-image {
        margin-bottom: 20px;
    }

        .service-featured-image figure {
            border-radius: 30px;
        }

        .service-featured-image img {
            aspect-ratio: 1 / 0.6;
            border-radius: 30px;
        }

    .service-entry {
        margin-bottom: 30px;
    }

        .service-entry h2 {
            font-size: 40px;
        }

    .service-entry-box {
        gap: 40px 30px;
        margin: 20px 0;
    }

    .service-entry-item::before {
        transform: translateY(20px);
    }

    .service-entry-item .icon-box {
        margin-bottom: 20px;
    }

        .service-entry-item .icon-box img {
            max-width: 40px;
        }

    .service-entry-item-content h3 {
        margin-bottom: 15px;
    }

    .service-entry-img figure,
    .service-entry-img img {
        aspect-ratio: 1 / 0.89;
        border-radius: 30px;
    }

    .page-blog {
        padding: 50px 0;
    }

        .page-blog .post-item {
            height: calc(100% - 30px);
            margin-bottom: 30px;
        }

        .page-blog .post-featured-image img {
            aspect-ratio: 1 / 0.81;
        }

        .page-blog .post-item .post-item-content {
            margin-bottom: 15px;
        }

    .page-pagination {
        margin-top: 10px;
    }

    .page-projects {
        padding: 50px 0 20px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry h2 {
        font-size: 28px;
    }

    .tag-links {
        font-size: 20px;
    }

    .project-detail-title {
        padding: 15px 20px;
    }

        .project-detail-title h3 {
            font-size: 18px;
        }

    .project-detail-list {
        padding: 20px;
    }

    .project-detail-content h3 {
        margin-bottom: 0;
    }

    .project-single-image img {
        aspect-ratio: 1 / 0.85;
    }

    .project-entry h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry ul {
        margin-bottom: 15px;
    }

        .project-entry ul li {
            width: 100%;
        }

    .project-query-content,
    .project-query-img {
        width: 100%;
    }

    .project-query-item {
        gap: 20px;
    }

    .project-query-box ul {
        margin-bottom: 0;
    }

    .team-member-image img {
        aspect-ratio: 1 / 0.99;
    }

    .team-member-name {
        margin-bottom: 15px;
    }

        .team-member-name h3 {
            font-size: 18px;
        }

    .team-detail-title h3 {
        font-size: 18px;
    }

    .team-member-info,
    .team-member-skills-feature {
        margin-bottom: 20px;
    }

    .team-member-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .team-member-content p {
        margin-bottom: 15px;
    }

    .team-member-skills-feature {
        gap: 20px;
    }

    .team-member-skills,
    .team-member-feature {
        width: 100%;
    }

    .client-testimonial-item {
        border-radius: 30px;
        padding: 20px;
    }

    .client-testimonial-item-content {
        margin-bottom: 20px;
    }

    .faq-catagery-list {
        padding: 20px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

        .contact-info-item .icon-box {
            margin-right: 10px;
        }

    .contact-info-content {
        width: calc(100% - 60px);
    }

        .contact-info-content h3 {
            font-size: 18px;
        }

    .contact-us-form {
        padding: 20px;
    }

    .contact-form .form-control {
        padding: 12px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .topbar {
        padding: 10px 0;
    }

    .topbar-contact-info ul {
        margin-right: 0px;
        padding-right: 0px;
        border: none;
    }

        .topbar-contact-info ul li .icon-box {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

    .topbar-contact-info li .icon-box img {
        max-width: 16px;
    }

    .topbar-contact-info ul li p {
        font-size: 14px;
        width: calc(100% - 40px);
    }

    .topbar-qoute-btn {
        display: none;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .excellence-innovating-list ul {
        gap: 15px;
    }

        .excellence-innovating-list ul li {
            width: 100%;
        }

    .about-image {
        max-width: 100%;
        padding-top: 90px;
    }

    .about-img-1 {
        max-width: 200px;
    }

        .about-img-2 figure,
        .about-img-1 figure {
            border-radius: 30px;
        }

            .about-img-2 img,
            .about-img-1 figure img {
                border-radius: 30px;
            }

    .about-img-2 {
        max-width: 250px;
    }

    .company-experience {
        display: block;
        top: 15px;
    }

    .company-experience-counter {
        width: 100%;
    }

        .company-experience-counter h2 {
            font-size: 30px;
        }

    .company-experience-content {
        width: 100%;
    }

        .company-experience-content p {
            font-size: 14px;
        }

    .about-list-btn {
        margin-bottom: 30px;
    }

    .genuine-rating-counter {
        border-radius: 30px;
        padding: 30px;
    }

        .genuine-rating-counter .about-counter h2 {
            font-size: 40px;
        }

    .services-list-box {
        border-radius: 30px;
        padding: 20px 15px;
        gap: 30px 10px;
    }

        .services-list-box .service-item {
            width: 100%;
        }

            .services-list-box .service-item:after {
                display: none;
            }

    .service-body,
    .service-item .icon-box {
        margin-bottom: 15px;
    }

    .service-body {
        margin-bottom: 20px;
    }

        .service-body h3 {
            font-size: 18px;
        }

    .service-item .service-footer a {
        width: 60px;
        height: 30px;
    }

    .our-story-img figure,
    .our-story-img img,
    .our-story-header-img figure,
    .our-story-header-img figure img {
        border-radius: 20px;
    }

    .our-story-content-body {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .our-story-counters {
        gap: 15px;
        margin-bottom: 30px;
    }

    .our-story-counter {
        width: calc(33.33% - 10px);
    }

        .our-story-counter h3 {
            font-size: 30px;
        }

        .our-story-counter p {
            font-size: 16px;
        }

    .our-story-client-img {
        margin-right: 30px;
    }

    .video-play-button a {
        height: 56px;
        width: 56px;
        margin-right: 10px;
    }

    .what-we-do-item {
        border-radius: 30px;
        width: 100%;
    }

    .what-we-do-list-box-2 .what-we-do-item:nth-child(odd) {
        background: transparent;
    }

    .what-we-do-list-box-2 .what-we-do-item:nth-child(even) {
        background: var(--dark-divider-color);
    }

    .what-we-item-content h3 {
        font-size: 18px;
    }

    .project-tag a {
        padding: 8px 10px;
    }

    .project-content h3 {
        font-size: 18px;
    }

    .process-step-no {
        margin-right: 10px;
    }

        .process-step-no h2 {
            font-size: 30px;
        }

    .process-step-content h3 {
        font-size: 18px;
    }

    .pricing-box {
        padding: 30px 20px;
    }

    .pricing-title {
        margin-bottom: 30px;
    }

        .pricing-title h2 {
            font-size: 30px;
        }

            .pricing-title h2 sup {
                font-size: 18px;
            }

        .pricing-title h3 {
            font-size: 18px;
        }

    .pricing-list {
        margin-bottom: 30px;
    }

        .pricing-list ul li {
            padding-left: 30px;
        }

            .pricing-list ul li::before {
                width: 20px;
                height: 20px;
            }

    .pricing-benefit-list ul {
        gap: 10px 15px;
    }

        .pricing-benefit-list ul li {
            width: calc(50% - 7.5px);
            font-size: 12px;
        }

            .pricing-benefit-list ul li img {
                max-width: 18px;
                margin-right: 5px;
            }

    .testimonial-content {
        margin-bottom: 20px;
    }

        .testimonial-content p {
            font-size: 16px;
        }

    .testimonial-body .author-content h3 {
        font-size: 18px;
    }

    .testimonial-btn {
        position: initial;
        justify-content: left;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonial-slider .testimonial-button-next {
        margin-left: 15px;
    }

    .testimonial-company-slider {
        padding-top: 30px;
        margin-top: 30px;
    }

    .main-footer {
        background-size: 100% auto;
    }

    .footer-header {
        display: block;
    }

    .footer-contact-circle {
        margin-left: 0;
        margin-top: 20px;
    }

        .footer-contact-circle img {
            max-width: 100px;
        }

    .footer-links {
        margin-bottom: 30px;
    }

        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

    .footer-copyright {
        padding: 15px 0;
        margin-top: 0px;
    }

    .page-header-box h1 {
        font-size: 34px;
    }

    .mission-vision-nav ul li .nav-link {
        display: grid;
        justify-content: center;
        font-size: 16px;
        padding: 10px;
    }

        .mission-vision-nav ul li .nav-link img {
            max-width: 25px;
            margin: 0 auto;
            margin-bottom: 5px;
        }

    .mission-vision-item {
        padding: 20px 15px;
    }

    .mission-vision-content-list ul li {
        font-size: 14px;
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .mission-vision-content-list ul li:before {
            width: 20px;
            height: 20px;
        }

    .mission-vision-image img {
        aspect-ratio: 1 / 0.73;
    }

    .our-history-nav ul li .nav-link {
        padding: 10px;
        font-size: 18px;
    }

    .our-history-list ul li {
        font-size: 14px;
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .our-history-list ul li:before {
            width: 20px;
            height: 20px;
        }

    .our-history-image img {
        aspect-ratio: 1 / 0.76;
    }

    .our-features-item {
        width: 100%;
    }

        .our-features-item:nth-child(1n + 1) {
            border-right: none;
        }

        .our-features-item.features-image-box img {
            aspect-ratio: 1 / 0.81;
        }

    .team-content h3 {
        font-size: 18px;
    }

    .our-faqs-img figure img {
        aspect-ratio: 1 / 0.89;
    }

    .faqs-img-cta-box ul li {
        margin-right: 0px;
        margin-bottom: 5px;
    }

        .faqs-img-cta-box ul li:last-child {
            margin-bottom: 0;
        }

        .faqs-img-cta-box ul li a img {
            max-width: 24px;
            margin-right: 10px;
        }

        .faqs-img-cta-box ul li a {
            font-size: 18px;
        }

    .our-faq-section .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 35px 12px 12px;
    }

    .our-faq-section .accordion-item .accordion-button::after,
    .our-faq-section .accordion-item .accordion-button.collapsed::after {
        right: 12px;
        font-size: 14px;
    }

    .our-faq-section .accordion-item .accordion-body {
        background: var(--accent-color);
        padding: 12px;
    }

    .page-services .service-item {
        border-radius: 30px;
        padding: 20px 15px;
    }

    .service-catagery-list h3 {
        font-size: 18px;
        padding: 15px 20px;
    }

    .service-catagery-list ul {
        padding: 20px;
    }

        .service-catagery-list ul li a::before {
            width: 20px;
            height: 20px;
        }

    .sidebar-cta-box {
        padding: 20px;
    }

    .sidebar-cta-content h3 {
        font-size: 28px;
    }

    .cta-contact-item-title h3 {
        font-size: 18px;
    }

    .service-featured-image img {
        aspect-ratio: 1 / 0.85;
    }

    .service-entry h2 {
        font-size: 28px;
    }

    .service-entry-item {
        width: 100%;
    }

        .service-entry-item:nth-last-child(-n + 2)::before {
            display: block;
        }

        .service-entry-item:last-child::before {
            display: none;
        }

    .service-entry-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-entry ul {
        gap: 10px;
        margin-bottom: 30px;
    }

        .service-entry ul li {
            width: 100%;
            padding-left: 30px;
        }

            .service-entry ul li::before {
                width: 20px;
                height: 20px;
            }

    .service-entry-img {
        width: 100%;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.70;
        border-radius: 30px;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 65px 15px 15px 15px;
    }

    .post-entry h2 {
        font-size: 28px;
    }

    .tag-links {
        font-size: 20px;
    }

    .project-detail-title {
        padding: 15px 20px;
    }

        .project-detail-title h3 {
            font-size: 18px;
        }

    .project-detail-list {
        padding: 20px;
    }

    .project-detail-content h3 {
        margin-bottom: 0;
    }

    .project-single-image img {
        aspect-ratio: 1 / 0.85;
    }

    .project-entry h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry ul {
        margin-bottom: 15px;
    }

        .project-entry ul li {
            width: 100%;
        }

    .project-query-content,
    .project-query-img {
        width: 100%;
    }

    .project-query-item {
        gap: 20px;
    }

    .project-query-box ul {
        margin-bottom: 0;
    }

    .team-member-image img {
        aspect-ratio: 1 / 0.99;
    }

    .team-member-name {
        margin-bottom: 15px;
    }

        .team-member-name h3 {
            font-size: 18px;
        }

    .team-detail-title h3 {
        font-size: 18px;
    }

    .team-member-info,
    .team-member-skills-feature {
        margin-bottom: 20px;
    }

    .team-member-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .team-member-content p {
        margin-bottom: 15px;
    }

    .team-member-skills-feature {
        gap: 20px;
    }

    .team-member-skills,
    .team-member-feature {
        width: 100%;
    }

    .client-testimonial-item {
        border-radius: 30px;
        padding: 20px;
    }

    .client-testimonial-item-content {
        margin-bottom: 20px;
    }

    .faq-catagery-list {
        padding: 20px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

        .contact-info-item .icon-box {
            margin-right: 10px;
        }

    .contact-info-content {
        width: calc(100% - 60px);
    }

        .contact-info-content h3 {
            font-size: 18px;
        }

    .contact-us-form {
        padding: 20px;
    }

    .contact-form .form-control {
        padding: 12px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}

.fontBold {
    font-weight: bold !important;
}

.overlay-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 15px;
}

    .overlay-text::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(17, 40, 74, 0.2);
        z-index: -1;
    }

.font25 {
    font-size: 25px !important;
}

/* =========================================
   Factory Advantage Ticker
   ========================================= */
.factory-ticker {
    background-color: var(--brand-navy);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
}

body {
    padding-top: 38px;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 35s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 13px;
    font-weight: 600;
}

    .ticker-item i {
        color: var(--brand-orange);
        margin-right: 8px;
    }

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* =========================================
   Header & Absolute Logo Fix
   ========================================= */
header.main-header, .topbar {
    position: relative;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    height: 70px;
}

.topbar-contact-info ul {
    padding-left: 0;
    justify-content: flex-end;
    margin-bottom: 0;
}

    .topbar-contact-info ul li {
        margin-right: 30px;
        margin-left: 0;
    }

        .topbar-contact-info ul li .icon-box {
            margin-right: 15px;
            margin-left: 0;
            color: var(--brand-orange);
        }

.logo-panel-wrapper {
    position: absolute;
    top: 0;
    left: 8%;
    z-index: 9999;
    width: 150px;
}

.site-logo {
    background: #fff;
    text-align: center;
    padding: 0px 0px 5px 0px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .site-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

/* =========================================
   Sticky Header
   ========================================= */
header.main-header .header-sticky.active {
    position: fixed !important;
    top: 38px !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--brand-navy) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    animation: slideMenuDown 0.4s ease-in-out;
}

@keyframes slideMenuDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    header.main-header .header-sticky.active {
        top: 28px !important;
    }

        header.main-header .header-sticky.active .slicknav_nav {
            top: 100% !important;
            max-height: calc(100vh - 100px);
            overflow-y: auto;
        }
}

@media (min-width: 992px) {
    header.main-header .header-sticky.active .navbar-brand {
        display: block !important;
        margin-right: 40px !important;
    }

        header.main-header .header-sticky.active .navbar-brand img {
            max-height: 40px !important;
            width: auto;
        }
}

.navbar {
    padding: 0;
    min-height: 60px;
}

.main-menu .navbar-nav {
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-left: 0;
}

.navbar-nav .nav-item {
    margin-left: 0;
    margin-right: 30px;
}

    .navbar-nav .nav-item:first-child {
        margin-left: 160px;
    }

    .navbar-nav .nav-item .nav-link {
        color: #fff;
        padding: 20px 0;
    }

        .navbar-nav .nav-item .nav-link:hover {
            color: var(--brand-orange);
        }

        .navbar-nav .nav-item .nav-link::before {
            right: auto;
            left: 0;
            background-color: var(--brand-orange);
        }

    .navbar-nav .nav-item.submenu .nav-link::after {
        margin-right: 0;
        margin-left: 5px;
    }

.header-social-box {
    margin-left: 20px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 0;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: none;
}

.header-social-links ul {
    padding-left: 0;
    margin-bottom: 0;
}

    .header-social-links ul li a {
        color: #fff;
    }

        .header-social-links ul li a:hover {
            color: var(--brand-orange);
        }

/* =========================================
   Section Layouts
   ========================================= */
.hero-content, .section-title, .section-title-content {
    text-align: left;
}

.excellence-innovating-list ul, .about-content-list ul, .pricing-list ul {
    padding-left: 0;
}

    .excellence-innovating-list ul li, .about-content-list ul li {
        margin-right: 0;
        margin-left: 0;
        padding-left: 30px;
        padding-right: 0;
        position: relative;
        font-weight: 800;
        font-size: 17px;
    }

        .excellence-innovating-list ul li::before, .about-content-list ul li::before {
            right: auto;
            left: 0;
        }

    .pricing-list ul li {
        padding-right: 0;
        padding-left: 30px;
        position: relative;
    }

        .pricing-list ul li::before {
            right: auto;
            left: 0;
            content: '\f00c';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            color: var(--brand-orange);
        }

.pricing-box.highlighted-box {
    border-top: 5px solid var(--brand-orange);
}

    .pricing-box.highlighted-box .btn-default {
        background: var(--brand-navy);
        border-color: var(--brand-navy);
    }

        .pricing-box.highlighted-box .btn-default:hover {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
        }

.process-step-item {
    padding-right: 0;
    padding-left: 12px;
    border-right: none;
    border-left: 2px solid #eee;
    text-align: left;
}

    .process-step-item::before {
        right: auto;
        left: -9px;
        background: var(--brand-orange);
    }

.process-step-no {
    margin-right: 20px;
    margin-left: 0;
    color: var(--brand-navy);
}

.contact-now-circle {
    right: 76px;
    left: auto;
}

.footer-links ul {
    padding-left: 0;
}

    .footer-links ul li a {
        padding-left: 0;
        padding-right: 0;
        transition: padding-left 0.3s;
    }

        .footer-links ul li a:hover {
            padding-left: 10px;
            color: var(--brand-orange);
        }

.footer-contact-circle {
    right: 50px;
    left: auto;
}

.footer-social-links ul {
    padding-left: 0;
}

    .footer-social-links ul li a {
        background: var(--brand-navy);
        border: 1px solid rgba(255,255,255,0.1);
    }

        .footer-social-links ul li a:hover {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
        }

.slicknav_menu {
    text-align: left;
    background: var(--brand-navy);
}

.slicknav_btn {
    float: right;
}

/* =========================================
   Professional Service Cards & Watermark
   ========================================= */
.our-services-list {
    padding: 20px 0;
    background-color: #f9f9f9;
}

.service-item {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    text-align: left;
}

.watermark-icon {
    position: absolute;
    top: 0px;
    right: 4px;
    left: auto;
    z-index: -1;
    opacity: 0.07;
    transition: all 0.5s ease;
    pointer-events: none;
}

    .watermark-icon img {
        width: 180px;
        height: auto;
        filter: grayscale(100%);
        transform: rotate(-15deg);
    }

.service-item:hover .watermark-icon {
    opacity: 0.1;
    top: -10px;
    right: -20px;
    left: auto;
    transform: rotate(0deg) scale(1.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(17, 40, 74, 0.15);
    border-color: var(--brand-orange);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-item .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(17, 64, 116, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

    .service-item .icon-box img {
        width: 40px;
        height: auto;
        transition: all 0.4s ease;
    }

.service-item:hover .icon-box {
    background: var(--brand-orange);
    transform: rotateY(360deg);
}

    .service-item:hover .icon-box img {
        filter: brightness(0) invert(1);
    }

.service-body {
    flex-grow: 1;
    margin-bottom: 0;
}

    .service-body h3 {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 12px;
    }

    .service-body p {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

.service-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px dashed #e5e5e5;
    padding-top: 15px;
}

    .service-specs li {
        font-size: 13px;
        color: #555;
        margin-bottom: 8px;
        position: relative;
        padding-left: 22px;
        padding-right: 0;
        font-weight: 600;
    }

        .service-specs li::before {
            content: '';
            position: absolute;
            left: 0;
            right: auto;
            top: 8px;
            width: 6px;
            height: 6px;
            background-color: var(--brand-orange);
            border-radius: 50%;
        }

.service-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-navy);
    transition: all 0.3s ease;
    text-decoration: none;
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 30px;
}

    .read-more-btn i {
        margin-left: 8px;
        margin-right: 0;
        font-size: 12px;
        transition: margin-left 0.3s ease;
        color: var(--brand-orange);
    }

    .read-more-btn:hover {
        background: var(--brand-navy);
        color: #fff;
    }

        .read-more-btn:hover i {
            color: #fff;
            margin-left: 12px;
        }

@media only screen and (max-width: 991px) {
    .read-more-btn {
        font-size: 10px;
    }

        .read-more-btn i {
            margin-left: 10px;
        }
}

@media only screen and (max-width: 480px) {
    .read-more-btn {
        font-size: 10px;
    }
}

/* =========================================
   Mobile Header Fix
   ========================================= */
@media only screen and (max-width: 991px) {
    .topbar {
        display: block !important;
        padding: 10px 0 !important;
        background-color: #fff;
        border-bottom: 1px solid #f0f0f0;
    }

    .topbar-contact-info {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
    }

        .topbar-contact-info ul li:nth-child(2) {
            display: none !important;
        }

        .topbar-contact-info ul {
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            display: flex;
        }

            .topbar-contact-info ul li p {
                font-size: 14px !important;
                font-weight: 800;
                margin-bottom: 0;
                color: var(--brand-navy) !important;
            }

        .topbar-contact-info .icon-box {
            display: none !important;
        }

    .topbar-qoute-btn {
        display: block !important;
    }

        .topbar-qoute-btn .btn-default {
            padding: 8px 15px !important;
            font-size: 12px !important;
            border-radius: 30px !important;
        }

    .logo-panel-wrapper {
        display: block !important;
        position: absolute;
        left: 20px;
        right: auto;
        top: 0;
        width: 90px;
        z-index: 1005;
    }

    .site-logo {
        display: block !important;
        padding: 0px 0px 0px 0px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .main-header .navbar-brand {
        display: none !important;
    }

    .header-sticky {
        background: var(--brand-navy);
        margin-top: 17px;
    }

    .navbar {
        padding: 0;
        min-height: auto;
    }

    .navbar-toggle {
        display: block;
        position: absolute;
        right: 20px;
        left: auto;
        top: 20px;
        margin: 0;
        z-index: 1006;
    }

    .slicknav_menu {
        background: transparent;
        padding: 0;
    }

    .slicknav_btn {
        background-color: transparent;
        float: right;
        margin: 5px 0 0 0;
        padding: 0;
    }

    .slicknav_icon-bar {
        background-color: #fff !important;
        width: 30px;
        height: 3px;
        margin: 6px 0;
        display: block;
        border-radius: 2px;
    }

    .slicknav_nav {
        background: var(--brand-navy);
        position: absolute;
        top: 82px;
        right: 0;
        left: auto;
        width: 100%;
        text-align: left;
        border-top: 3px solid var(--brand-orange);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        margin: 0;
        padding: 0;
    }

        .slicknav_nav .slicknav_row,
        .slicknav_nav a {
            padding: 15px 20px;
            color: #fff;
            font-size: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin: 0;
        }

            .slicknav_nav a:hover,
            .slicknav_nav .slicknav_row:hover {
                background: var(--brand-orange);
                color: #fff;
                border-radius: 0;
            }

    .factory-ticker .ticker-item {
        font-size: 11px;
    }
}

/* ============================================================
   Page Header Breadcrumb
   ============================================================ */
.page-header-box nav {
    display: flex;
    justify-content: flex-start;
}

.page-header-box .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
}

.page-header-box .breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
}

    .page-header-box .breadcrumb-item a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .page-header-box .breadcrumb-item a:hover {
            color: var(--brand-orange);
        }

    .page-header-box .breadcrumb-item.active {
        color: var(--brand-orange) !important;
    }

    .page-header-box .breadcrumb-item + .breadcrumb-item::before {
        content: "\f111";
        font-family: "Font Awesome 6 Free", "FontAwesome";
        font-weight: 900;
        font-size: 6px;
        color: var(--brand-orange);
        margin: 0 12px;
        padding: 0;
        float: none !important;
    }

/* ============================================================
   Mission, Vision, and Values List
   ============================================================ */
.mission-vision-content-list ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

    .mission-vision-content-list ul li {
        position: relative;
        padding-right: 0;
        padding-left: 40px;
        text-align: left;
        margin-bottom: 20px;
        color: var(--brand-navy);
        font-weight: 600;
    }

        .mission-vision-content-list ul li::before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            right: auto;
            background: url('/images/icon-check.svg') no-repeat center left;
            background-size: contain;
        }

@media only screen and (max-width: 767px) {
    .mission-vision-content-list ul li {
        padding-left: 30px;
        font-size: 14px;
        margin-bottom: 15px;
    }

        .mission-vision-content-list ul li::before {
            width: 20px;
            height: 20px;
            left: 0;
            right: auto;
        }
}

/* ============================================================
   Premium Page Header Enhancements
   ============================================================ */
@media only screen and (max-width: 991px) {
    .dark-overlay-header {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .page-header-box h1 {
        font-size: 42px !important;
    }

    .header-sub-text {
        font-size: 16px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .dark-overlay-header {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .page-header-box.mt-5 {
        margin-top: 20px !important;
    }

    .premium-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 10px;
    }

    .page-header-box h1 {
        font-size: 32px !important;
        line-height: 1.4;
    }

    .header-sub-text {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 15px !important;
    }

    .page-header-box .breadcrumb-item {
        font-size: 14px;
    }

        .page-header-box .breadcrumb-item + .breadcrumb-item::before {
            margin: 0 8px;
        }
}


/* ============================================================
   Premium Page Header Styles (LTR)
   ============================================================ */
.dark-overlay-header {
    position: relative;
    padding-top: 200px;
    padding-bottom: 220px;
}

    .dark-overlay-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(11, 26, 48, 0.7), rgba(11, 26, 48, 0.95));
        z-index: 1;
    }

.premium-badge {
    display: inline-block;
    background: rgba(245, 157, 24, 0.15);
    border: 1px solid rgba(245, 157, 24, 0.5);
    color: var(--brand-orange);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   Quality Philosophy Section (LTR)
   ============================================================ */
.quality-philosophy {
    position: relative;
    overflow: hidden;
}

.quality-image-wrapper {
    position: relative;
    z-index: 1;
    padding-left: 40px; /* LTR: space on left instead of right */
}

    .quality-image-wrapper .img-main img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        position: relative;
        z-index: 2;
    }

    .quality-image-wrapper .img-floating {
        position: absolute;
        bottom: -30px;
        left: 0; /* LTR: Float on left */
        width: 150px;
        height: 150px;
        background: #fff;
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0 15px 30px rgba(17, 40, 74, 0.15);
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.bounce-animate {
    animation: bounceY 4s infinite ease-in-out;
}

@keyframes bounceY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.quality-image-wrapper .creative-shape {
    position: absolute;
    top: -20px;
    right: -20px; /* LTR */
    width: 100%;
    height: 100%;
    background-color: var(--brand-orange);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
    transform: rotate(3deg); /* LTR: positive rotation */
}

.quality-text-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.quality-check-list ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .quality-check-list ul li {
        font-size: 16px;
        font-weight: 700;
        color: var(--brand-navy);
        display: flex;
        align-items: center;
    }

        .quality-check-list ul li i {
            color: var(--brand-orange);
            margin-right: 15px; /* LTR */
            font-size: 18px;
            background: rgba(245, 157, 24, 0.1);
            padding: 10px;
            border-radius: 50%;
        }

/* ============================================================
   The 4 Pillars Section (LTR)
   ============================================================ */
.bg-light-gray {
    background-color: #f8f9fa;
}

.pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    text-align: left; /* LTR */
    z-index: 1;
}

    .pillar-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--brand-navy), var(--brand-orange));
        opacity: 0;
        z-index: -1;
        transition: all 0.4s ease;
    }

    .pillar-card:hover {
        transform: translateY(-10px);
    }

        .pillar-card:hover::after {
            opacity: 1;
        }

.pillar-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-light);
    color: var(--brand-orange);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.pillar-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.pillar-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    transition: color 0.4s ease;
}

.pillar-card:hover h4, .pillar-card:hover p {
    color: #fff;
}

.hover-number {
    position: absolute;
    bottom: -10px;
    right: 10px; /* LTR */
    font-size: 80px;
    font-weight: 900;
    color: rgba(17, 40, 74, 0.03);
    transition: all 0.4s ease;
}

.pillar-card:hover .hover-number {
    color: rgba(255,255,255,0.1);
    bottom: 0px;
}

/* ============================================================
   Innovation & Patent Section (LTR)
   ============================================================ */
.innovation-section {
    background: var(--brand-navy) url('/images/innovation-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

    .innovation-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(17, 40, 74, 0.9);
        z-index: 0;
    }

.innovation-content {
    position: relative;
    z-index: 2;
}

    .innovation-content .lead-text {
        font-size: 18px;
        line-height: 1.8;
        opacity: 0.9;
    }

.text-orange {
    color: var(--brand-orange) !important;
}

.innovation-list {
    list-style: none;
    padding: 0;
}

    .innovation-list li {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.6;
        display: flex;
        align-items: flex-start;
    }

        .innovation-list li i {
            margin-right: 15px; /* LTR */
            margin-top: 5px;
            font-size: 20px;
        }

.patent-card-wrapper {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.patent-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
}

.patent-icon {
    width: 90px;
    height: 90px;
    background: rgba(245, 157, 24, 0.1);
    color: var(--brand-orange);
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.decor-circle-1 {
    position: absolute;
    top: 0;
    left: 0; /* LTR */
    width: 150px;
    height: 150px;
    background: var(--brand-orange);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.8;
    animation: scaleInOut 4s infinite alternate;
}

.decor-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0; /* LTR */
    width: 100px;
    height: 100px;
    border: 5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 1;
}

@keyframes scaleInOut {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}

/* ============================================================
   ISO Accreditation Section
   ============================================================ */
.iso-accreditation-section {
    background: #fff;
    position: relative;
}

.iso-description {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.iso-benefits {
    font-size: 16px;
    color: #777;
    margin-top: 15px;
    max-width: 700px;
    margin: 15px auto 0 auto;
}

/* ============================================================
   Responsive Fixes for the Custom Pages
   ============================================================ */
@media only screen and (max-width: 991px) {
    .quality-image-wrapper .img-floating {
        width: 100px;
        height: 100px;
        bottom: -20px;
    }

    .patent-card-wrapper {
        margin-top: 40px;
        padding: 0;
    }

    .decor-circle-1 {
        display: none;
    }

    .dark-overlay-header {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .page-header-box h1 {
        font-size: 42px !important;
    }
}

@media only screen and (max-width: 767px) {
    .dark-overlay-header {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .page-header-box.mt-5 {
        margin-top: 20px !important;
    }

    .premium-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 10px;
    }

    .page-header-box h1 {
        font-size: 32px !important;
        line-height: 1.4;
    }
}
/* ============================================================
   Premium Store Coming Soon Page Styles (English LTR)
   ============================================================ */

.store-premium-section {
    padding: 80px 0 120px 0;
    background-color: #f4f6f9;
}

.store-premium-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(17, 40, 74, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    text-align: left; /* LTR Fix: Force left alignment */
}

.store-content-side {
    padding: 60px 50px !important;
}

.store-badge {
    display: inline-block;
    background-color: rgba(245, 157, 24, 0.1);
    color: var(--brand-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
}

    .store-badge i {
        margin-right: 5px; /* LTR Fix: Space on the right of the icon */
        margin-left: 0;
    }

.store-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.4;
}

    .store-title span {
        color: var(--brand-orange);
        position: relative;
        display: inline-block;
    }

        .store-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(245, 157, 24, 0.2);
            z-index: -1;
        }

.store-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.launch-progress .progress-text {
    color: var(--brand-navy);
    font-size: 15px;
}

.store-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-direction: row; /* LTR Fix */
}

    .store-features-list li {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        padding: 12px 20px;
        border-radius: 15px;
        border: 1px solid #eee;
        flex: 1;
        transition: all 0.3s ease;
    }

        .store-features-list li:hover {
            background: #fff;
            border-color: var(--brand-orange);
            box-shadow: 0 10px 20px rgba(245, 157, 24, 0.05);
            transform: translateY(-5px);
        }

    .store-features-list .sf-icon {
        width: 35px;
        height: 35px;
        background: var(--brand-navy);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 6px; /* LTR Fix: Margin on the right */
        margin-left: 0;
        font-size: 14px;
    }

    .store-features-list span {
        font-size: 14px;
        font-weight: 700;
        color: var(--brand-navy);
    }

.store-image-side {
    background: linear-gradient(135deg, rgba(17, 40, 74, 0.9), rgba(17, 40, 74, 0.95)), url('/images/store-bg-side.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-overlay-content {
    color: #fff;
    padding: 40px;
}

    .image-overlay-content h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .image-overlay-content p {
        color: rgba(255,255,255,0.7);
        font-size: 16px;
    }

.icon-pulse-wrapper {
    width: 100px;
    height: 100px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px auto;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(245, 157, 24, 0.5);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 157, 24, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(245, 157, 24, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 157, 24, 0);
    }
}

/* Responsive Fixes for Store Page */
@media only screen and (max-width: 991px) {
    .store-features-list {
        flex-direction: column;
    }

    .store-content-side {
        padding: 40px 30px !important;
    }

    .store-title {
        font-size: 28px;
    }

    .store-image-side {
        min-height: 350px;
    }
}

/* ============================================================
   Premium Products Page Styles (English LTR)
   ============================================================ */

/* 1. Typography & Colors */
.bg-dark-navy {
    background-color: #0b1a30;
}

.text-orange {
    color: var(--brand-orange) !important;
}

.text-navy {
    color: var(--brand-navy) !important;
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.bg-gray-texture {
    background-color: #f4f6f9;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 2. Page Header Enhancements */
.dark-overlay-header {
    position: relative;
    padding-top: 200px;
    padding-bottom: 220px;
}

    .dark-overlay-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(11, 26, 48, 0.6), rgba(11, 26, 48, 0.85));
        z-index: 1;
    }

.premium-badge {
    display: inline-block;
    background: rgba(245, 157, 24, 0.15);
    border: 1px solid rgba(245, 157, 24, 0.5);
    color: var(--brand-orange);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
}

.header-sub-text {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 3. Sticky Scroll Layout (The Apple Effect) */
.product-showcase-section {
    position: relative;
    overflow: hidden;
}

#aluminum-series {
    margin-top: -80px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
    background-image: radial-gradient(circle at top left, rgba(245, 157, 24, 0.05), transparent 50%); /* LTR Fix: top left */
}

.sticky-image-wrapper {
    position: sticky;
    top: 150px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.main-product-img {
    max-width: 85%;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

    .main-product-img:hover {
        transform: scale(1.05) rotate(2deg); /* LTR Fix */
    }

.scrolling-content-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.product-category-title h4 {
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 800;
}

.product-category-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* 4. Deep Detail Cards (Premium Feature Cards) */
.deep-detail-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--brand-orange); /* LTR border */
    border-radius: 0 15px 15px 0; /* LTR border radius */
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

    .deep-detail-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(10px); /* LTR Fix: Move right on hover */
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .deep-detail-card.light-mode {
        background: #fff;
        border-left: 3px solid var(--brand-navy);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

        .deep-detail-card.light-mode:hover {
            box-shadow: 0 20px 50px rgba(17, 40, 74, 0.1);
        }

    .deep-detail-card.border-left-green {
        border-left-color: #28a745;
    }

.dd-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(245, 157, 24, 0.1);
    color: var(--brand-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 25px; /* LTR Fix: Margin on the right side of the icon */
}

.light-mode .dd-icon {
    background: rgba(17, 40, 74, 0.05);
    color: var(--brand-navy);
}

.dd-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dd-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

.light-mode .dd-text p {
    color: #555;
}

/* 5. Glowing Effects behind Images */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 157, 24, 0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

.orange-glow {
    background: radial-gradient(circle, rgba(245, 157, 24, 0.15) 0%, rgba(255,255,255,0) 70%);
}

.red-glow {
    background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, rgba(0,0,0,0) 70%);
}

.green-glow {
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, rgba(255,255,255,0) 70%);
}

/* 6. Floating Specs around Images */
.floating-spec {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

    .floating-spec i {
        color: var(--brand-orange);
        margin-right: 8px; /* LTR Fix */
        font-size: 16px;
    }

.dark-spec {
    background: #fff;
    color: var(--brand-navy);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.spec-1 {
    top: 15%;
    left: 10%;
    animation: floatY 5s ease-in-out infinite;
}
/* LTR Fix */
.spec-2 {
    bottom: 20%;
    right: 5%;
    animation: floatY 6s ease-in-out infinite reverse;
}
/* LTR Fix */

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* 7. Customization CTA */
.customization-cta {
    background: linear-gradient(135deg, var(--brand-navy), #0b1a30);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* 8. Mobile Responsiveness */
@media only screen and (max-width: 991px) {
    .sticky-image-wrapper {
        position: relative;
        top: 0;
        padding: 20px;
    }

    .product-category-title h2 {
        font-size: 32px;
    }

    .deep-detail-card {
        flex-direction: column;
        padding: 20px;
    }

    .dd-icon {
        margin-right: 0; /* LTR Fix */
        margin-bottom: 20px;
    }

    .floating-spec {
        display: none;
    }
}

/* ============================================================
   Creative Contact Page Styles (English LTR)
   ============================================================ */

/* 1. Header Adjustments */
.contact-header-bg {
    background-image: url('/images/page-header-bg.jpg');
    padding-bottom: 200px !important;
    position: relative;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
}

/* 2. Floating Contact Info Cards */
.floating-contact-info {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(17, 40, 74, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 4px solid transparent;
    text-align: left; /* LTR Fix */
}

    .info-card:hover {
        transform: translateY(-15px);
        border-bottom-color: var(--brand-orange);
        box-shadow: 0 30px 50px rgba(17, 40, 74, 0.15);
    }

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-navy), #1a3c6e);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    background: var(--brand-orange);
    transform: scale(1.1) rotate(-5deg); /* LTR Fix */
}

.info-text {
    position: relative;
    z-index: 2;
}

    .info-text h3 {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 15px;
    }

    .info-text p {
        color: #666;
        font-size: 15px;
        margin-bottom: 5px;
        line-height: 1.6;
    }

        .info-text p a {
            color: #666;
            transition: color 0.3s;
        }

            .info-text p a:hover {
                color: var(--brand-orange);
            }

.highlight-phone a {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-navy) !important;
}

.social-pills .pill-linkedin {
    display: inline-flex;
    align-items: center;
    background: #f4f6f9;
    color: #0077b5;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

    .social-pills .pill-linkedin i {
        margin-right: 8px; /* LTR Fix */
        margin-left: 0;
    }

    .social-pills .pill-linkedin:hover {
        background: #0077b5;
        color: #fff;
    }

.card-watermark {
    position: absolute;
    bottom: -20px;
    right: -20px; /* LTR Fix */
    left: auto;
    font-size: 150px;
    color: rgba(17, 40, 74, 0.03);
    z-index: 1;
    transform: rotate(15deg); /* LTR Fix */
    transition: all 0.5s ease;
}

.info-card:hover .card-watermark {
    color: rgba(245, 157, 24, 0.05);
    transform: rotate(0deg) scale(1.1);
}

/* 3. Creative Split Section */
.box-shadow-premium {
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    border-radius: 30px;
    overflow: hidden;
}

.form-side-dark {
    background-color: var(--brand-navy);
    position: relative;
    text-align: left; /* LTR Fix */
}

/* 4. Creative Form Styles (Material Line Style) */
.form-floating-custom {
    position: relative;
    width: 100%;
}

.c-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

    .c-input:focus {
        border-bottom-color: transparent;
    }

.form-floating-custom label {
    position: absolute;
    top: 10px;
    left: 0; /* LTR Fix */
    right: auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Input Line Animation */
.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-orange);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.c-input:focus ~ .input-line,
.c-input:not(:placeholder-shown) ~ .input-line {
    width: 100%;
}

.c-input:focus ~ label,
.c-input:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 13px;
    color: var(--brand-orange);
}

/* Advanced Submit Button */
.btn-creative-submit {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 5px 25px 5px 5px; /* LTR Fix */
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

    .btn-creative-submit span {
        margin-right: 20px; /* LTR Fix */
        margin-left: 0;
        transition: all 0.4s ease;
    }

    .btn-creative-submit .icon-circle {
        width: 45px;
        height: 45px;
        background: var(--brand-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .btn-creative-submit:hover {
        background: var(--brand-orange);
        border-color: var(--brand-orange);
    }

        .btn-creative-submit:hover .icon-circle {
            background: #fff;
            color: var(--brand-navy);
            transform: translateX(10px); /* LTR Fix: Slide arrow to the right */
        }

/* 5. Dark Map Styling */
.map-side {
    background: #000;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 40, 74, 0.3);
    pointer-events: none;
    z-index: 1;
}

/* Map Badge */
.map-floating-badge {
    position: absolute;
    bottom: 40px;
    left: 40px; /* LTR Fix */
    right: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

    .map-floating-badge i {
        color: var(--brand-orange);
        margin-right: 10px; /* LTR Fix */
        margin-left: 0;
        font-size: 20px;
    }

.pulse-ring {
    position: absolute;
    left: 15px; /* LTR Fix */
    right: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(245, 157, 24, 0.4);
    animation: pulsate 2s infinite;
    z-index: -1;
}

@keyframes pulsate {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* 6. Mobile Responsiveness */
@media only screen and (max-width: 991px) {
    .floating-contact-info {
        margin-top: -80px;
    }

    .form-side-dark {
        padding: 40px 30px !important;
    }

    .map-side iframe {
        min-height: 350px;
    }

    .map-floating-badge {
        bottom: 20px;
        left: 20px; /* LTR Fix */
    }
}

/* ============================================================
   Premium Privacy Policy Page Styles (English LTR)
   ============================================================ */

/* 1. Header Styles */
.shield-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(245, 157, 24, 0.1);
    border: 2px solid rgba(245, 157, 24, 0.3);
    border-radius: 50%;
    color: var(--brand-orange);
    font-size: 35px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(245, 157, 24, 0.2);
}

/* 2. Overlapping Principles Cards */
.overlap-cards {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.principle-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(17, 40, 74, 0.08);
    height: 100%;
    border-top: 4px solid var(--brand-navy);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .principle-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(245, 157, 24, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .principle-card:hover {
        transform: translateY(-10px);
        border-top-color: var(--brand-orange);
        box-shadow: 0 30px 50px rgba(245, 157, 24, 0.15);
    }

        .principle-card:hover::before {
            opacity: 1;
        }

    .principle-card .p-icon {
        font-size: 40px;
        color: var(--brand-navy);
        margin-bottom: 20px;
        transition: all 0.4s ease;
    }

    .principle-card:hover .p-icon {
        color: var(--brand-orange);
        transform: scale(1.1);
    }

    .principle-card h3 {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 15px;
    }

    .principle-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

/* 3. Privacy Content Body */
.privacy-details-section {
    background-color: #fcfcfc;
}

.privacy-content-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
}

.update-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #888;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eee;
}

    .update-badge i {
        color: var(--brand-orange);
        margin-right: 5px; /* LTR Fix */
        margin-left: 0;
    }

/* Block Layout with Background Numbers */
.privacy-block {
    position: relative;
    padding-left: 20px; /* LTR Fix: Line on the left */
    padding-right: 0;
    border-left: 3px solid rgba(17, 40, 74, 0.1); /* LTR Fix */
    border-right: none;
    transition: all 0.3s ease;
}

    .privacy-block:hover {
        border-left-color: var(--brand-orange); /* LTR Fix */
    }

.block-header {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.block-number {
    position: absolute;
    left: -20px; /* LTR Fix: Align with border on left */
    right: auto;
    top: -30px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(17, 40, 74, 0.04);
    z-index: 0;
    pointer-events: none;
    font-family: Arial, sans-serif;
}

.block-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-navy);
    position: relative;
    z-index: 1;
    margin: 0;
}

.block-body p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.custom-check-list {
    list-style: none;
    padding-left: 0; /* LTR Fix */
    margin-top: 15px;
}

    .custom-check-list li {
        position: relative;
        padding-left: 30px; /* LTR Fix */
        padding-right: 0;
        margin-bottom: 15px;
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }

        .custom-check-list li::before {
            content: '\f00c';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0; /* LTR Fix: Checkmark on the left */
            right: auto;
            top: 2px;
            color: var(--brand-orange);
            font-size: 14px;
        }

        .custom-check-list li strong {
            color: var(--brand-navy);
        }

/* Sharing Grid (Cards inside text) */
.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.share-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: left; /* LTR Fix */
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

    .share-item:hover {
        background: #fff;
        border-color: var(--brand-orange);
        box-shadow: 0 10px 20px rgba(245, 157, 24, 0.05);
    }

    .share-item i {
        font-size: 24px;
        color: var(--brand-navy);
        margin-bottom: 15px;
        background: rgba(17, 40, 74, 0.05);
        padding: 12px;
        border-radius: 10px;
    }

    .share-item h4 {
        font-size: 16px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 10px;
    }

    .share-item p {
        font-size: 13px !important;
        color: #666 !important;
        margin: 0;
        line-height: 1.6 !important;
    }

/* Contact Box */
.privacy-contact-box {
    background: linear-gradient(135deg, var(--brand-navy), #0b1a30);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

    .privacy-contact-box h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .privacy-contact-box p {
        color: rgba(255,255,255,0.7);
        margin: 0;
        font-size: 15px;
    }

.btn-creative-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--brand-orange);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-creative-outline:hover {
        background: var(--brand-orange);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(245, 157, 24, 0.2);
    }

/* Mobile Responsiveness */
@media only screen and (max-width: 991px) {
    .overlap-cards {
        margin-top: -60px;
    }

    .privacy-content-wrapper {
        padding: 30px 20px;
    }

    .privacy-block {
        padding-left: 15px; /* LTR Fix */
    }

    .block-number {
        font-size: 50px;
        top: -20px;
        left: -10px; /* LTR Fix */
    }

    .block-header h2 {
        font-size: 20px;
    }
}

/* ============================================================
   Premium Terms & Conditions Page Styles (English LTR)
   ============================================================ */

.bg-light-gray {
    background-color: #f4f6f9;
}

.terms-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.terms-sidebar-wrapper {
    position: sticky;
    top: 120px;
}

.terms-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(17, 40, 74, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: left; /* LTR Fix */
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #eee;
}

.terms-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .terms-nav-list li {
        margin-bottom: 10px;
    }

        .terms-nav-list li:last-child {
            margin-bottom: 0;
        }

    .terms-nav-list a {
        display: flex;
        align-items: center;
        color: #666;
        font-size: 15px;
        font-weight: 600;
        padding: 12px 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
        background-color: transparent;
    }

        .terms-nav-list a i {
            width: 20px;
            margin-right: 15px; /* LTR Fix: Icon spacing on the right */
            margin-left: 0;
            color: #aaa;
            transition: all 0.3s ease;
        }

        .terms-nav-list a:hover {
            background-color: #f8f9fa;
            color: var(--brand-navy);
        }

        .terms-nav-list a.active {
            background-color: rgba(245, 157, 24, 0.1);
            color: var(--brand-orange);
        }

            .terms-nav-list a.active i {
                color: var(--brand-orange);
            }

.terms-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(17, 40, 74, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: left; /* LTR Fix */
}

.last-updated {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.terms-intro {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.term-block {
    margin-bottom: 40px;
}

    .term-block:last-child {
        margin-bottom: 0;
    }

    .term-block h3 {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .term-block h3::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--brand-orange);
            border-radius: 50%;
            margin-right: 10px; /* LTR Fix: Dot spacing on the right */
            margin-left: 0;
        }

    .term-block p {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .term-block ul {
        padding-left: 20px; /* LTR Fix */
        padding-right: 0;
        margin-bottom: 15px;
    }

        .term-block ul li {
            font-size: 15px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.7;
            list-style-type: square;
        }

            .term-block ul li::marker {
                color: var(--brand-orange);
            }

.alert-box {
    background-color: rgba(245, 157, 24, 0.05);
    border-left: 4px solid var(--brand-orange); /* LTR Fix: Border on the left */
    border-right: none;
    padding: 20px;
    border-radius: 0 10px 10px 0; /* LTR Fix: Radius on the right */
    font-size: 14px;
    color: var(--brand-navy);
    line-height: 1.8;
}

    .alert-box i {
        color: var(--brand-orange);
        font-size: 18px;
        margin-right: 10px; /* LTR Fix */
        margin-left: 0;
    }

/* Mobile Responsiveness */
@media only screen and (max-width: 991px) {
    .terms-sidebar-wrapper {
        position: relative;
        top: 0;
    }

    .terms-card {
        padding: 30px 20px;
    }

    .terms-intro, .term-block p, .term-block ul li {
        font-size: 14px;
    }

    .term-block h3 {
        font-size: 18px;
    }
}

/* ============================================================
   MOBILE HEADER FIX (100% Replica of Arabic Design but LTR)
   ============================================================ */

@media only screen and (max-width: 991px) {
    /* 1. Hide the white topbar completely */
    .topbar {
        display: none !important;
    }

    /* 2. Make the header transparent and overlap the hero video */
    header.main-header {
        position: absolute !important;
        top: 28px !important; /* Directly below the mobile ticker */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background-color: transparent !important;
        box-shadow: none !important;
        z-index: 999 !important;
    }

        header.main-header .header-sticky {
            background-color: transparent !important;
            margin-top: 0 !important;
            padding: 0 !important;
        }

    /* 3. Position the shield logo on the Top-Left (LTR) */
    .logo-panel-wrapper {
        display: block !important;
        position: absolute !important;
        left: 15px !important;
        right: auto !important;
        top: 0 !important;
        width: 90px !important;
        z-index: 1005 !important;
        margin: 0 !important;
    }

    .site-logo {
        display: block !important;
        padding: 0 !important;
        border-radius: 0 0 15px 15px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
        background: #fff !important;
    }

    .main-header .navbar-brand {
        display: none !important;
    }

    /* 4. Position the Hamburger Menu on the Top-Right (LTR) */
    .navbar-toggle {
        display: block !important;
        position: absolute !important;
        right: 15px !important;
        left: auto !important;
        top: 29px !important;
        margin: 0 !important;
        transform: none !important;
        z-index: 1006 !important;
    }

    .slicknav_btn {
        background-color: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Make hamburger icon lines white so they are visible over the dark video */
    .slicknav_icon-bar {
        background-color: #fff !important;
        width: 28px !important;
        height: 3px !important;
        margin: 5px 0 !important;
    }

    /* 5. Mobile Dropdown Menu Layout */
    .slicknav_nav {
        position: absolute !important;
        top: 95px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: var(--brand-navy) !important;
        text-align: left !important;
        border-top: 3px solid var(--brand-orange) !important;
        margin: 0 !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
    }

    /* 6. Sticky Scrolled State (When user scrolls down) */
    header.main-header .header-sticky.active {
        position: fixed !important;
        top: 45px !important;
        background-color: var(--brand-navy) !important; /* Becomes solid navy on scroll */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        padding: 10px 0 !important;
    }
}


/* ============================================================
   Ultra-Pro Dynamic Language Switcher (RTL & LTR Ready)
   ============================================================ */

.header-action-area {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1006;
}

/* Auto-align based on site direction */
[dir="ltr"] .header-action-area {
    right: 15px;
}

[dir="rtl"] .header-action-area {
    left: 15px;
    right: auto;
}

.pro-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05); /* Very subtle transparent background */
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 16px 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

[dir="rtl"] .pro-lang-btn {
    padding: 6px 12px 6px 16px;
    font-family: 'Manrope', sans-serif; /* English font for "English" text */
    letter-spacing: 0.5px;
}

[dir="ltr"] .pro-lang-btn {
    font-family: 'Cairo', sans-serif; /* Arabic font for "العربية" text */
    font-size: 15px;
}

/* The SVG Icon Styling */
.pro-lang-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pro-lang-icon svg {
        width: 18px;
        height: 18px;
        transition: transform 0.5s ease, stroke 0.3s ease;
        stroke: #fff;
    }

/* Hover Effects (The "Pro" Feel) */
.pro-lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(98, 149, 224, 0.2), rgba(245, 157, 24, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pro-lang-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pro-lang-btn:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 25px rgba(245, 157, 24, 0.25);
    transform: translateY(-2px);
}

    .pro-lang-btn:hover::before {
        opacity: 1;
    }

    .pro-lang-btn:hover .pro-lang-icon svg {
        stroke: var(--brand-orange);
        transform: rotate(45deg);
    }

    .pro-lang-btn:hover .pro-lang-text {
        color: #fff;
    }

/* ============================================================
   Mobile Usability Fixes for Pro Switcher
   ============================================================ */
@media only screen and (max-width: 991px) {
    .header-action-area {
        top: 29px !important;
        transform: none !important;
        gap: 12px;
    }

    [dir="ltr"] .header-action-area {
        right: 15px !important;
    }

    [dir="rtl"] .header-action-area {
        left: 15px !important;
        right: auto !important;
    }

    .pro-lang-btn {
        padding: 5px 12px;
    }

    [dir="rtl"] .pro-lang-btn {
        padding: 5px 10px 5px 12px;
    }

    .pro-lang-icon svg {
        width: 16px;
        height: 16px;
    }

    .navbar-toggle {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 0 !important;
    }
}

/* ============================================================
   Contact Form Loader Style
   ============================================================ */
.form-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 40, 74, 0.85); /* Brand Navy with opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 30px 0 0 30px; /* Match the container's radius */
    backdrop-filter: blur(5px);
}

    .form-loader-overlay p {
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 16px;
        animation: pulseText 1.5s infinite;
    }

@keyframes pulseText {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

@media only screen and (max-width: 991px) {
    .form-loader-overlay {
        border-radius: 30px 30px 0 0; /* Adjust radius for mobile stacked view */
    }
}

/* ============================================================
   Validation Error Fix (Floating Style)
   ============================================================ */
.form-floating-custom {
    position: relative;
    margin-bottom: 5px; /* Give space for error message */
}

    /* Target the ASP.NET Validator span */
    .form-floating-custom span[style*="color"] {
        position: absolute;
        bottom: -22px; /* Push it exactly below the line */
        left: 0; /* Align left for English */
        font-size: 12px;
        font-weight: 600;
        color: #ff6b6b !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

/* Ensure margins on columns accommodate the floating error */
.mb-4 {
    margin-bottom: 2.5rem !important; /* Increase gap slightly */
}

/* ============================================================
   1. Contact Form Loader Overlay (Professional Glass Effect)
   ============================================================ */
.form-side-dark {
    position: relative; /* Crucial: Keeps the loader inside the form box */
    overflow: hidden; /* Ensures loader respects the rounded corners */
}

.form-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 40, 74, 0.85); /* Brand Navy with opacity */
    backdrop-filter: blur(5px); /* Professional blur effect */
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px 0 0 30px; /* Matches the container's left radius */
}

.loader-content p {
    margin-top: 15px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* ============================================================
   2. Validation Error Fix (Floating Style - No Layout Shift)
   ============================================================ */
.form-floating-custom {
    position: relative;
    margin-bottom: 5px; /* Tiny gap for the error message */
}

    /* Target the ASP.NET Validator span specifically */
    .form-floating-custom span[style*="color"] {
        position: absolute;
        bottom: -22px; /* Pushes the text exactly below the input line */
        left: 0; /* Aligns to the left */
        font-size: 11px;
        font-weight: 700;
        color: #ff6b6b !important; /* Soft Error Red */
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        z-index: 5;
    }

/* Adjust column spacing slightly so errors don't overlap the next field */
.col-md-6.mb-4, .col-12.mb-4 {
    margin-bottom: 2.2rem !important;
}

/* ============================================================
   Mobile Responsiveness
   ============================================================ */
@media only screen and (max-width: 991px) {
    /* On mobile, the form stacks on top, so we adjust the loader radius */
    .form-loader-overlay {
        border-radius: 30px 30px 0 0;
    }
}