:root {
    --primary-color: #192324;
    --secondery-color: #F8F8F8;
    --text-color: #283132;
    --accent-color: #7c1145;
    --white-color: #FFFFFF;
    --divider-color: #EAF0EC;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: 'Lato', sans-serif;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6em;
    background-color: var(--white-color);
    color: var(--text-color);
    overflow-x: hidden;
}

p {
    line-height: 32px;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.1em;
}


figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.anime-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all .8s ease;
}

.anime-up.active {
    opacity: 1;
    transform: translateY(0);
}


.flx-w {
    flex: 0 0 auto;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.flx-w50 {
    flex: 0 0 auto;
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-33 {
    width: calc(33.33% - 30px)
}


#architecture,
#infrastructure,
#interior-design,
#project-management,
#turnkey-solutions,
#consultancy,
#areal-estate {
    scroll-margin-top: 100px;
}


.home-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.home-popup-content {
    position: relative;
    max-width: 850px;
    width: 100%;
}

.home-popup-content img {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.home-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 2;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 20px;
    line-height: 35px;
    cursor: pointer;
}

/* Navigation Bar Start */

#head-nav {
    background-color: var(--white-color);
    position: fixed;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.225);
}

.logo img {
    width: 270px
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 10px;
    transition: all 0.4s ease-in-out;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: var(--accent-color);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger {
    background-color: var(--accent-color);
    width: 35px;
    height: 35px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background: transparent;
    color: var(--white-color);
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(-18px, -50%);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}


@media (max-width: 1200px) {

    .menu ul {
        gap: 15px;
    }

    .logo img {
        width: 200px
    }

    .menu a {
        padding: 9px;
        font-size: 15px;
    }

    .btn-default {
        font-size: 14px;
        padding: 15px 40px 15px 17px;
    }
}

@media (max-width: 1024px) {

    .menu a {
        padding: 8px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {


    .menu {
        display: none;
    }

    .btn-default {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 10001;
    }

    .menu {
        display: block;
        position: fixed;
        top: 0;
        right: -320px;
        width: 250px;
        height: 100vh;
        background: #ffffff;
        transition: 0.4s ease;
        z-index: 10000;
        padding-top: 50px;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
        background-color: var(--accent-color);
    }

    .menu ul {
        flex-direction: column;
        gap: 0;
    }

    .menu ul li {
        width: 100%;
        border-bottom: 1px solid #57052d;
    }

    .menu ul li a {
        display: block;
        color: #fff;
        padding: 18px 30px;
        font-size: 18px;
    }

    .menu ul li a:hover,
    .menu ul li a.active {
        color: #ffff;
    }

    .hamburger .active span {
        background: var(--white-color) !important;
    }

    .hamburger.active span:nth-child(1) {
        background: var(--white-color);
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        background: #000;
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        background: var(--white-color);
        transform: rotate(-45deg) translate(6px, -5px);
    }
}


/* Navigation Bar End */

/* Hero-Banner Section Start */


.banner {
    background-image: url(../img/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero-content {
    position: absolute;
    display: flex;
    flex-flow: column wrap;
    color: white;
    max-width: 700px;
    gap: 25px;
    padding-top: 230px;
    z-index: 11;
}

.hero-title {
    position: relative;
    padding-left: 40px;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../img/icon-sub-heading.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 5px;
}

.hero-content h1 {
    font-size: 50px;
}

.hero-content p {
    width: 55%;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-sect-btn {
    display: flex;
    gap: 30px;
    padding: 20px 0px;
}

.btn-default.btn-highlighted {
    background-color: var(--white-color);
    color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.btn-default.btn-highlighted::before {
    background-image: url(../img/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {

    .banner {
        object-fit: cover;
        background-position: center;
        height: 80vh;
    }

    .banner::before {
        height: 80%;

    }

    .hero-content {
        width: 80%;
        gap: 10px;
        padding-top: 200px;
    }

    .hero-content h3 {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        width: 100%;
        font-size: 17px;
    }


}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    transition: .3s;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.heroSwiper .swiper-button-prev {
    left: 40px;
}

.heroSwiper .swiper-button-next {
    right: 40px;
}

@media(max-width:767px) {

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .heroSwiper .swiper-button-prev {
        left: 15px;
    }

    .heroSwiper .swiper-button-next {
        right: 15px;
    }

    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after {
        font-size: 16px;
    }

}

/* Hero-Banner Section End */

/* About Section Start */


.about-sect {
    background-image: url('../img/section-bg-shape-1.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0;
}

.about-flex-box {
    display: flex;
}

.f-50 {
    width: 50%;
}

.about-imgs {
    position: relative;
    background-image: url(../img/about-us-bg-shape.svg);
    background-repeat: no-repeat;
    background-position: left 60px bottom 40px;
    background-size: auto;
    padding-right: 100px;
    padding-bottom: 180px;
    margin-right: 50px;
}


.about-img1 {
    position: relative;
    overflow: hidden;
}

.about-img1 figure,
.about-img2 figure {
    display: block;
}

.reveal {
    position: relative;
    overflow: hidden;
}

.img-anime {
    position: relative;
}

.img-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;
}

.img-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.about-img2 {
    position: absolute;
    width: 100%;
    max-width: 385px;
    bottom: 0;
    right: 0;
}

.experience-counter {
    position: absolute;
    top: 0;
    left: 0;
    height: 152px;
    width: 152px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #7C877F;
    border: 6px solid white;
    transform: translate(-50%, -6px);
    border-radius: 50%;
}

.experience-counter h3 {
    font-size: 34px;
    color: white;
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
}

.feedback-counter {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(-180deg) translate(20px, -20px);
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
}

.feedback-counter p {
    font-size: 16px;
    font-weight: 500;
    color: white;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7c877f;
    border-radius: 50%;
    margin: 0 0 15px 0;
    transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
    background-color: black;
}


.feedback-counter h3 {
    font-size: 18px;
    font-weight: 500;
    width: calc(100% - 75px);
}

.experience-counter p {
    font-weight: 600;
    line-height: 1.4em;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.about-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--accent-color);
    padding-left: 35px;
    margin-bottom: 20px;
}

.about-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../img/icon-sub-heading.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 5px;
}

.about-head h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.about-head span {
    color: var(--accent-color);
}

.about-disc {
    margin-bottom: 40px;
}

.about-disc p {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 32px;
    color: #000;
}

.about-body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.about-body::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    border: 1px solid #eaf0ec;
    width: 1px;
    height: 100%;
}

.about-content-info {
    width: calc(50% - 40px);
}

.about-content-list {
    margin-bottom: 40px;
}

.about-content-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-content-list ul li {
    position: relative;
    font-weight: 500;
    color: #192324;
    padding-left: 30px;
    margin-bottom: 15px;
}

.about-content-list ul li:last-child {
    margin-bottom: 0;
}

.about-content-list ul li::before {
    content: '';
    position: absolute;
    background-image: url('../img/check-white.svg');
    background-color: var(--accent-color);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 11px;
    width: 20px;
    background-position: center;
    height: 20px;
    top: 2px;
    left: 0;
}

.about-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-contact-item .icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
    background-color: black;
}

.about-contact-item .icon-box figure {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    height: 40px;
}


.about-contact-item .icon-box img {
    max-width: 40px;
    border-radius: 50%;
}

.about-contact-item .icon-box i {
    font-size: 18px;
    color: white;
}

.about-contact-content {
    width: calc(100% - 55px);
}

.about-contact-content h3 {
    font-size: 20px;
}

.about-contact-content p {
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-flex-box {
        flex-direction: column;
    }

    .f-50 {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .about-sect {
        padding: 30px 0;
    }

    .about-imgs {
        padding-bottom: 100px;
        margin-right: 0;
        padding-right: 0;
    }

    .about-img1 img {
        width: 95%;
    }

    .feedback-counter {
        top: 0px;
        right: -35px;
    }

    .feedback-counter h3 {
        font-size: 13px;
        font-weight: 500;
        width: calc(100% - 75px);
    }

    .feedback-counter p {
        font-size: 12px;
        height: 40px;
        width: 40px;
    }

    .experience-counter {
        height: 100px;
        width: 100px;

    }

    .experience-counter h3 {
        font-size: 20px;
    }

    .experience-counter p {
        font-size: 12px;

    }

    .about-img2 {
        max-width: 250px;
    }

    .about-head h2 {
        font-size: 30px;
    }

    .about-body::before {
        border: none;
    }

    .about-body {
        flex-direction: column;
        gap: 30px;
    }

    .about-content-info {
        width: 100%;
        border-bottom: 1px solid gray;
        padding-bottom: 20px;
    }
}

/* About Section End */

/* Why Choose Us Section Start */

.why-choose-us {
    padding: 100px 0;
    background-color: var(--secondery-color);
}

.why-choose-us-flexbox {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}

.why-choose-us-content-box {
    flex: 0 0 auto;
    width: 41.66666667%;
}


.section-title {
    margin-bottom: 40px;
    margin-right: 45px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-left: 35px;
    margin-bottom: 20px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 5px;
}


.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 span {
    color: var(--accent-color);
}

.section-title p {
    margin-top: 30px;
    margin-bottom: 0;

}


.why-choose-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: capitalize;
}

.why-choose-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.why-choose-item-content {
    width: calc(100% - 70px);
}

.why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-item .icon-box img {
    max-width: 24px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.why-choose-us-img-box {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.why-choose-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
    display: flex;
    gap: 15px;
    width: 100%;
}


.why-choose-img-1 {
    width: 55%;
}

.why-choose-img-2 {
    width: 45%;
}

.why-choose-img-3 {
    width: 67%;
}


.why-choose-img-4 {
    width: 33%;
}

@media (max-width: 991px) {
    .why-choose-us {
        padding: 30px 0;
    }

    .why-choose-us-flexbox {
        margin-right: 0px;
        margin-left: 0px;
        flex-direction: column;
    }

    .why-choose-us-content-box {
        width: 100%;
    }

    .section-title {
        margin-right: 0px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .why-choose-us .section-title p {
        margin-top: 15px;
        margin: 0px;
        max-width: 100%;
    }

    .section-title p {
        margin-top: 15px;
    }

    .why-choose-item {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .why-choose-us-img-box {
        width: 100%;
    }

    .why-choose-images {
        margin-left: 0px;
    }
}


/* Why Choose Us Section End */

/* Our Services Section Start */

.our-services {
    padding: 50px 0px;
}

.service-title {
    flex: 0 0 auto;
    width: 50%;
}

.section-title-content {
    flex: 0 0 auto;
    width: 50%;
    padding-left: 120px;
}

.our-service-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.our-service-col {
    flex: 1 1 calc(33.333% - 30px);
}

.our-service-item {
    position: relative;
    overflow: hidden;
}

.our-service-img figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    cursor: grab;
}

.our-service-img figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.our-service-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1.36;
    transition: .4s;
}

.our-service-item:hover .our-service-img img {
    transform: scale(1.1);
}

.our-service-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}

.our-service-btn a {
    background-color: var(--accent-color);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.our-service-btn a:hover {
    background-color: var(--primary-color);
}


.our-service-btn a img {
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.our-service-btn a:hover img {
    transform: rotate(0)
}

.our-service-box .service-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 3;
}

.our-service-box .service-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.our-service-box .service-content h3 a {
    color: inherit;
    cursor: text;
}

.our-service-box .service-content p {
    color: var(--white-color);
    margin-bottom: 0;
}


.all-service-btn {
    text-align: center;
}

@media (max-width: 991px) {
    .our-services {
        padding: 30px 0px;
    }

    .our-services .service-title {
        width: 100%;
    }

    .our-services .section-title {
        margin-bottom: 20px;
    }

    .our-services .section-title-content {
        width: 100%;
        padding-left: 0px;
        padding-top: 5px;
    }

    .our-services p {
        margin-bottom: 0px;
    }

    .our-service-col {
        width: 100%;
    }

}

@media (max-width: 768px) {

    .our-service-box {
        flex-direction: column;
        gap: 0px;
    }

    .our-service-item {
        padding-bottom: 20px;
    }
}

/* Our Services Section End */

/* Our Project Section Start */

.our-project {
    padding-top: 50px;
}

.project-nav {
    text-align: center;
    margin-bottom: 60px;
}

.project-nav ul {
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 0;
    margin: 0;
}

.project-nav ul li a {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.2em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.project-nav ul li a:after,
.project-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.project-nav ul li a:after {
    top: -8px;
    bottom: auto;
    left: 0px;
}


.project-nav ul li a:hover:before,
.project-nav ul li a.active-btn:before,
.project-nav ul li a:hover:after,
.project-nav ul li a.active-btn:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.flx-w50-g0 {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}

.project-item-box {
    transition: all 0.4s ease;
    transform: scale(1);
    opacity: 1;
    padding: 10px;
}

.project-item-box.hide {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.project-item-box.show {
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.project-item-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px !important;
}

.project-item {
    position: relative;
    height: calc(100% - 0px);
    margin-bottom: 0px;
    overflow: hidden;

}

.project-featured-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
    z-index: 1;
}

.project-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(20px);
    border-radius: 50%;
    transform: translate(-50%, -30%);
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.project-item:hover .project-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.project-btn a {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.project-btn img {
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
    background: var(--primary-color);
}

.project-btn a:hover img {
    transform: rotate(0deg);
}

.project-featured-image figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 1 / 0.79;
}

.project-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.project-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px;
    z-index: 2;
}

.project-content h3,
.project-content h2 {
    color: var(--white-color);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.project-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.project-content h2 {
    font-size: 20px;
    font-weight: 700;
}

.project-content h2 a {
    color: inherit;
}

@media (max-width: 991px) {

    .our-project .section-title-content {
        width: 100%;
        padding-left: 0px;
        padding-top: 5px;
    }

    .our-project .service-title {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .project-item-boxes {
        gap: 15px !important;
    }

    .flx-w50-g0 {
        flex: 0 0 calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
    }

    .project-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .project-content h2 {
        font-size: 18px;
    }

    .project-btn {
        top: 10%;
        left: 90%;
        opacity: 1;
        visibility: visible;
    }

    .project-btn a {
        width: 50px;
        height: 50px;
    }

    .our-project .section-title {
        margin-bottom: 20px;
    }

    .our-project p {
        margin-bottom: 0px;
    }

    .project-nav {
        margin-bottom: 30px;
    }
}

@media (max-width:480px) {

    .flx-w50-g0 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* Our Project Section End */

/* How We Work Section Start */

.how-we-work {
    background: var(--primary-color);
    padding: 100px 0;
}

.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3,
.right-title-content p {
    color: var(--white-color);
}


.right-title-content {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 120px;
}

.how-we-work-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.how-we-work-item {
    width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box {
    margin-bottom: 30px;
}

.how-we-work-item .icon-box img {
    max-width: 60px;
}

.how-we-work-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.how-we-work-content p {
    color: var(--white-color);
    margin: 0;
}

.how-work-company-slider {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding-top: 60px;
}

.how-work-company-slider .company-logo {
    text-align: center;
}

.how-work-company-slider .company-logo img {
    width: 100%;
    max-height: 40px;
}

@media (max-width: 991px) {
    .how-we-work {
        padding: 50px 0;
    }

    .how-we-work .row {
        flex-direction: column;
    }

    .flx-w50 {
        width: 100%;
    }

    .right-title-content {
        width: 100%;
        padding-left: 0px;
    }

    .how-we-work p {
        margin-bottom: 0px;
    }

    .how-we-work-list {
        gap: 30px;
        flex-direction: column;
    }

    .how-we-work-item .icon-box {
        margin-bottom: 8px;
    }

    .how-we-work-item {
        width: 100%;
    }

    .how-we-work-content h3 {
        font-size: 18px;
    }
}

/* How We Work Section End */

/* Our Skill Section Start */

.our-skill {
    padding-bottom: 100px;
    background: url('../img/section-bg-shape-2.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.skills-progress-bar {
    margin-bottom: 40px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-data .skill-title {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.skill-data .skill-no {
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 20px;
}

.skill-progress {
    width: 100%;
    height: 12px;
    background: var(--divider-color);
    border-radius: 99px;
    position: relative;
}

.skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 99px;
}

.our-skill-image {
    position: relative;
    padding-bottom: 155px;
    margin-left: 65px;
}

.our-skill-img-1 {
    width: 333px;
    position: relative;
    background: url('../img/our-skill-img-bg-dot.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 84px auto;
    padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
    display: block;
}

.our-skill-img-1 img {
    width: 100%;
    aspect-ratio: 1/1.37;
    object-fit: cover;
}

.our-skill-img-2 {
    width: 202px;
    position: absolute;
    top: 70px;
    right: 0;
}

.our-skill-img-2 img {
    width: 100%;
    aspect-ratio: 1/0.93;
    object-fit: cover;
}

.our-skill-img-3 {
    width: 333px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.our-skill-img-3 img {
    width: 100%;
    aspect-ratio: 1/0.97;
    object-fit: cover;
}

@media (max-width: 991px) {

    .our-skill {
        padding-bottom: 50px;
    }

    .our-skill .section-title p {
        margin: 0px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .our-skill .row {
        margin-bottom: 0px;
        flex-direction: column;
    }

    .our-skill-image {
        padding-bottom: 100px;
        margin-left: 0px;
    }

    .our-skill-img-1 {
        padding: 0px;
    }

    .our-skill-img-1 {
        width: 200px;
        margin-left: 100px;
        margin-top: 50px;
    }

    .our-skill-img-2 {
        width: 120px;
        top: 40px;
        right: 90px;
    }

    .our-skill-img-3 {
        width: 200px;
        margin-left: 100px;
        margin-top: 50px;
        bottom: 20px;
        right: 90px;
    }
}

/* Our Skill Section End */

/* Our Testimonials Section Start */

.our-testimonials {
    background: var(--secondery-color);
}

.our-testimonials .container-fluid {
    padding: 0;
}

.our-testimonials-image {
    height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
}

.our-testimonial-content {
    padding: 100px;
}

.our-testimonial-content .section-title {
    background: url('../img/testimonial-quote.svg') no-repeat;
    background-position: top right;
    background-size: 162px auto;
}

.testimonial-slider {
    width: 100%;
    max-width: 620px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--divider-color);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 2px;
}

.testimonial-rating i:last-child {
    margin-right: 0;
}

.testimonial-content {
    margin-bottom: 40px;
}

.testimonial-content p {
    font-size: 20px;
    color: var(--primary-color);
    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: 50%;
}

.testimonial-body .author-content {
    width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.testimonial-body .author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-rating-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
    font-size: 58px;
}

.testimonial-client-rating {
    display: inline-block;
    background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i {
    font-size: 10px;
    color: var(--white-color);
}

.testimonial-rating-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 991px) {
    .container-fluid {
        margin-right: 15px;
        margin-left: 15px;
    }

    .our-testimonial-content {
        padding: 20px 0px;
    }

    .testimonial-slider {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Our Testimonials Section End */

/* Our Blog Section Start */

.our-blog {
    padding: 100px 0;
    background: url('../img/section-bg-shape-2.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.txt-black p {
    color: #222222;
}

.blog-post-boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}


.col-3 {
    flex: 0 0 auto;
    width: calc(33.33% - 20px);

}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.post-featured-image a {
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a {
    display: block;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 15px;
}

.post-item-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h3 a {
    color: inherit;
}

.post-item-btn a {
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 25px;
}

.post-item-btn a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    width: 17px;
    height: 16px;
    background: url('../img/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
    transform: translate(2px, -50%);
}

.all-blogs-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 991px) {
    .our-blog {
        padding: 20px 0;
    }

    .blog-post-boxes {
        gap: 10px;
        flex-direction: column;
    }

    .col-3 {
        width: 100%;
    }

}

/* Our Blog Section End */

/* Main Footer Start */

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-section {
    padding: 80px 0 0;
    background: var(--primary-color);
}

.footer-section .footer-header {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 40px;
}

.footer-top {
    flex: 0 0 auto;
    width: 100%;
}

.footer-logo img {
    width: 250px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.footer-social-link-title h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.footer-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-links ul li {
    display: inline-flex;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 50%;
    height: 36px;
    width: 36px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    background: var(--accent-color);
}

.footer-social-links ul li a:hover i {
    color: var(--white-color);
}

.footer-middle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-list {
    flex: 0 0 auto;
    width: calc(33.33% - 30px);
}

.footer-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li:hover {
    color: var(--accent-color);
}

.footer-links ul li a {
    display: block;
    color: inherit;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
    border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
    font-size: 16px;
    color: var(--white-color);
}

.footer-contact-content {
    width: calc(100% - 50px);
}

.footer-contact-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-content p a {
    color: var(--white-color);
    margin: 0;
}

.footer-newsletter-form p {
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
    display: flex;
    background: var(--white-color);
    overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
    width: 85%;
    border: none;
    border-radius: 0;
    color: var(--text-color);
    background: transparent;
    padding: 13px 10px;
    box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.footer-newsletter-form button {
    background-color: transparent;
    width: 15%;
    border: none;
    padding: 0;
}

.footer-newsletter-form button i {
    color: var(--accent-color);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
    color: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    text-align: center;
    margin-top: 65px;
    padding: 40px 0;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

@media (max-width: 991px) {
    .container {
        width: 100%;
    }

    .section-title {
        margin-bottom: 20px;
        margin-right: 0px;
    }
}

@media (max-width: 991px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-section .footer-header {
        margin-bottom: 20px;
    }

    .footer-social-links {
        justify-content: start;
    }

    .footer-middle {
        gap: 30px;
        flex-direction: column;
    }

    .footer-list {
        width: 100%;
    }

    .footer-contact-content p {
        width: 100%;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 20px 0;
    }



}

@media (max-width: 500px) {

    .btn-default {
        font-size: 13px;
        padding: 12px 30px 12px 20px;
    }

    .btn-default::before {
        top: 39%;
        right: 3px;
        width: 10px;
        height: 10px;
        transform: translateX(-10px);
    }

    .project-content h3 {
        font-size: 10px;
    }

    .project-content h2 {
        font-size: 16px;
    }

    .project-content {
        left: 15px;
        bottom: 15px;
        right: 15px;
    }

    .footer-social-links {
        padding-top: 5px;
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    #owl-demo .owl-nav button.owl-prev,
    #owl-demo .owl-nav button.owl-next {
        top: auto;
        bottom: 30px;
        width: 50px;
        height: 50px;
        background-color: transparent !important;
    }
}

/* About Us Page Start  */

/* Breadcrumb Section Start */

.breadcrumb-section {
    position: relative;
    padding: 150px 0 50px;
    overflow: hidden;
}

.our-group-breadcrumb-bg {
    background: url('../img/breadcrumb-bg/breadcrumb-our-group-bg.jpg') no-repeat center center;
    background-size: cover;
}


.projects-breadcrumb-bg {
    background: url('../img/breadcrumb-bg/breadcrumb-projects-bg.jpg') no-repeat center center;
    background-size: cover;
}

.services-breadcrumb-bg {
    background: url('../img/breadcrumb-bg/breadcrumb-services-bg.jpg') no-repeat center center;
    background-size: cover;
}

.clients-breadcrumb-bg {
    background: url('../img/breadcrumb-bg/breadcrumb-clients-bg.jpg') no-repeat center center;
    background-size: cover;
}

.career-breadcrumb-bg {
    background: url('../img/breadcrumb-bg/breadcrumb-careers-bg.jpg') no-repeat center center;
    background-size: cover;
}

.contact-breadcrumb-bg {
    background: url('../img/breadcrumb-bg/breadcrumb-contact-bg.jpg') no-repeat center center;
    background-size: cover;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(25, 35, 36, 0.568);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.breadcrumb-title h1 {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    position: relative;
    font-size: 17px;
    color: #fff;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -10px;
    color: rgba(255, 255, 255, .6);
}

.breadcrumb-list a {
    color: #fff;
    transition: .3s;
}

.breadcrumb-list a:hover {
    color: var(--accent-color);
}

/* Responsive */

@media(max-width:767px) {

    .breadcrumb-section {
        padding: 150px 0 70px;
    }

    .breadcrumb-title h1 {
        font-size: 38px;
    }

    .breadcrumb-list li {
        font-size: 15px;
    }

}

/* Breadcrumb Section End */

/* About Us Section Start  */

.about-facility-list {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-facility-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.about-facility-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.about-facility-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-facility-item:hover .icon-box:before {
    transform: scale(1);
}

.about-facility-item .icon-box img {
    max-width: 24px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-facility-content {
    width: calc(100% - 80px);
}

.about-facility-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

@media (max-width: 767px) {

    .about-facility-list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .about-facility-item {
        width: 100%;
    }
}

/* Company Wrapper Section  */

.about-facility-list {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-facility-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.about-facility-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.about-facility-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-facility-item:hover .icon-box:before {
    transform: scale(1);
}

.about-facility-item .icon-box img {
    max-width: 24px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-facility-content {
    width: calc(100% - 80px);
}

.about-facility-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .about-facility-list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .about-facility-item {
        width: 100%;
    }
}

/* Company Wrapper Section  */
.company-wrapper {
    margin-top: 60px;
}

/*======================================
CARD
======================================*/
.company-card {
    position: relative;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    background: #fff;
    margin-bottom: 35px;
    min-height: 360px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

/* Alternate */
.company-card.reverse {
    grid-template-columns: 1fr 360px;
}

.company-card.reverse .company-image {
    order: 2;
}

.company-card.reverse .company-content {
    order: 1;
}

/*======================================
IMAGE
======================================*/
.company-image {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.company-card:hover .company-image img {
    transform: scale(1.08);
}

/*======================================
CONTENT
======================================*/
.company-content {
    padding: 55px 70px;
    position: relative;
    z-index: 5;
}

.company-content .about-title h3 {
    color: var(--text-color);
    margin-bottom: 0px;
}

.company-content h2 {
    margin: 8px 0px;
    font-size: 36px;
    color: #8b0f35;
    font-weight: 700;
    line-height: 1;
}

.line {
    width: 80px;
    height: 3px;
    background: #8b0f35;
    margin: 20px 0 25px;
}

.company-content p {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

/*======================================
QUALITY LIST
======================================*/
.company-content ul {
    list-style: none;
}

.company-content ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.company-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #8b0f35;
    font-size: 20px;
    font-weight: bold;
}

/*======================================
ICON
======================================*/
.company-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #8b0f35;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    top: 45px;
    left: 305px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .20);
}

.company-card.reverse .company-icon {
    left: auto;
    right: 305px;
}

.company-icon i {
    color: #fff;
    font-size: 46px;
}

/*======================================
HOVER
======================================*/
.company-card {
    transition: .35s;
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .15);
}

/*=====================================
BACKGROUND DECORATION
=====================================*/
.company-card::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 0;
    width: 45%;
    height: 100%;
    background: #f8f8f8;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.company-card.reverse::before {
    left: -120px;
    right: auto;
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
}

/*=====================================
DOTTED PATTERN
=====================================*/
.company-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: 35px;
    top: 120px;
    background-image:
        radial-gradient(#d2d2d2 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: .8;
}

.company-card.reverse::after {
    right: 35px;
    top: auto;
    bottom: 35px;
    background-image:
        radial-gradient(#8b0f35 2px, transparent 2px);
}

/*=====================================
BOTTOM LEFT DOTS
=====================================*/
.company-image::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 85px;
    height: 85px;
    background-image:
        radial-gradient(rgba(255, 255, 255, .9) 2px, transparent 2px);
    background-size: 16px 16px;
}

/*=====================================
IMAGE OVERLAY
=====================================*/
.company-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .15));
    z-index: 1;
}

.company-image img {
    position: relative;
    z-index: 0;
}

/*=====================================
TEXT
=====================================*/
.company-content p:last-child {
    margin-bottom: 0;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:1200px) {
    .company-content {
        padding: 45px;
    }

    .company-content h2 {
        font-size: 34px;
    }

    .company-icon {
        left: 290px;
    }

    .company-card.reverse .company-icon {
        right: 290px;
    }
}

@media(max-width:992px) {
    .company-card {
        grid-template-columns: 1fr;
    }

    .company-card.reverse {
        grid-template-columns: 1fr;
    }

    .company-card.reverse .company-image {
        order: 1;
    }

    .company-card.reverse .company-content {
        order: 2;
    }

    .company-image {
        height: 320px;
    }

    .company-content {
        padding: 80px 35px 40px;
    }

    .company-icon {
        left: 50%;
        top: 260px;
        transform: translateX(-50%);
    }

    .company-card.reverse .company-icon {
        left: 50%;
        right: auto;
    }

    .company-card::before,
    .company-card::after,
    .company-content::before {
        display: none;
    }

    .company-content h2 {
        font-size: 30px;
    }
}

@media(max-width:768px) {
    .company-wrapper {
        padding: 15px;
    }

    .company-image {
        height: 240px;
    }

    .company-content {
        padding: 70px 22px 30px;
    }

    .company-content h2 {
        font-size: 28px;
    }

    .company-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .company-icon {
        width: 90px;
        height: 90px;
        top: 195px;
    }

    .company-icon i {
        font-size: 36px;
    }

    .company-content ul li {
        font-size: 14px;
        padding-left: 28px;
    }

    .line {
        margin: 16px 0 20px;
    }
}

/* Our Vision Section Start  */

.our-vision {
    background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
    padding: 100px 0px 30px 0px;
}

.vision-mission-box {
    background-color: var(--secondery-color);
    padding: 45px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 150px;
}

.vision-mission-item {
    position: relative;
    width: calc(50% - 75px);
}

.vision-mission-item::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    right: -75px;
    bottom: 0;
    background-color: var(--divider-color);
    z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
    display: none;
}

.vision-mission-item .icon-box {
    position: relative;
    width: 95px;
    height: 95px;
    background: var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
    transform: scale(1);
}

.vision-mission-item .icon-box img {
    position: relative;
    max-width: 36px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

/* Our Vision Section End  */

/* Best Selling Section Start */

.best-selling {
    background: url(../img/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 50px 0 100px;
}

.best-selling .flx-w50:nth-child(1) {
    padding-right: 15px;
}

.best-selling .flx-w50:nth-child(2) {
    padding-left: 15px;
}

.best-selling-content-img {
    margin-bottom: 60px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
    display: block;
}

.best-selling-content-img img {
    width: 100%;
    aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title {
    margin-bottom: 0;
}

.best-selling-iamge img {
    width: 100%;
    aspect-ratio: 1 / 0.93;
    object-fit: cover;
}

@media(max-width:991px) {

    .best-selling .section-title p {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .best-selling .flx-w50:nth-child(2) {
        padding-left: 0px;
    }

}

/* Best Selling Section End */

/* Our Team Section Start */



.our-team {
    padding: 70px 0 50px;
}

.section-title-content {
    flex: 0 0 auto;
    width: 50%;
    padding-left: 100px;
    padding-top: 50px;
}

.team-member-container {
    display: flex;
    gap: 30px;
}

.team-member-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
}

.team-image figure {
    display: block;
}

.team-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
    transform: scale(1.1);
}

.team-readmore-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.team-readmore-btn a {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
    background-color: var(--primary-color);
}

.team-readmore-btn img {
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
    transform: rotate(0deg);
}

.team-content {
    text-align: center;
    margin-bottom: 20px;
}

.team-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-content p {
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.team-social-icon ul li {
    display: inline-flex;
    margin-right: 10px;
}

.team-social-icon ul li:last-child {
    margin-right: 0;
}

.team-social-icon ul li a {
    width: 44px;
    height: 44px;
    color: var(--accent-color);
    background: var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.team-social-icon ul li a i {
    color: inherit;
    font-size: 18px;
}

@media (max-width: 991px) {

    .our-team .section-title-content {
        width: 100%;
        padding-left: 0px;
        padding-top: 5px;
    }

    .team-member-container {
        flex-direction: column;
    }

    .team-member-container .w-33 {
        width: 100%;
    }

    .our-team .row {
        display: block;
    }
}

/* Our Team Section End */

/* Our Faq Section Start */

.our-faqs {
    padding: 100px 0;
}

.our-faqs .row {
    display: flex;
    align-items: center;
}

.our-faqs .section-title {
    margin-bottom: 20px;
}

.faq-section {
    width: 100%;
}

.our-faqs .w-60 {
    padding-right: 15px;
}

.our-faqs .w-40 {
    padding-left: 15px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question span {
    width: 90%;
    line-height: 1.4;
}

.faq-question i {
    font-size: 18px;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .fa {
    transform: rotate(180deg);
}

@media(max-width:991px) {

    .our-faqs .row {
        flex-direction: column;
    }

    .our-faqs .w-60 {
        width: 100%;
        padding-right: 30px;
    }

    .our-faqs .w-40 {
        width: 100%;
        padding-top: 30px;
    }

    .our-faqs .section-title p {
        max-width: 100%;
        margin: 0px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .faq-question i {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

}

/* Our Faq Section End */

.who-we-are {
    padding: 50px 0;
}

/* Heading */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.sub-title h3 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.sub-title ::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-27%);
    background: url(../img/icon-sub-heading.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 30px;
    height: 6px;
}

.sub-title ::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-27%) scaleX(-1);
    background: url(../img/icon-sub-heading.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 30px;
    height: 6px;
}

.section-heading h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}

.section-heading h2 span {
    color: var(--accent-color);
}

.section-heading p {
    font-size: 18px;
}

/* Cards */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    transition: .4s;
}

.card:hover {
    transform: translateY(-8px);
}

.icon {
    width: 80px;
    height: 80px;
    background: #7c114563;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.who-we-are .icon i {
    font-size: 40px;
    color: var(--accent-color);
}

.line {
    width: 35px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 20px;
    margin-bottom: 25px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card h5 {
    font-size: 15px;
    color: var(--accent-color);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 45px;
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
}

.circle-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Decorative */

.circle {
    width: 170px;
    height: 170px;
    background: #7c114563;
    border-radius: 50%;
    position: absolute;
    bottom: -80px;
    right: -80px;
}

.dots {
    position: absolute;
    right: 35px;
    top: 30px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(#d7bff2 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: .8;
}

/* Counter */

.counter-box {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: var(--white-color);
}

.counter-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #f4edf9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.counter-item h3 {
    font-size: 42px;
    color: var(--white-color);
}

.counter-item p {
    color: var(--white-color);
    margin-top: 5px;
}

/* Responsive */

@media(max-width:991px) {

    .section-heading {
        margin-bottom: 20px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .counter-box {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading h2 {
        font-size: 42px;
    }

}

@media(max-width:576px) {

    .counter-box {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 30px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 16px;
    }

}

/* ===========================
   CLIENTS SECTION
=========================== */

.clients-section {
    padding: 50px 20px;
    background: #fff;
}

.container {
    max-width: 1300px;
    margin: auto;
}

/* Heading */

.clients-section .section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 18px;
}

.section-title span {
    color: var(--accent-color)
}

.section-title p {
    max-width: 650px;
    margin: auto;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

/* Logo Grid */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 30px;
    align-items: center;
    justify-items: center;
}

/* Logo */

.client-logo {
    width: 230px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #ececec;
    border-top: 3px solid var(--accent-color);
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 12px 32px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

.client-logo:nth-child(21) {
    grid-column: 2;
}

.client-logo:nth-child(22) {
    grid-column: 4;
}

.client-logo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10),
        0 0 20px color-mix(in srgb, var(--primary-color) 35%, transparent);
}

.client-logo img {
    max-width: 150px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    object-fit: contain;

}

/* Tablet */

@media(max-width:991px) {

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 30px;
    }

    .client-logo {
        width: 150px;
        height: 80px;
    }

    .client-logo:nth-child(22) {
        grid-column: 3;
    }

}

/* Small Tablet */

@media(max-width:767px) {

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 30px;
    }

    .client-logo {
        width: 150px;
        height: 80px;
    }


    .client-logo:nth-child(21) {
        grid-column: 3;
    }


    .client-logo:nth-child(22) {
        grid-column: 2;
    }


}

/* Mobile */

@media(max-width:576px) {
    .clients-section {
        padding: 30px 20px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .client-logo {
        width: 160px;
        height: 70px;
    }

    .client-logo img {
        max-width: 110px;
    }

    .client-logo:nth-child(21) {
        grid-column: auto;
    }

    .client-logo:nth-child(22) {
        grid-column: auto;
    }

}

/* Careers Page Start  */

/*====================================
CAREER SECTION
====================================*/

.career-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.career-form-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.career-form {
    width: 100%;
}

.career-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.career-field {
    width: 33.333%;
    position: relative;
}

.career-field i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 15px;
}

.career-field input {
    width: 100%;
    height: 58px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 0 20px 0 50px;
    outline: none;
    transition: .3s;
    font-size: 15px;
    background: #fff;
}

.career-field input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 68, .08);
}

/*==========================
UPLOAD
==========================*/

.career-upload {
    width: 100%;
}

.career-upload label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.career-upload input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.career-upload input:focus {
    border-color: var(--accent-color);
}

/*==========================
MESSAGE
==========================*/

.career-message {
    width: 100%;
    position: relative;
}

.career-message i {
    position: absolute;
    left: 20px;
    top: 25px;
    color: var(--accent-color);
}

.career-message textarea {
    width: 100%;
    height: 180px;
    resize: none;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 20px 20px 20px 50px;
    outline: none;
    transition: .3s;
}

.career-message textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 68, .08);
}

/*==========================
BOTTOM
==========================*/

.career-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/*==========================
CAPTCHA
==========================*/

.captcha-box {
    width: 250px;
    height: 70px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #fff;
}

.captcha-box span {
    flex: 1;
    margin-left: 15px;
    font-size: 16px;
}

.captcha-check {
    width: 28px;
    height: 28px;
    border: 2px solid #777;
    border-radius: 3px;
}

.captcha-box img {
    width: 42px;
}

/*==========================
BUTTON
==========================*/

.career-bottom .btn-default {
    min-width: 180px;
    border: none;
    cursor: pointer;
}


/*========================================
Laptop
========================================*/
@media (max-width:1199px) {

    .career-form-wrapper {
        padding: 50px 40px;
    }

    .career-row {
        gap: 20px;
    }

    .career-field {
        width: calc(33.33% - 14px);
    }

}


/*========================================
Tablet
========================================*/
@media (max-width:991px) {

    .career-section {
        padding: 30px 0;
    }

    .career-form-wrapper {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .career-field {
        width: calc(50% - 10px);
    }

    .career-upload,
    .career-message {
        width: 100%;
    }

    .career-bottom {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

}

@media (max-width:767px) {

    .career-row {
        flex-wrap: wrap;
        gap: 20px;
    }
}


/*========================================
Mobile
========================================*/
@media (max-width:767px) {

    .career-form-wrapper {
        padding: 25px 20px;
    }

    .career-row {
        gap: 15px;
        margin-bottom: 15px;
    }

    .career-field {
        width: 100%;
    }

    .career-field input {
        height: 54px;
        font-size: 14px;
    }

    .career-message textarea {
        height: 150px;
        font-size: 14px;
    }

    .captcha-box {
        width: 100%;
        max-width: 320px;
    }

    .career-bottom .btn-default {
        width: 100%;
        max-width: 250px;
    }

}


/*========================================
Small Mobile
========================================*/
@media (max-width:480px) {

    .career-form-wrapper {
        padding: 20px 15px;
    }

    .career-form-wrapper .section-title h2 {
        font-size: 30px;
    }

    .career-form-wrapper .section-title p {
        font-size: 14px;
    }

    .career-field i,
    .career-message i {
        left: 15px;
    }

    .career-field input {
        padding-left: 42px;
    }

    .career-message textarea {
        padding-left: 42px;
    }

    .captcha-box {
        height: 72px;
        padding: 12px;
    }

    .captcha-box span {
        font-size: 14px;
    }

}

/* Contact Us Page Section  */

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-6px);
}

.contact-page .icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #7c1145;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.info-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.info-text p {
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 12px;
}

.info-text i {
    color: #7c1145;
    margin-right: 10px;
}

/*======================
Form
======================*/

.contact-form {
    margin-top: 70px;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.contact-form h2,
.map-section h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 40px;
    color: #283132;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-box {
    position: relative;
}

.input-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c1145;
}

.input-box input,
.input-box textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #283132;
    transition: .3s;
}

.input-box input {
    height: 58px;
    padding-left: 50px;
}

.textarea {
    margin-top: 20px;
}

.textarea i {
    top: 25px;
    transform: none;
}

.textarea textarea {
    height: 180px;
    resize: none;
    padding: 20px 20px 20px 50px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #7c1145;
    box-shadow: 0 0 0 4px rgba(124, 17, 69, .08);
}

.submit-btn {
    display: block;
    margin: 35px auto 0;
    width: 200px;
    height: 55px;
    border: none;
    background: #7c1145;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.submit-btn:hover {
    background: #5f0d34;
    transform: translateY(-3px);
}

/*======================
Map
======================*/

.map-section {
    margin: 30px 0px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/*======================
Responsive
======================*/

@media(max-width:991px) {

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-info {
        margin-top: -50px;
    }

}

@media(max-width:576px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .info-card {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h2,
    .map-section h2 {
        font-size: 30px;
        margin-bottom: 20px;

    }


}

/* Services Page Start  */


.services-section {
    background: var(--white-color);
}

.service-item:nth-child(even) {
    background: #f7f7f7;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 80px;
}

.service-item.reverse .service-image {
    order: 2;
}

.service-item.reverse .service-content {
    order: 1;
}

.service-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    position: relative;
}

.service-image img {
    width: 100%;
    display: block;
    transition: .7s;
}

.service-image:hover img {
    transform: scale(1.08);
}

.services-section .service-content {
    position: relative;
}

.services-section .service-content h3 {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-section .service-content p {
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 18px;
}

.services-section .service-content ul {
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

.services-section .service-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.services-section .service-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

.services-section .service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 14px 28px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .35s;
    font-weight: 600;
}

.services-section .service-btn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}

.services-section .service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(124, 17, 69, .30);
}

.services-section .service-btn i {
    transition: .35s;
}

.services-section .service-btn:hover i {
    transform: translateX(5px);
}

/*==============================
Responsive
==============================*/

@media(max-width:991px) {

    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item.reverse .service-image,
    .service-item.reverse .service-content {
        order: unset;
    }

    .services-section .service-content h3 {
        font-size: 34px;
    }

    .services-section {
        padding: 30px 0;
    }

}

@media(max-width:767px) {

    .service-item {
        padding: 20px;
    }

    .services-section .service-content h3 {
        font-size: 30px;
    }

    .services-section .service-content p {
        font-size: 15px;
    }

    .services-section .service-btn {
        width: 55px;
        height: 55px;
        font-size: 0px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
    }

    .services-section .service-btn i {
        margin: 0;
        font-size: 18px;
    }

}

/* Appartment Page Start  */

.text-right1 {
    text-align: right;
}

.btn-infonew {
    color: #fff;
    background-color: #7c1145;
    border-color: #7c1145;
    margin-bottom: 5px;
    position: absolute;
    right: 0;
    z-index: 2000;
    top: 130px;
}

/* .menu-icon2 {
    display: none !important;
} */

.left-nav {
    position: absolute;
    z-index: 200;
    right: 0;
    text-align: right;
    top: 200px;
    width: 200px;
}

.left-nav ul {
    padding-left: 0;
}

.left-nav ul li {
    list-style-type: none;
}

.left-nav ul li a {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all ease-in-out 0.4s;
}

.left-nav ul li a:hover {
    padding-right: 20px;
    text-decoration: none;
}

.left-nav ul li.active {
    background-color: #ff007c;
}


@media (max-width: 991px) {

    .text-right1 {
        text-align: center;
    }

    /* .menu-icon2 {
        display: block !important;
        position: fixed;
        right: 0;
        top: 160px;
        color: #fff;
        padding: 5px;
        background-color: #333;
        z-index: 20000;
        cursor: pointer;
        font-size: 25px !important;
    } */

    .left-nav {
        transition: all ease-in-out 0.4s;
        right: 0;
        position: fixed;
    }

    .left-nav.open {
        right: 0;
    }

    .left-nav ul li a {
        font-size: 12px;
    }

    .owl-carousel .owl-item img {
        display: block;
        width: 100%;
        height: 80vh;
        object-fit: cover;
    }
}

@media (max-width:320px) {
    .left-nav {
        height: 260px;
        overflow-y: scroll;
    }
}