/*========================
        fonts
  ========================*/
@font-face {
    font-family: 'gilory extra';
    src: url(/web/fonts/Enfont/Gilroy-ExtraBold.ttf);
}

@font-face {
    font-family: 'gilory bold';
    src: url(/web/fonts/Enfont/Gilroy-Bold.ttf);
}

@font-face {
    font-family: 'mv arabic';
    src: url(../fonts/Arfont/DIN\ NEXT\ ARABIC\ BOLD.OTF);
}

@font-face {
    font-family: 'gilory medium';
    src: url(/web/fonts/Enfont/Gilroy-Medium.ttf);
}

@font-face {
    font-family: 'gilory regular';
    src: url(/web/fonts/Enfont/Gilroy-Regular.ttf);
}

@font-face {
    font-family: 'gilory light';
    src: url(/web/fonts/Enfont/Gilroy-Light.ttf);
}



/*========================
        global
  ========================*/
:root {
    --font-extra: 'gilory extra';
    --font-bold: 'gilory bold';
    --font-medium: 'gilory medium';
    --font-regular: 'gilory regular';
    --font-light: 'gilory light';
    --font-arbold: 'mv arabic';
    --primary-color: #283A46;
    --secondary-color: #BD5D41;
    --secondary-color-300: #D76957;
    --secondary-color-400: #D45F48;
    --font-80: 80px;
    --font-64: 64px;
    --font-40: 40px;
    --font-32: 32px;
    --font-24: 24px;
    --font-20: 20px;
    --font-18: 18px;
    --font-14: 14px;
}

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

    a:hover {
        color: inherit;
        cursor: pointer;
    }

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 0;
    padding: 0;
}

svg:hover {
    cursor: pointer;
}

input:focus {
    box-shadow: none !important;
}

/*========================
        preloader
  ========================*/
#preloader {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: backgroundMove 4s infinite alternate;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.logo-animation {
    animation: logoPulse 1s infinite alternate;
    -webkit-animation: logoPulse 1s infinite alternate;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}



/*========================
        nav
  ========================*/
#nav {
    padding-top: 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.nave {
    background-color: var(--primary-color);
    padding-top: 0px !important;
}



.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    max-width: 180px;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-family: var(--font-bold);
    font-size: 18px;
    line-height: 26px;
    text-align: right;
    color: #ffffff;
    margin: 0 10px;
}

    .navbar-nav .nav-item .nav-link.active {
        color: var(--secondary-color-300);
        font-family: var(--font-bold);
    }

    .navbar-nav .nav-item .nav-link:hover {
        color: var(--secondary-color);
    }

.store-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    font-family: var(--font-bold);
    animation: bounceInRight 1s;
    font-size: 18px;
}

.show-mobile-top {
    display: none;
}

.hamburger {
    padding: 10px 10px;
}

.hamburger-box {
    width: 35px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 35px;
}

.is-active {
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #5D6259 !important;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: #fff !important;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

.translate-form .nav-item .nav-link {
    font-family: var(--font-arbold) !important;
}

.dropdown .dropdown-toggle {
    font-family: var(--font-arbold) !important;
}

.dropdown .dropdown-menu {
    font-family: var(--font-arbold) !important;
}

    .dropdown .dropdown-menu .dropdown-item:hover {
        background-color: var(--secondary-color);
        color: #fff;
    }

.navbar-brand {
    margin-right: 0px;
}
/*========================
        header
  ========================*/
.hero-section {
    /*    background-image: url('../img/Frame\ 2.svg'), url('../img/Group\ 1.svg');*/
    background-size: contain, cover;
    background-position: top, center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    min-height: 500px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
    .hero-background iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 160%;
        height: 140%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        border: none;
    }
.background-video,
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay wrapper */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.overlay-image {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    object-fit: contain;
}

.hero-content h1 {
    font-family: var(--font-extra);
    font-size: var(--font-64);
    line-height: 80px;
    animation: bounceInRight 1.5s;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.hero-content p {
    font-family: var(--font-medium);
    font-size: var(--font-32);
    line-height: 44px;
    animation: bounceInUp 1.5s;
    z-index: 2;
    position: relative;
}

/*========================
        logo-banner
  ========================*/

.logo-banner {
    background-color: #ECF3F4;
    padding: 50px 0;
    min-height: 520px;
}

    .logo-banner .row {
        max-width: 1180px;
        width: 100%;
        margin-inline: auto;
    }

    .logo-banner .col {
        text-align: center;
        margin-top: 20px;
    }

    .logo-banner .container img {
        transition: transform 0.3s;
        max-width: 164px;
        width: 100%;
        height: 60px;
        object-fit: contain;
    }

        .logo-banner .container img:hover {
            transform: translateY(-10px);
        }

/*========================
        products-section
  ========================*/
.products-section {
    background-color: var(--primary-color);
    padding: 0;
    background-image: url('../img/Group\ 4.svg');
    background-repeat: no-repeat;
    background-position: top right;
}

.about-control {
    position: absolute;
    margin-top: -311px;
    width: 100%;
}

.intro-naqsh {
    background-color: var(--secondary-color);
    height: 100%;
    padding: 100px;
}

    .intro-naqsh p {
        display: -webkit-box;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .intro-naqsh a {
        color: #fff;
        font-family: var(--font-bold);
        font-size: var(--font-20);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .intro-naqsh a:hover {
            color: var(--primary-color);
        }

.text-white {
    color: #fff;
}

.text-size {
    font-family: var(--font-medium);
    font-size: var(--font-20);
}

.col-img {
    padding-inline-end: 0px;
}

    .col-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.col-p {
    padding-inline-start: 0px;
}

.large-padding {
    padding-top: 350px;
    padding-bottom: 30px;
}

.p-size {
    font-size: var(--font-24);
    font-family: var(--font-light);
}

.h-size {
    font-size: var(--font-80);
    font-family: var(--font-bold);
}

.text-color {
    color: var(--secondary-color-400) !important;
}

.marge-start {
    margin-inline-start: -6px;
}

.h-furniture {
    font-size: var(--font-64);
    font-family: var(--font-bold);
    margin-bottom: 30px;
}

.p-furniture {
    font-size: var(--font-20);
    font-family: var(--font-regular);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.div-finist {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-Finest {
    font-size: var(--font-24);
    font-family: var(--font-medium);
}

.product-image {
    margin-bottom: -285px;
}

    .product-image img {
        width: 100%;
        object-fit: cover;
        height: 100%;
        min-height: 600px;
        max-height: 600px;
    }



/*========================
        products-section
  ========================*/

.porta-cabins {
    background-color: #ECF3F4;
    background-image: url('../img/Group\ 4\ \(2\).svg');
    background-repeat: no-repeat;
    background-position: bottom 50px right;
}

.p-avliable {
    font-size: var(--font-24);
    font-family: var(--font-light);
    color: #000;
}

.products-view-button {
    background-color: var(--secondary-color-300);
    padding: 20px 0;
    max-width: 322px;
    width: 100%;
    font-family: var(--font-bold);
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-block: 20px;
}

    .products-view-button img {
        transition: transform 0.3s;
        margin-inline-start: 1rem;
    }

    .products-view-button:hover img {
        transform: translateX(5px);
    }

.image-product {
    margin-bottom: 40px;
}

    .image-product img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.h-prota {
    color: var(--primary-color);
    font-family: var(--font-bold);
    font-size: var(--font-64);
}

.img-cabina img {
    min-height: 600px;
    height: 74vh;
    object-fit: cover;
}

.p-porta {
    font-family: var(--font-regular);
    font-size: var(--font-20);
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-our-porta {
    font-family: var(--font-medium);
    font-size: var(--font-24);
    color: #000;
}

.video-products video {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 10px 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 25px;
    border: none;
}

.sectors-covered h3 {
    font-family: var(--font-regular);
    color: var(--primary-color);
    font-size: 38px;
    margin-bottom: 50px;
}

.sector-card {
    background-color: transparent;
    padding: 15px 30px;
    color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    min-height: 132px;
    border: 1px solid var(--secondary-color-400);
}

    .sector-card img {
        filter: invert(47%) sepia(72%) saturate(513%) hue-rotate(322deg) brightness(86%) contrast(93%);
    }

    .sector-card p {
        font-family: var(--font-medium);
        font-size: var(--font-20);
        color: #000;
        margin-bottom: 0px;
    }

/*    .sector-card:hover {
        transform: scale(1.05);
        cursor: pointer;
    }*/

.download-catalogue {
    padding: 28px 0px;
    width: 100%;
    margin-inline: auto;
}

    .download-catalogue a {
        color: var(--secondary-color);
        font-family: var(--font-medium);
        font-size: var(--font-20);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .download-catalogue a:hover {
            color: var(--primary-color);
        }
/*========================
        timeline
  ========================*/
.timeline-parent {
    background: #fff;
}
.timeline {
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding-block: 5rem;
    margin: 0 auto 1rem auto;
    overflow: hidden;
}

    .timeline:after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -2px;
        border-right: 2px dashed #4b546f;
        height: 100%;
        display: block;
    }

.timeline-row {
    position: relative;
    margin-bottom: 50px;
}

    .timeline-row .timeline-time {
        position: absolute;
        right: 50%;
        top: 15px;
        text-align: right;
        margin-right: 20px;
        color: var(--primary-color);
        font-size: var(--font-18);
        font-family: var(--font-medium);
    }

        .timeline-row .timeline-time small {
            display: block;
            font-size: var(--font-14);
        }
    .timeline-row .timeline-content-wrapper {
        display: flex;
        justify-content: space-between;
        align-items:center;
       
    }
    .timeline-row .timeline-content {
        position: relative;
        padding: 20px 30px;
        background: var(--primary-color);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        max-width: 560px;
        width: 100%;
    }

        .timeline-row .timeline-content:after {
            content: "";
            position: absolute;
            top: 20px;
            height: 16px;
            width: 16px;
            background: var(--primary-color);
        }

        .timeline-row .timeline-content:before {
            content: "";
            position: absolute;
            top: 20px;
            right: -96px;
            width: 20px;
            height: 20px;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            border-radius: 100px;
            z-index: 10;
            background: #272e48;
            border: 2px dashed #4b546f;
        }
    .timeline-row .timeline-content-text {
        max-width:500px;
        width:100%;
    }

        .timeline-row .timeline-content-text h4 {
            margin-bottom: 20px;
            text-overflow: ellipsis;
            line-height: 150%;
            color: var(--primary-color);
            font-family: var(--font-bold);
            font-size: var(--font-24);
        }

        .timeline-row .timeline-content-text p {
            margin-bottom: 30px;
            line-height: 150%;
            font-family: var(--font-regular);
            font-size: var(--font-18);
            color: var(--primary-color);
        }

        .timeline-row .timeline-content i {
            font-size: 1.2rem;
            line-height: 100%;
            padding: 15px;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            border-radius: 100px;
            background: #272e48;
            margin-bottom: 10px;
            display: inline-block;
        }

        .timeline-row .timeline-content .thumbs {
            display: flex;
            width:100%;
            justify-content:center;

        }

            .timeline-row .timeline-content .thumbs img {
                margin: 5px;
                max-width: 500px;
                width:100%;
                max-height:300px;
                min-height:300px;
                object-fit:cover;
            }
    .timeline-row:nth-child(odd) .timeline-content-text {
        margin-inline-start: 15%;
    }
    .timeline-row:nth-child(even) .timeline-content-text {
        margin-inline-end: 15%;
    }
    .timeline-row:nth-child(even) .timeline-content-wrapper {
        flex-direction: row-reverse;
    }
        .timeline-row:nth-child(even) .timeline-content {
        margin-left: 40px;
        text-align: left;
    }

        .timeline-row:nth-child(even) .timeline-content:after {
            left: -8px;
            right: initial;
            border-bottom: 0;
            border-left: 0;
            transform: rotate(-135deg);
        }

        .timeline-row:nth-child(even) .timeline-content:before {
            left: -97.5px;
            right: initial;
        }

    .timeline-row:nth-child(odd) {
        padding-left: 0;
    }

        .timeline-row:nth-child(odd) .timeline-time {
            right: auto;
            left: 50%;
            text-align: left;
            margin-right: 0;
            margin-left: 20px;
        }

        .timeline-row:nth-child(odd) .timeline-content {
            margin-right: 40px;
        }

            .timeline-row:nth-child(odd) .timeline-content:after {
                right: -8px;
                border-left: 0;
                border-bottom: 0;
                transform: rotate(45deg);
            }

    /*========================
        our-clients
  ========================*/
    .our-clients {
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 430px;
        padding-block: 40px;
    }

    .h-care {
        font-family: var(--font-light);
        font-size: var(--font-20);
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .h-client {
        font-family: var(--font-bold);
        font-size: var(--font-80);
        color: var(--secondary-color);
        margin-bottom: 40px;
        line-height: 44px;
    }

    .p-client {
        font-family: var(--font-light);
        font-size: var(--font-24);
        color: #000;
        margin-bottom: 60px;
    }

    .group-client {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-items: center;
        align-items: center;
    }


    .our-clients img {
        max-width: 100%;
        object-fit: contain;
    }

    /*========================
       projects-section
  ========================*/
    .projects-section {
        background-color: var(--secondary-color);
        padding: 130px 0px;
        background-image: url('../img/Group\ 4\ \(1\).svg');
        background-repeat: no-repeat;
        background-position: top left;
        background-size: 90% 100%;
    }

    .project-subtitle {
        font-family: var(--font-light);
        font-size: var(--font-24);
        color: #FFFFFF;
    }

    .imag-project img {
        width: 100%;
        max-height: 700px;
        height: 100%;
        object-fit: cover;
        min-height: 700px;
    }

    .project-title {
        font-family: var(--font-bold);
        font-size: var(--font-80);
        color: #FFFFFF;
    }

    .project-details {
        background-color: rgba(40, 58, 70, 0.65);
        padding: 50px 70px;
        position: absolute;
        bottom: 0;
        left: 0;
    }

        .project-details img {
            margin-inline-end: 10px;
            max-width: 130px;
            max-height: 130px;
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

    .project-name {
        font-family: var(--font-bold);
        font-size: var(--font-32);
        color: #FFFFFF;
        margin-bottom: 5px;
    }

    .project-location p {
        font-family: var(--font-medium);
        font-size: 18px;
        color: #FFFFFF;
        line-height: 26px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 500px;
        width: 100%;
    }

    .project-button {
        background-color: var(--secondary-color);
        color: #FFFFFF;
        font-family: var(--font-medium);
        font-size: 18px;
        padding: 10px 20px;
        position: relative;
    }

    .swiper-container {
        overflow: hidden;
    }

    .parent-btn-swiper {
        display: flex;
        justify-content: end;
    }

    .group-swiper-button {
        display: inline-flex;
        justify-content: end;
        gap: 10px;
        background: var(--secondary-color);
        top: -90px;
        z-index: 12;
        padding-top: 10px;
        padding-inline-start: 10px;
    }

    .swipers-button-next,
    .swipers-button-prev {
        height: 80px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .swipers-button-next:hover,
        .swipers-button-prev:hover {
            background-color: var(--secondary-color-300);
        }

    /*========================
       testimonials-section
  ========================*/
    .testimonials-section {
        background-color: var(--primary-color);
        padding: 180px 0;
        background-image: url('../img/Group\ 6.svg');
        background-repeat: no-repeat;
        background-position: top left;
        background-size: 78.65% 90%;
    }

    .testimonial-subtitle {
        font-family: var(--font-light);
        font-size: var(--font-24);
        color: #FFFFFF;
    }

    .testimonial-title {
        font-family: var(--font-bold);
        font-size: var(--font-80);
        color: var(--secondary-color-300);
    }

    .testimonial-card {
        background-color: #ECF3F4;
        padding: 50px 40px;
        height: 100%;
    }

    .testimonial-text {
        font-family: var(--font-light);
        font-size: var(--font-20);
        color: #000000;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .author-name {
        font-family: var(--font-bold);
        font-size: 18px;
        color: #000000;
        margin-bottom: 5px;
    }

    .author-position {
        font-family: var(--font-medium);
        font-size: 12px;
        color: #000000;
    }

    .testimonial-author img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        object-fit: cover;
    }


    /*========================
       cta-section
  ========================*/

    .cta-section {
        background-color: #FFFFFF;
        padding: 120px 0px;
    }

    .cta-subtitle {
        font-family: var(--font-light);
        font-size: var(--font-24);
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .cta-title {
        font-family: var(--font-bold);
        font-size: 48px;
        color: var(--primary-color);
        margin-bottom: 60px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

        .cta-buttons .btn-primary {
            background-color: var(--secondary-color);
            color: #FFFFFF;
            font-family: var(--font-bold);
            font-size: 18px;
            padding: 12px 20px;
            border: none;
            border: 1px solid var(--secondary-color);
            min-width: 180px;
            display: inline-block;
        }

        .cta-buttons .btn-outline-primary {
            color: var(--secondary-color);
            font-family: var(--font-bold);
            font-size: 18px;
            padding: 12px 20px;
            border: 1px solid var(--secondary-color);
            min-width: 180px;
            display: inline-block;
        }

    /* .cta-buttons .btn-outline-primary:hover {
            background-color: var(--secondary-color);
            color: #FFFFFF;
        }*/

    /*========================
    hero-section-inline
  ========================*/
    .hero-section-inline {
        background-image: url('../img/Frame\ 1.svg');
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: 170px;
        color: white;
        min-height: 650px;
    }

    .hero-content-inline h1 {
        font-family: var(--font-extra);
        font-size: var(--font-64);
        margin-bottom: 20px;
    }

    .hero-content-inline p {
        font-family: var(--font-regular);
        font-size: var(--font-14);
    }

    .hero-content-inline .home-link {
        color: #fff;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .hero-content-inline .home-link:hover {
            color: var(--secondary-color-300);
        }

    /*========================
    about-section
  ========================*/
    .about-section {
        background-color: #ECF3F4;
        padding-bottom: 50px;
        position: relative;
        background-image: url('../img/Group\ 4\(3\).svg');
        background-repeat: no-repeat;
        background-position: bottom 230px left;
    }

    .image-about {
        /*    margin-bottom: -280px;*/
        z-index: 3;
        position: relative;
        padding-top: 50px;
    }

        .image-about img {
            max-height: 550px;
            min-height: 550px;
            width: 100%;
            object-fit: cover;
        }

    .p-top-large {
        padding-top: 270px;
    }

    .section-title {
        font-family: var(--font-bold);
        font-size: var(--font-64);
        color: var(--secondary-color);
    }

    .section-content,
    .objective-content,
    .profile-position {
        font-family: var(--font-regular);
        font-size: var(--font-24);
        color: #000;
    }

    .content-section {
        margin-top: 80px;
    }

    .objective-title {
        font-family: var(--font-bold);
        font-size: var(--font-24);
        color: #000;
        line-height: 32px;
    }

    .team-section {
        margin-top: 100px;
    }

    .profile-name {
        font-family: var(--font-bold);
        font-size: var(--font-32);
        color: var(--secondary-color);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .profile-name:hover {
            color: var(--secondary-color-300);
            cursor: pointer;
        }

    .team-title {
        font-family: var(--font-bold);
        font-size: var(--font-64);
        text-align: center;
        color: var(--secondary-color);
    }

    .team-profiles {
        margin-top: 80px;
    }

    .profile {
        text-align: center;
        margin-bottom: 100px;
    }

        .profile .img-profile {
            width: 280px;
            height: 280px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            margin-bottom: 15px;
            margin-inline: auto;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

            .profile .img-profile:hover {
                transform: scale(1.03);
                -webkit-transform: scale(1.03);
                -moz-transform: scale(1.03);
                -ms-transform: scale(1.03);
                -o-transform: scale(1.03);
                cursor: pointer;
            }

        .profile img {
            width: 100%;
            object-fit: cover;
        }

    .icon-objectives {
        width: 150px;
        height: 150px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        margin-top: 15px;
        margin-bottom: 10px;
        margin-inline: auto;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

        .icon-objectives svg {
            font-size: 50px;
            color: #fff;
        }
    /*========================
       product-section
  ========================*/
    .image-container {
        margin-bottom: -350px;
        z-index: 3;
        position: relative;
        margin-top: 50px;
    }

        .image-container img {
            max-height: 700px;
            min-height: 700px;
            width: 100%;
            object-fit: cover;
        }

        .image-container .overlay {
            position: absolute;
            bottom: 0px;
            left: 0px;
            background-color: rgba(40, 58, 70, 0.65);
            padding: 50px 40px;
            max-width: 500px;
            width: 100%;
        }

    .product-title {
        font-family: var(--font-bold);
        font-size: var(--font-32);
        color: #fff;
    }

    .product-price {
        font-family: var(--font-bold);
        font-size: var(--font-20);
        color: #fff;
    }

    .product-description {
        font-family: var(--font-medium);
        font-size: var(--font-18);
        color: #fff;
        line-height: 26px;
    }

    .btn-details-product {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 8px 20px;
        min-width: 97px;
        height: 42px;
        background: #FFFFFF;
        font-size: var(--font-18);
        font-family: var(--font-medium);
        color: var(--secondary-color);
        border: none;
    }

    .btn-purchase {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 8px 20px;
        min-width: 97px;
        height: 42px;
        background: var(--secondary-color);
        font-size: var(--font-18);
        font-family: var(--font-medium);
        color: #fff;
        border: none;
    }

    .p-top-large-product {
        padding-top: 350px;
    }

    .section-heading {
        font-family: var(--font-bold);
        font-size: 48px;
        color: var(--secondary-color);
        margin-bottom: 0px;
    }

    .tabs-nav {
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 10px;
    }

    .nav .btn {
        font-family: var(--font-medium);
        font-size: 20px;
        line-height: 28px;
        border-radius: 10px;
        padding: 10px 20px;
        border: 1px solid var(--secondary-color);
    }

    .active-category {
        background-color: var(--secondary-color);
        color: #fff;
    }

    .category {
        background-color: #fff;
        color: var(--secondary-color);
    }

        .category:hover {
            background-color: var(--secondary-color);
            color: #fff;
        }

    .products-video {
        padding: 50px 0 0px;
    }

    .video-thumbnail video {
        width: 100%;
        max-height: 550px;
        min-height: 550px;
        object-fit: cover;
    }

    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        padding: 10px 20px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        font-size: 25px;
    }

    .modal-vido {
        max-width: 1000px;
        width: 100%;
        padding-inline: 10px;
    }

    .group-swiper-button-two {
        display: inline-flex;
        justify-content: end;
        gap: 10px;
        background: #ECF3F4;
        top: -180px;
        z-index: 12;
        padding-top: 10px;
        padding-inline-start: 10px;
    }

    .products-gallery {
        padding: 50px 0 10px;
    }

    .card-product {
        min-height: 615px;
        margin-bottom: 20px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        max-width: 400px;
        width: 100%;
        margin-inline: auto;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }

        .card-product:hover {
            transform: scale(1.02);
            -webkit-transform: scale(1.02);
            -moz-transform: scale(1.02);
            -ms-transform: scale(1.02);
            -o-transform: scale(1.02);
            cursor: pointer;
        }

        .card-product img {
            max-height: 400px;
            max-width: 400px;
            width: 100%;
            object-fit: cover;
            border-radius: 0px;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            -ms-border-radius: 0px;
            -o-border-radius: 0px;
        }

    .card-title-product {
        font-family: var(--font-bold);
        font-size: var(--font-24);
        color: var(--secondary-color);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .card-title-product:hover {
            color: var(--secondary-color-300);
        }

    .card-price {
        font-family: var(--font-medium);
        font-size: var(--font-24);
        color: #000;
    }

    .card-product-text {
        font-family: var(--font-medium);
        font-size: var(--font-20);
        color: #000;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .view-more {
        font-family: var(--font-regular);
        font-size: var(--font-40);
        line-height: 44px;
        color: var(--primary-color);
        text-align: center;
    }

        .view-more a {
            font-family: var(--font-bold);
            text-decoration: underline;
            color: var(--secondary-color);
        }

    /*========================
       services
  ========================*/
    .text-overlay {
        position: absolute;
        bottom: -1px;
        left: -1px;
        width: 100%;
        background-color: #ecf3f4ff;
        padding: 20px 0px 0px;
        box-sizing: border-box;
        max-width: 800px;
        width: 100%;
    }

    .title {
        font-family: var(--font-bold);
        font-size: var(--font-64);
        color: var(--secondary-color);
        margin-bottom: 16px;
        margin-bottom: 0px;
    }

    .description {
        font-family: var(--font-medium);
        font-size: var(--font-32);
        color: #000;
        line-height: 44px;
        margin-top: 50px;
    }

    .desc-text {
        font-family: var(--font-medium);
        font-size: var(--font-24);
        color: #000;
        line-height: 32px;
        margin-top: 20px;
    }

    .img-service {
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .img-service img {
            width: 100%;
            object-fit: cover;
            min-height: 610px;
            max-height: 610px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

    .image-serv {
        position: relative;
        margin-block: 50px;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        .image-serv img {
            max-height: 550px;
            min-height: 550px;
            width: 100%;
            object-fit: cover;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

        .img-service:hover img,
        .image-serv:hover img {
            transform: scale(1.02);
            -webkit-transform: scale(1.02);
            -moz-transform: scale(1.02);
            -ms-transform: scale(1.02);
            -o-transform: scale(1.02);
            cursor: pointer;
        }

    /*========================
       project-container
  ========================*/
    .project-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
        box-sizing: border-box;
    }

    .row-project {
        margin-bottom: -300px;
        margin-top: 50px;
        position: relative;
        z-index: 1;
    }

    .text-container {
        display: flex;
        flex-direction: column;
        padding: 20px 60px;
        background: #fff;
        height: 100%;
        justify-content: center;
    }

    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .logo {
        max-width: 80px;
        width: 100%;
    }

    .header-text h1 {
        font-size: var(--font-32);
        font-family: var(--font-bold);
        line-height: 44px;
        color: var(--secondary-color);
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .location {
        font-size: var(--font-20);
        font-family: var(--font-medium);
        line-height: 28px;
        color: #000;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .description-pro {
        font-size: var(--font-24);
        font-family: var(--font-regular);
        line-height: 32px;
        color: #000;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 9;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .details-button {
        background-color: var(--secondary-color);
        color: #FFF;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        font-size: var(--font-18);
        font-family: var(--font-bold);
        line-height: 26px;
        max-width: 163px;
        width: 100%;
        text-align: center;
    }

    .image-project {
        overflow: hidden;
    }

        .image-project img {
            max-height: 600px;
            object-fit: cover;
            width: 100%;
            min-height: 600px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

        .image-project:hover img {
            transform: scale(1.02);
            -webkit-transform: scale(1.02);
            -moz-transform: scale(1.02);
            -ms-transform: scale(1.02);
            -o-transform: scale(1.02);
            cursor: pointer;
        }

    /*========================
       project-details
  ========================*/

    .header-container-details {
        display: flex;
        align-items: center;
        gap: 20px;
        box-sizing: border-box;
        margin-block: 30px;
    }

    .logo-project {
        max-width: 140px;
        max-height: 140px;
        width: 100%;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }



    .title-details {
        font-size: var(--font-40);
        line-height: 44px;
        color: var(--secondary-color);
        font-family: var(--font-bold);
        margin: 0;
    }

    .location-project-details {
        font-size: var(--font-24);
        font-family: var(--font-regular);
        line-height: 32px;
        color: #000;
        margin: 0;
    }

    .p-project-details {
        font-size: var(--font-24);
        font-family: var(--font-regular);
        line-height: 32px;
        color: #000;
    }

    .desc-details {
        font-family: var(--font-regular);
    }

    .similar {
        font-size: 48px;
        font-family: var(--font-bold);
        color: var(--secondary-color);
        margin-bottom: 40px;
        margin-top: 80px;
    }

    .swiper-details {
        overflow: visible;
    }

    .swiper-pagination .swiper-pagination-bullet {
        height: 20px;
        width: 20px;
        background: #fff;
        opacity: 1;
        margin-bottom: 18px !important;
    }

    .swiper-details .swiper-pagination .swiper-pagination-bullet-active {
        background: var(--secondary-color);
    }

    /*========================
       contact 
  ========================*/
    .contact-us-section {
        background-color: #ECF3F4;
        padding-bottom: 50px;
        position: relative;
    }

    .contact-up {
        background: #fff;
        padding: 32px 50px;
        /*    margin-bottom: -315px;*/
        z-index: 3;
        position: relative;
        /*    margin-top: 50px;*/
    }

    .contact-form,
    .get-in-touch {
        padding: 10px;
    }

    .contact-title,
    .get-in-touch-title {
        font-size: var(--font-32);
        line-height: 44px;
        color: var(--secondary-color);
        font-family: var(--font-bold);
        margin-bottom: 20px;
    }

    .input-group {
        background: #eef3f7;
        padding: 16px 20px;
        margin-bottom: 23px;
        border: none;
    }

        .input-group:focus {
            border: 1px solid var(--secondary-color);
            outline: none;
        }

        .input-group::placeholder {
            font-size: 18px;
            line-height: 26px;
            color: #3f535c;
            font-family: var(--font-regular);
            margin: 0;
        }

    input[type="number"] {
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

    .message-box {
        min-height: 200px;
    }

    .conversation {
        color: #000;
        font-size: var(--font-24);
        font-family: var(--font-medium);
        line-height: 32px;
        margin-top: -5px;
    }

    .get-touch {
        color: #000;
        font-size: var(--font-24);
        font-family: var(--font-bold);
        line-height: 32px;
    }

    .contact-details {
        color: #000;
        font-size: var(--font-18);
        font-family: var(--font-regular);
        margin-bottom: 10px;
    }

        .contact-details span {
            color: #000;
            font-size: var(--font-18);
            font-family: var(--font-bold);
        }

        .contact-details a {
            color: #000;
            transition: all 0.3s ease-in-out;
        }

            .contact-details a:hover {
                color: var(--secondary-color);
            }

    .send-button {
        background-color: #bd5d41;
        color: #fff;
        padding: 10px 20px;
        border: none;
        font-size: var(--font-18);
        font-family: var(--font-bold);
        line-height: 26px;
        cursor: pointer;
        margin-inline-start: auto;
        display: block;
    }

    .Call-visit {
        color: var(--secondary-color);
        font-size: var(--font-18);
        font-family: var(--font-regular);
        text-decoration: underline;
    }

    .location-title {
        font-size: var(--font-40);
        font-family: var(--font-bold);
        line-height: 49.52px;
        color: var(--secondary-color);
        margin-bottom: 30px;
        margin-top: 40px;
    }

    .map-container {
        box-sizing: border-box;
    }

        .map-container iframe {
            min-height: 580px;
            height: 100%;
            border: 20px solid #fff;
        }

    /*========================
       partner
  ========================*/
    .partner-section {
        background-color: #ECF3F4;
        padding-bottom: 50px;
        position: relative;
    }

    .grid-container {
        background-color: #fff;
        padding: 30px 60px 60px;
        transform: translateY(-320px);
        -webkit-transform: translateY(-320px);
        -moz-transform: translateY(-320px);
        -ms-transform: translateY(-320px);
        -o-transform: translateY(-320px);
        margin-bottom: -250px;
    }

    .logo-card-container {
        width: 220px;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
        margin-top: 30px;
        padding-inline: 10px;
        background: #fff;
        border-radius: 50%;
        margin-inline: auto;
    }

        .logo-card-container:hover {
            transform: translateY(-5px);
            -webkit-transform: translateY(-5px);
            -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            -o-transform: translateY(-5px);
        }

    .logo-image {
        max-width: 150px;
        width: 100%;
        object-fit: contain;
    }

    .brand-title {
        font-family: var(--font-medium);
        font-size: var(--font-24);
        color: #000000;
        margin-top: 10px;
        text-align: center;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s e;
        -moz-transition: all 0.3s e;
        -ms-transition: all 0.3s e;
        -o-transition: all 0.3s e;
    }

    .logo-card-container:hover .brand-title {
        color: var(--secondary-color-300) !important;
    }

    /*========================
       footer
  ========================*/
    .footer-section {
        background-color: var(--secondary-color);
        color: #FFFFFF;
        font-family: var(--font-medium);
        position: relative;
    }

    .footer-top {
        background-color: var(--secondary-color);
    }

    .footer-logo {
        max-width: 198px;
        height: auto;
        width: 100%;
    }

    .footer-title {
        font-family: var(--font-bold);
        margin-bottom: 10px;
        font-size: 18px;
    }

    .footer-links li a {
        font-size: 16px;
        color: #fff;
        transition: all 0.3s ease, color 0.3s ease;
        -webkit-transition: all 0.3s ease, color 0.3s ease;
        -moz-transition: all 0.3s ease, color 0.3s ease;
        -ms-transition: all 0.3s ease, color 0.3s ease;
        -o-transition: all 0.3s ease, color 0.3s ease;
        font-family: var(--font-regular);
        display: block;
    }

        .footer-links li a:hover {
            color: #132029;
        }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact {
        padding-inline-start: 50px;
    }

        .footer-contact li a {
            display: flex;
            gap: 10px;
        }

        .footer-contact svg {
            margin-top: 5px;
            font-size: 15px;
            width: 15px;
        }

    .socials li a {
        font-size: var(--font-24);
        transition: all 0.3s ease, color 0.3s ease;
        -webkit-transition: all 0.3s ease, color 0.3s ease;
        -moz-transition: all 0.3s ease, color 0.3s ease;
        -ms-transition: all 0.3s ease, color 0.3s ease;
        -o-transition: all 0.3s ease, color 0.3s ease;
        color: #fff;
    }

        .socials li a:hover {
            transform: scale(1.2);
            color: var(--primary-color) !important;
            /* Change icon color on hover */
        }

    .footer-bottom {
        background-color: #97432B;
        font-size: 14px;
        font-family: var(--font-medium);
    }

    .footer-bottom-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-bottom p {
        margin-bottom: 0px;
    }

 /*========================
       responsive
  ========================*/
@media (max-width: 1199px) {
    .timeline-row .timeline-content:before {
        right: -81px;
    }

    .timeline-row:nth-child(even) .timeline-content:before {
        left: -82.5px;
    }
}

@media (max-width: 992px) {
    .timeline {
        padding: 15px;
    }

        .timeline:after {
            border: 0;
        }

        .timeline .timeline-row:nth-child(odd) {
            padding: 0;
        }

            .timeline .timeline-row:nth-child(odd) .timeline-time {
                position: relative;
                top: 0;
                left: 0;
                margin: 0 0 10px 0;
            }

    .timeline-row .timeline-content {
        margin-bottom: 20px !important;
        max-width: 100%;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-content {
        margin: 0;
    }

        .timeline .timeline-row:nth-child(odd) .timeline-content:before {
            display: none;
        }

        .timeline .timeline-row:nth-child(odd) .timeline-content:after {
            display: none;
        }

    .timeline .timeline-row:nth-child(even) {
        padding: 0;
    }

        .timeline .timeline-row:nth-child(even) .timeline-time {
            position: relative;
            top: 0;
            left: 0;
            margin: 0 0 10px 0;
            text-align: left;
        }

    .timeline-row .timeline-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-row:nth-child(even) .timeline-content-wrapper {
        flex-direction: column;
    }

    .timeline-row:nth-child(odd) .timeline-content-text {
        margin-inline-start: 0%;
    }

    .timeline .timeline-row:nth-child(even) .timeline-content {
        margin: 0;
    }

        .timeline .timeline-row:nth-child(even) .timeline-content:before {
            display: none;
        }

        .timeline .timeline-row:nth-child(even) .timeline-content:after {
            display: none;
        }
}
    @media (min-width: 992px) {
        .our-clients .col-lg {
            flex: 1 0 0%;
            max-width: 264px;
            width: 100%;
            min-width: 221px;
        }
    }

    @media(max-width:1400px) {
        .navbar-nav .nav-item .nav-link {
            margin: 0 5px;
        }
    }

    @media(max-width:1199px) and (min-width:991px) {
        .store-button {
            font-size: 13px;
        }

        .navbar-nav .nav-item .nav-link {
            font-size: 13px;
        }
    }

    @media(max-width:991px) {
        .intro-naqsh {
            padding: 100px 30px;
        }

        .product-image {
            margin-bottom: 20px;
        }

        .order {
            order: -1;
        }

        .img-cabina img {
            width: 100%;
            max-height: 600px;
            min-height: 600px;
            object-fit: cover;
        }

        .project-details {
            background-color: rgba(40, 58, 70, 0.65);
            padding: 30px 30px;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .product-image img {
            max-height: 600px;
            min-height: 600px;
        }

        .show-mobile-top {
            display: inline-block;
        }

        .show-disk-top {
            display: none;
        }

        .navbar-collapse {
            position: relative;
            left: -120% !important;
            width: 100%;
            height: 100vh;
            transition: left 0.3s ease-in-out;
            -webkit-transition: left 0.3s ease-in-out;
            -moz-transition: left 0.3s ease-in-out;
            -ms-transition: left 0.3s ease-in-out;
            -o-transition: left 0.3s ease-in-out;
        }

        .nav-back {
            background-color: var(--primary-color);
        }

        .navbar-collapse.show {
            left: 0 !important;
            height: 100vh;
            min-height: 700px;
            position: relative;
            text-align: center;
        }


        .navbar-nav .nav-item .nav-link {
            margin-inline: auto;
            width: fit-content;
        }

        .tabs-nav {
            justify-content: center;
        }

        .section-heading {
            margin-bottom: 30px;
            text-align: center;
        }
    }

@media(max-width:767px) {
    :root {
        --font-80: 60px;
        --font-64: 40px;
        --font-40: 30px;
        --font-32: 25px;
        --font-20: 18px;
        --font-24: 20px;
    }

    .footer-contact {
        padding-inline-start: calc(var(--bs-gutter-x)* .5);
    }

    .col-img {
        padding-inline-end: calc(var(--bs-gutter-x)* .5);
    }

    .col-p {
        padding-inline-start: calc(var(--bs-gutter-x)* .5);
    }

    .about-control {
        position: relative;
        margin-top: 0px;
        padding-top: 50px;
    }

    .intro-naqsh {
        padding: 50px 30px;
    }

    .large-padding {
        padding-top: 50px;
    }

    .image-product img {
        padding-bottom: 20px;
    }

    .cta-title {
        font-size: 40px;
    }

    .logo-banner {
        min-height: fit-content;
    }

    .projects-section {
        padding: 50px 0px;
    }

    .group-swiper-button {
        top: 0px;
        margin-top: 20px;
    }

    .parent-btn-swiper {
        justify-content: center;
    }

    .swipers-button-next,
    .swipers-button-prev {
        height: 60px;
        width: 60px;
    }

    .project-name {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .project-location p {
        font-size: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .project-button {
        font-size: 15px;
    }



    .section-heading {
        font-size: 40px;
    }

    .order {
        order: -1;
    }

    .similar {
        font-size: 40px;
    }

    .contact-up {
        padding: 32px 30px;
    }

    .grid-container {
        padding: 30px 30px 60px;
    }

    .profile .img-profile {
        width: 200px;
        height: 200px;
    }
}
    @media(max-width:576px) {
        :root {
            --font-80: 50px;
            --font-64: 35px;
            --font-40: 25px;
            --font-32: 20px;
            --font-20: 15px;
            --font-24: 18px;
        }

        .hero-content h1 {
            line-height: 50px;
        }

        .hero-content p {
            line-height: 35px;
        }

        .cta-title {
            font-size: 30px;
        }

        .section-heading {
            font-size: 30px;
        }

        .cta-buttons {
            flex-wrap: wrap;
        }

        .footer-bottom-content {
            flex-wrap: wrap;
            justify-content: center;
        }

        .text-container {
            padding: 20px 30px;
        }

        .similar {
            font-size: 30px;
        }

        .logo-project {
            max-width: 100px;
            max-height: 100px;
        }

        .contact-up {
            padding: 32px 20px;
        }

        .grid-container {
            padding: 30px 20px 60px;
            transform: translateY(-340px);
            -webkit-transform: translateY(-340px);
            -moz-transform: translateY(-340px);
            -ms-transform: translateY(-340px);
            -o-transform: translateY(-340px);
            margin-bottom: -260px;
        }

        .logo-card-container {
            margin-inline: auto;
        }
        .hero-background iframe {
           
            width: 100%;
            height: 100%;
            
        }
        .profile .img-profile {
            width: 150px;
            height: 150px;
        }
        .background-video, .background-image {
            object-fit: fill;
        }
        .image-about img {
           
            object-fit: fill;
        }
    }

    /*========================
       animation
  ========================*/
    .hvr-sweep-to-right-2 {
        /* display: inline-block; */
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        /* position: relative; */
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        overflow: hidden;
    }

        .hvr-sweep-to-right-2:before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            -webkit-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
            -webkit-transition-property: transform;
            transition-property: transform;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
        }

        .hvr-sweep-to-right-2:hover,
        .hvr-sweep-to-right-2:focus,
        .hvr-sweep-to-right-2:active {
            color: #ED7715;
            cursor: pointer;
        }

            .hvr-sweep-to-right-2:hover:before,
            .hvr-sweep-to-right-2:focus:before,
            .hvr-sweep-to-right-2:active:before {
                -webkit-transform: scaleX(1);
                transform: scaleX(1);
            }

    .hvr-sweep-to-right {
        /* display: inline-block; */
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        /* position: relative; */
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        overflow: hidden;
    }

        .hvr-sweep-to-right:before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-color);
            -webkit-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
            -webkit-transition-property: transform;
            transition-property: transform;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
        }

        .hvr-sweep-to-right:hover,
        .hvr-sweep-to-right:focus,
        .hvr-sweep-to-right:active {
            color: #fff;
            cursor: pointer;
        }

            .hvr-sweep-to-right:hover:before,
            .hvr-sweep-to-right:focus:before,
            .hvr-sweep-to-right:active:before {
                -webkit-transform: scaleX(1);
                transform: scaleX(1);
            }

    @keyframes slideleftright {
        49% {
            transform: translate(100%) rotate(-45deg);
            -webkit-transform: translate(100%) rotate(-45deg);
            -moz-transform: translate(100%) rotate(-45deg);
            -ms-transform: translate(100%) rotate(-45deg);
            -o-transform: translate(100%) rotate(-45deg);
        }

        50% {
            transform: translate(-100%) rotate(-45deg);
            -webkit-transform: translate(-100%) rotate(-45deg);
            -moz-transform: translate(-100%) rotate(-45deg);
            -ms-transform: translate(-100%) rotate(-45deg);
            -o-transform: translate(-100%) rotate(-45deg);
        }

        51% {
            opacity: 1;
        }
    }

    @keyframes torightleft {
        49% {
            -webkit-transform: translate(100%);
            transform: translate(100%);
            -moz-transform: translate(100%);
            -ms-transform: translate(100%);
            -o-transform: translate(100%);
        }

        50% {
            opacity: 0;
            -webkit-transform: translate(-100%);
            transform: translate(-100%);
            -moz-transform: translate(-100%);
            -ms-transform: translate(-100%);
            -o-transform: translate(-100%);
        }

        51% {
            opacity: 1;
        }
    }

    @keyframes toupdown {
        0% {
            transform: translateY(-50px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @-webkit-keyframes hvr-icon-wobble-horizontal {
        16.65% {
            -webkit-transform: translateX(6px);
            transform: translateX(6px);
        }

        33.3% {
            -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
        }

        49.95% {
            -webkit-transform: translateX(4px);
            transform: translateX(4px);
        }

        66.6% {
            -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
        }

        83.25% {
            -webkit-transform: translateX(1px);
            transform: translateX(1px);
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    @-webkit-keyframes bounceInRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
        }

        60% {
            opacity: 1;
            -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
        }

        80% {
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    @keyframes bounceInRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(2000px);
            -ms-transform: translateX(2000px);
            transform: translateX(2000px);
        }

        60% {
            opacity: 1;
            -webkit-transform: translateX(-30px);
            -ms-transform: translateX(-30px);
            transform: translateX(-30px);
        }

        80% {
            -webkit-transform: translateX(10px);
            -ms-transform: translateX(10px);
            transform: translateX(10px);
        }

        100% {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }
    }

    .bounceInRight {
        -webkit-animation-name: bounceInRight;
        animation-name: bounceInRight;
    }

    @-webkit-keyframes bounceInUp {
        0% {
            opacity: 0;
            -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
        }

        60% {
            opacity: 1;
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }

        80% {
            -webkit-transform: translateY(10px);
            transform: translateY(10px);
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @keyframes bounceInUp {
        0% {
            opacity: 0;
            -webkit-transform: translateY(2000px);
            -ms-transform: translateY(2000px);
            transform: translateY(2000px);
        }

        60% {
            opacity: 1;
            -webkit-transform: translateY(-30px);
            -ms-transform: translateY(-30px);
            transform: translateY(-30px);
        }

        80% {
            -webkit-transform: translateY(10px);
            -ms-transform: translateY(10px);
            transform: translateY(10px);
        }

        100% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    .bounceInUp {
        -webkit-animation-name: bounceInUp;
        animation-name: bounceInUp;
    }

    .zoomin {
        animation-name: zoomin;
    }

    @keyframes zoomin {
        0% {
            opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
            -webkit-transform: scale3d(0.3, 0.3, 0.3);
            -moz-transform: scale3d(0.3, 0.3, 0.3);
            -ms-transform: scale3d(0.3, 0.3, 0.3);
            -o-transform: scale3d(0.3, 0.3, 0.3);
        }

        50% {
            opacity: 50%;
        }
    }
