@import url(https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

.bg--primary,
body,
main {
    background-color: var(--primaryColor)
}

.btn,
.line_btn,
.vh__center {
    position: relative
}

.btn:before,
.line_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.header-white .logo img+img,
.header__toggle img+img,
.menu-open .header-white .logo img,
.menu-open .header__toggle img {
    display: none
}

.line_btn,
.line_btn:hover,
.link {
    text-decoration: none !important
}

.form-check-label,
.header__toggle,
.vc__video__btn {
    cursor: pointer
}



:root {
    --primaryColor: #270F01;
    --orangeColor: #FC6916;
    --organeDarkColor: #B94A09;
    --brownColor: #451A01;
    --greyColor: #FFF0E8;
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/Gilroy-Regular.eot');
    src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Gilroy-Regular.woff') format('woff'), url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/Gilroy-Medium.eot');
    src: url('../fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Gilroy-Medium.woff') format('woff'), url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: url('../fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Gilroy-SemiBold.woff') format('woff'), url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

html {
    font-size: 16px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

::selection {
    background-color: var(--orangeColor);
    -webkit-text-fill-color: #ffffff;
    color: #fff;
    text-shadow: 5px 5px 10px rgba(39, 15, 1, .3)
}

.form-check-input:focus,
.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--brownColor)
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    color: #4f4f4f;
    word-break: break-word
}

.font-gilroy,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Gilroy
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: .6s ease-in-out
}

.bg--orange {
    background-color: var(--orangeColor)
}

.bg--brown,
.btn:hover {
    background-color: var(--brownColor)
}

.bg--grey {
    background-color: var(--greyColor)
}

.text--orange {
    color: var(--orangeColor)
}

.font-work-wans {
    font-family: 'Work Sans', sans-serif
}

.service_faq .cta_row p,
.text-primary-2 {
    color: #333
}

.text-dark-orange {
    color: var(--organeDarkColor)
}

.text--brown {
    color: var(--brownColor)
}

.text-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--orangeColor)), color-stop(105.35%, #ffceb3));
    background: -o-linear-gradient(top, var(--orangeColor) 0, #ffceb3 105.35%);
    background: linear-gradient(180deg, var(--orangeColor) 0, #ffceb3 105.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600
}

.btn,
h6 {
    font-family: 'Work Sans', sans-serif
}

.h1,
h1 {
    font-size: 4rem;
    font-weight: 500
}

.h2,
h2 {
    font-size: 2.5rem
}

h3 {
    font-size: 2rem
}

.h4,
h4 {
    font-size: 1.5rem
}

.h5,
h5 {
    font-size: 1.25rem;
    line-height: 1.4
}

h6 {
    font-size: 1rem
}

.btn {
    background-color: var(--orangeColor);
    color: #fff;
    border-radius: 0;
    border-color: var(--orangeColor);
    font-weight: 600;
    font-size: .875rem;
    padding: .66rem 2.1rem;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px);
    z-index: 1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .5s;
    transition-duration: .5s
}

.btn-outline,
.vc__services__tab .accordion-item:last-of-type .accordion-button.collapsed {
    background-color: transparent
}

.btn-outline,
.line_btn {
    color: var(--orangeColor)
}

.btn:before {
    content: "";
    z-index: -1;
    background: var(--brownColor);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.btn:active:before,
.btn:focus:before,
.btn:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.btn:hover {
    border-color: var(--brownColor);
    color: #fff;
    transition: .6s ease-in-out
}

.line_btn {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-align: justify
}

.link,
.vc__leadership__name p {
    font-weight: 500
}

.line_btn::before {
    transform: scaleX(0);
    transform-origin: bottom right;
    content: " ";
    display: block;
    inset: 0 0 0 0;
    background: var(--orangeColor);
    z-index: -1;
    transition: transform .3s
}

.line_btn:hover {
    color: #fff !important
}

.line_btn:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left
}

.line_btn i {
    padding-left: 5px;
    font-size: 15px
}

.btn-outline {
    border: 1px solid var(--orangeColor)
}

.main__title {
    color: #828282
}

/*.vh__center {*/
/*    padding-top: 60%;*/
/*    overflow: hidden*/
/*}*/

/*.vh__center a img,*/
/*.vh__center>iframe,*/
/*.vh__center>img,*/
/*.vh__center>video {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    margin: auto;*/
/*    object-fit: cover*/
/*}*/

.vhf__center a img,
.vhf__center img {
    width: auto;
    height: auto;
    object-fit: contain
}

.form-control {
    height: auto;
    border-radius: 0;
    border-color: #ffceb3;
    color: #727271;
    letter-spacing: .1px;
    padding: 15px 20px;
    line-height: 1.4
}

.form-check-input[type=checkbox] {
    border-radius: 1px;
    border-color: #b3b3b2;
    margin: .32rem .7rem 0 0;
    cursor: pointer
}

.menu__sec__links li:not(:last-child),
.vc__stats__item:not(:last-child) {
    padding-right: 2.5rem;
    margin-right: 2.5rem
}

.whatsApp__fixed {
    position: fixed;
    top: auto;
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2
}

.header,
.header-dark,
.header__main {
    position: relative
}

.whatsApp__fixed a {
    width: 3.5rem;
    height: 3.5rem
}

.header__menu__main li svg,
.whatsApp__fixed img {
    width: 2.5rem;
    height: 2.5rem
}

.header {
    z-index: 99
}

.header-dark {
    background-color: rgba(69, 26, 1, .5)
}

.header__main {
    z-index: 3
}

.menu-open .logo svg path {
    fill: #ffffff
}

.header-white {
    background-color: #fff
}

.header-white .header__toggle svg path {
    stroke: var(--primaryColor)
}

.menu-open .header-white .header__toggle svg path {
    stroke: #ffffff
}

.menu-open .header-white .logo img+img,
.menu-open .header__toggle img+img,
.round_plus {
    display: block
}

.menu-open {
    overflow: hidden;
    padding-right: 1rem
}

.header__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 2
}

.header__menu__wrapper {
    height: calc(100% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.accordion-button::after,
.accordion-button[aria-expanded=true] .round_plus,
.service_faq .faq_row .accordion-button .fa-minus,
.service_faq .faq_row .accordion-button.collapsed .fa-plus,
.social__sharing--mobile,
.swiper-button-next1::after,
.swiper-button-next::after,
.swiper-button-prev1::after,
.swiper-button-prev::after,
.vc__testimonial .container::before {
    display: none
}

.header__menu__main li:not(:last-child) {
    margin-bottom: 3.125rem
}

.header__menu__main li a {
    color: #fff;
    font-size: 2.25rem
}

.header__menu__main li a.active,
.header__menu__main li a:hover {
    color: var(--orangeColor);
    transition: .6s ease-in-out
}

.header__menu__main li svg {
    margin-right: 1.2rem
}

.header__menu__main li a svg path {
    transition: .6s ease-in-out
}

.header__menu__main li a.active svg path[fill="#FFF0E8"],
.header__menu__main li a:hover svg path[fill="#FFF0E8"] {
    fill: var(--orangeColor);
    transition: .6s ease-in-out
}

.header__menu__sec {
    border-top: 1px solid #963e0b;
    padding-top: 1.875rem;
    margin-top: 5rem;
    width: 43.75rem
}

.menu__sec__links li a {
    font-size: 1.5rem;
    color: var(--orangeColor)
}

.menu__sec__links li a.active,
.menu__sec__links li a:hover {
    color: #fff;
    transition: .6s ease-in-out
}

.btn__group,
.careers__banner,
.menu__sec__links li,
.vc__clients,
.vc__hero,
.vc__hero .container {
    position: relative
}

.menu__sec__links li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: .25rem;
    height: .25rem;
    border-radius: 50%;
    background-color: var(--greyColor)
}

.btn__group .btn:not(:last-child),
.social__sharing li:not(:last-child) {
    margin-right: .75rem
}

.vc__hero .vc__hero__banner {
    position: absolute;
    top: -9.375rem;
    right: -6.563rem;
    left: auto;
    bottom: auto;
    z-index: 2
}

.vc__stats__item:not(:last-child) {
    border-right: 1px solid #963e0b
}

.vc__company {
    z-index: 1
}

.vc__companyLS {
    position: absolute;
    top: 13%;
    left: 0;
    width: 580px;
    height: 540px;
    background: url('../images/body-left-shape.svg') left center/contain no-repeat;
    z-index: -1
}

.vc__companyRS {
    content: "";
    position: absolute;
    top: 37.8%;
    right: 0;
    width: 350px;
    height: 310px;
    background: url('../images/body-right-shape.svg') right center/contain no-repeat;
    z-index: -1
}

.vc__company__link {
    position: sticky;
    top: 2em
}

.vc__company__link li:not(:last-child) {
    margin-bottom: 1.875rem
}

.vc__company__link li a {
    color: #fff;
    transition: .6s ease-in-out
}

.vc__company__link li a:hover {
    color: var(--orangeColor);
    transition: .6s ease-in-out
}

.vc__company__link li.active a {
    font-size: 1.5rem;
    color: var(--orangeColor);
    transition: .6s ease-in-out
}

.vc__company__link li svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .625rem
}

.vc__company__link li.active svg path {
    transition: .6s ease-in-out
}

.vc__company__link li a:hover svg path[fill="#FFF0E8"],
.vc__company__link li.active svg path[fill="#FFF0E8"] {
    fill: var(--orangeColor);
    transition: .6s ease-in-out
}

.vc__company__details>div {
    margin-bottom: 2rem
}

.other_services .main__title h2,
.vc__company__details p {
    color: #fff
}

.vc__leadership__name h4,
.vc__testimonial__item .user__info h6 {
    color: #451a01
}

.vc__project__info {
    background: 0 0;
    padding: 3rem 2rem;
    transition: .6s ease-in-out;
    height: 100%
}

.project__details__header .circle_logo {
    width: 100px;
    position: absolute;
    right: 15px;
    top: 15px;
    background: #efefef;
    padding: 20px
}

.vc__project__info:hover {
    background: var(--brownColor) url('../images/projects/info_bg_shape.svg') no-repeat left/contain;
    transition: .6s ease-in-out
}

.vc__project__info.bg--brown,
.vc__video {
    background-position: center;
    background-repeat: no-repeat
}

.vc__project__info .link {
    opacity: 0;
    visibility: hidden
}

.vc__project__info:hover .link {
    opacity: 1;
    visibility: visible;
    padding: 2px 8px;
}

.box {
    width: 100px;
    height: 100px;
    background-color: #28a92b;
    position: absolute;
    left: 300px;
    z-index: 100;
    line-height: 100px;
    font-size: 50px;
    text-align: center
}

.box.active {
    background-color: red
}

.box-a {
    top: 200px;
    background-color: #8d3dae
}

.box-b {
    top: 600px
}

.box-c {
    top: 1000px;
    background-color: #e26c16
}

.link {
    font-size: 1.125rem;
    color: var(--orangeColor)
}

.link:hover {
    color: var(--organeDarkColor);
    text-decoration: underline
}

.link svg {
    width: 1.25rem;
    height: 1.25rem
}

.link:hover svg path {
    transition: .6s ease-in-out;
    stroke: var(--organeDarkColor)
}

.vc__projects .vc__project__item .row {
    justify-content: space-between
}

.vc__video {
    padding: 10% 0 !important;
    background-size: cover
}

.video__modal .btn-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 1.8rem;
    height: 1.8rem;
    font-size: .8rem;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    z-index: 1
}

.vc__service__item {
    overflow: hidden;
    height: calc(100% - var(--bs-gutter-x));
    margin-bottom: calc(var(--bs-gutter-x))
}

.vc__service__item h4 {
    height: 3.438rem;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem
}

.vc__service__item svg {
    margin: auto -4.063rem -3.438rem auto;
    display: block;
    height: 12.5rem;
    width: 12.5rem;
    transition: .6s ease-in-out
}

.vc__service__item:hover svg {
    margin: auto 0 -3.438rem auto;
    transition: .6s ease-in-out
}

.vc__project__item {
    margin-bottom: 7.5rem
}

.vc__project__info.bg--brown {
    background-size: contain
}

.vc__company__process {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0
}

.vc__process__image svg {
    max-width: 100%;
    width: 100%;
    height: 100%
}

.vc__client__item {
    border: 1px solid #ffceb2;
    padding-top: 0px;
    margin-bottom: calc(var(--bs-gutter-x));
    transition: .6s ease-in-out
}

.vc__client__item:hover {
    box-shadow: 0 5px 20px 1px rgba(39, 15, 1, .15);
    transition: .6s ease-in-out;
    background: #ffceb245
}

.award_img {
    position: relative;
    width: 25%
}

.achievements .achievements_box .thief1 {
    margin-right: -10px
}

.achievements .achievements_box .thief2 {
    margin-left: -15px
}

.achievements .achievements_box {
    text-align: center
}

.achievements .achievements_box .award_text h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #202326;
    margin-top: 30px
}

.achievements .achievements_box .award_text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #8b8e93;
    margin-top: 10px
}

.vc__testimonial {
    overflow: hidden;
    position: relative
}

.vc__testimonial .container {
    position: relative;
    z-index: 1
}

.vc__testimonial .container::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 5rem;
    height: 100%;
    background-color: var(--orangeColor);
    z-index: -1;
    transform: rotate(32deg)
}

.vc__testimonial__slider {
    padding-top: 4.375rem;
    margin-right: -10%
}

.vc__testimonial__item {
    transition: .6s ease-in-out;
    padding: 40px
}

.vc__testimonial__msg p {
    margin-bottom: 30px
}

.vc__testimonial__item .user__info p {
    color: #828282
}

.vc__testimonial__item:hover {
    box-shadow: 0 5px 20px 1px rgba(39, 15, 1, .15);
    transition: .6s ease-in-out
}

.achievements {
    padding: 70px 0;
    background-color: #fff
}

.swiper-button-next,
.swiper-button-next1,
.swiper-button-prev,
.swiper-button-prev1 {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--orangeColor);
    border-radius: 50%;
    margin: 0;
    top: 0;
    right: .938rem
}

.swiper-button-next,
.swiper-button-next1 {
    background: url('../images/arrow-right.svg') center/1.5rem no-repeat
}

.swiper-button-prev,
.swiper-button-prev1 {
    background: url('../images/arrow-left.svg') center/1.5rem no-repeat;
    left: auto;
    right: 5.313rem
}

.user__avtar {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem
}

.user__avtar img {
    object-fit: contain
}

.vc__tagline {
    margin-bottom: -10rem
}

.vc__tagline .vc__video__btn {
    display: none !important
}

.vc__history {
    padding: 15rem 0 5rem
}

.vc__services__hero {
    background: var(--greyColor) url('../images/hero-banner-inner.svg') no-repeat right center/cover fixed;
    margin-top: -6.5rem;
    padding-top: 10rem
}

.projects__search--input {
    background: url('../images/search-icon.svg') 1rem center/1.5rem no-repeat #fff;
    padding-left: 3.5rem
}

.vc__teams,
blockquote {
    background-color: #f2f2f2
}

.vc__services__hero.bg--primary {
    background: var(--primaryColor) url('../images/hero-banner-dark.svg') no-repeat right center/cover fixed
}

@media (min-width:1200px) {
    .header__menu__wrapper {
        --containerWidth: 1140px;
        padding-left: calc((100% - var(--containerWidth))/ 2);
        padding-top: 9.375rem
    }

    .vc__history .container {
        max-width: 100%;
        --container: 1140px;
        padding-left: calc((100% - var(--container))/ 2);
        padding-right: 0
    }
}

@media (min-width:1400px) {
    .header__menu__wrapper {
        --containerWidth: 1320px;
        padding-left: calc((100% - var(--containerWidth))/ 2)
    }

    .vc__history .container {
        --container: 1320px;
        padding-left: calc((100% - var(--container))/ 2)
    }
}

@media (min-width:2100px) {
    .vc__history .container {
        max-width: 1320px;
        padding-left: calc(var(--bs-gutter-x) * .5)
    }
}

.vc__why__us {
    padding: 8rem 0 10rem;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.vc__why__us .vc__shape {
    position: absolute;
    top: -14rem;
    right: -22rem;
    width: 57rem;
    height: 55rem;
    z-index: -1
}

.vc__why__us .main__title p {
    width: 70%
}

.why__us__item .why__us__des h4 {
    border-left: .4rem solid var(--orangeColor);
    padding-left: 1.2rem;
    margin-left: -1.8rem
}

.why__us__item .why__us__des p {
    width: 90%
}

.vc__leadership {
    padding: 6rem 0;
    overflow: hidden
}

.vc__leadership .container {
    position: relative;
    z-index: 1
}

.vc__leadership .container:after {
    content: "";
    position: absolute;
    top: -6rem;
    right: -1rem;
    width: 10rem;
    height: calc(100% + 12rem);
    transform: skewX(-20deg);
    background-color: #ffceb3;
    z-index: -1
}

.vc__leadership h2 {
    font-size: 3.5rem
}

.vc__leadership__details {
    padding-left: 4rem;
    position: relative
}

.vc__leadership__msg::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-family: 'Work Sans';
    font-weight: 400;
    font-size: 8rem;
    line-height: 1;
    color: var(--orangeColor)
}

.vc__leadership__msg p {
    font-size: 1.3rem
}

.vc__leadership__info ul {
    column-gap: 1rem
}

.vc__leadership__info ul a:hover svg path {
    fill: var(--primaryColor)
}

.vc__teams {
    padding: 6rem 0 3rem
}

.vc__team__member {
    margin-bottom: 3rem
}

.vc__team__member .vc__team__member__img {
    min-width: 200px;
    position: relative;
    z-index: 1
}

.about_video {
    padding: 100px 0
}

.about_video .row {
    justify-content: center
}

.vc__contact__info {
    padding-right: 4rem
}

.vc__contact__info h1 {
    font-weight: 600;
    font-size: 30px
}

.other_services .service_box svg {
    height: 50px
}

.vc__contact__info ul li:not(:last-child) {
    margin-bottom: .9rem
}

.vc__contact__info ul li a {
    color: var(--primaryColor)
}

.vc__contact__info ul li a:hover {
    color: var(--orangeColor)
}

.vc__contact__info ul li svg {
    margin-right: .3rem
}

.vc__map__wrapper {
    padding-top: 50%
}

.vc__services__tagline h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    position: relative
}

.vc__services__tagline a {
    color: #fff !important
}

.vc__services__tagline a:hover {
    color: #fc6916 !important
}

.notFoundSection .text-group h1,
.notFoundSection .text-group h3 {
    color: #000;
    font-style: normal;
    font-family: Gilroy;
    font-weight: 600
}

.vc__services__tagline h1::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -1.5rem;
    width: .4rem;
    height: 3rem;
    background-color: var(--orangeColor)
}

.vc__services__tagline h1 span {
    color: #bdbdbd;
    position: relative;
    display: inline-block
}

.vc__services__tagline h1 span:before {
    content: "";
    position: absolute;
    top: 57%;
    transform: translateY(-48%);
    width: 100%;
    height: .4rem;
    animation: 2s borderanimation;
    background-color: var(--orangeColor)
}

@keyframes borderanimation {
    0% {
        left: 0;
        width: 0
    }

    100% {
        left: 0;
        right: 0;
        width: 100%
    }
}

.vc__services {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 35px 0
}

.vc__services__tab .nav-tabs {
    border-bottom: 2px solid var(--brownColor)
}

.services__tab__hero img,
.vc__testimonial__item {
    height: 100%
}

.services__tab__hero {
    height: 380px
}

.vc__services__tab .tab-pane .row {
    align-items: center
}

::-webkit-scrollbar {
    width: 10px;
    height: 2px
}

::-webkit-scrollbar-track {
    background-color: #ebebeb
}

::-webkit-scrollbar-thumb {
    background: var(--brownColor)
}

.notFoundSection .shape_group {
    width: 100%;
    position: relative;
    right: -12%
}

.notFoundSection {
    padding: 80px 0
}

.notFoundSection .big-round {
    position: relative;
    width: 462px;
    height: 462px;
    background: #fff0e8;
    border-radius: 50%;
    margin-left: auto
}

.notFoundSection .big-round .text {
    position: absolute;
    top: 17%;
    left: 35%;
    font-family: Gilroy;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #fff0e8
}

.notFoundSection .bottom-line {
    width: 510px;
    height: 0;
    left: -15%;
    position: absolute;
    bottom: 18%;
    border: 2px solid #963e0b
}

.notFoundSection .bottom-img {
    position: absolute;
    bottom: 18%;
    left: 10%
}

.notFoundSection .straight_line {
    position: absolute;
    width: 0;
    height: 300px;
    left: 40%;
    border: 5px solid #963e0b;
    bottom: 18%
}

.notFoundSection .top-img {
    top: 0;
    left: 20%;
    position: absolute
}

.notFoundSection .leaf-img {
    position: absolute;
    bottom: 37%;
    left: 7%
}

.notFoundSection .leaf0-img {
    position: absolute;
    bottom: 44%;
    left: 45%
}

.notFoundSection .leaf1-img {
    position: absolute;
    bottom: 60%;
    left: 60%
}

.notFoundSection .leaf2-img {
    position: absolute;
    bottom: 50%;
    left: 45%
}

.notFoundSection .text-col {
    z-index: 1;
    text-align: center
}

.notFoundSection .text-group {
    padding-right: 50px
}

.notFoundSection .text-group h1 {
    font-size: 120px;
    line-height: 143px
}

.notFoundSection .text-group h3 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 20px
}

.notFoundSection .text-group p {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    letter-spacing: .1px;
    color: #828282
}

.vc__services__tab .nav-link {
    font-family: Gilroy;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .1px;
    border: none;
    text-align: left;
    padding: 0
}

.services__tab__hero .seo_part_img,
.services__tab__hero .services__tab__img,
.services__tab__hero .services__tab__img img {
    width: 100%
}

.vc__services__tab .accordion-item {
    background-color: transparent !important;
    color: #fff;
    border: 0
}

.vc__services__tab .accordion-button {
    background-color: transparent !important;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    line-height: 25px;
    border-radius: 0 !important;
    border-bottom: 1px solid #fff;
    padding: 25px 0 !important
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    border-bottom: none !important
}

.accordion-button[aria-expanded=false] .minus_plus {
    display: none;
    border-bottom: none
}

.accordion-button img {
    margin-right: 20px
}

.accordion-button:focus {
    outline: 0;
    border: none;
    box-shadow: none
}

.vc__services__tab .accordion-body {
    padding: 25px 0 !important
}

.vc__services__tab .accordion-body p {
    margin: 0
}

.vc__services__tab .nav-link.active,
.vc__services__tab .nav-link:hover {
    color: var(--orangeColor);
    background-color: transparent
}

.service_faq .faq_row .accordion-button,
.service_faq .faq_row .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #270f01 !important
}

.vc__services__tab .nav-link span {
    display: inline-block;
    padding: 1rem 0;
    border-bottom: 2px solid transparent
}

.vc__services__tab .nav-link.active span,
.vc__services__tab .nav-link:hover span {
    border-color: var(--orangeColor)
}

.vc__services__tab .nav-tabs {
    display: flex;
    justify-content: space-between
}

.services__tab__hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(96.92deg, var(--brownColor) 57.7%, rgba(69, 26, 1, 0) 85.45%)
}

.services__tab__info {
    padding: 2.5rem 1.8rem;
    position: relative;
    z-index: 1
}

.gift_img,
.left_blub,
.right_blub {
    position: absolute
}

.services__tab__info .services__tab__icon {
    margin-right: 2rem
}

.services__tab__info .services__tab__icon svg {
    width: 150px;
    height: auto
}

.services__tab__info p {
    font-size: 1.2rem
}

.left_blub {
    left: -10px;
    top: -60px
}

.right_blub {
    right: -10px;
    top: -75px
}

.main_service_section {
    background-color: #fff0e8;
    padding: 70px 0
}

.main_service_section h2 {
    color: #1e1e1e
}

.main_service_section.vc__why__us .main__title p {
    color: #270f01;
    width: 100%
}

.main_service_section .why__us__item .why__us__des h4 {
    color: #333 !important
}

.main_service_section .why__us__item .why__us__des p {
    color: #4f4f4f;
    text-align: justify
}

.main_service_section .why__us__item {
    margin-bottom: 50px
}

.service_video_section .main__title p {
    color: #fff0e8
}

.service_video_section .why_choose_box {
    background-color: #461a01;
    margin-bottom: 30px;
    padding: 30px 30px 30px 90px
}

.service_video_section .why_choose_box h3 {
    font-size: 26px;
    color: #fff0e8;
    margin-bottom: 70px;
    font-weight: 500;
    position: relative
}

.service_video_section .why_choose_box h3 .number {
    position: absolute;
    left: -75px;
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    top: -10px;
    opacity: .2;
    font-family: 'Work Sans'
}

.service_faq {
    background-color: #fff0e8;
    padding: 100px 0
}

.service_faq .cta_row {
    padding: 40px 0;
    border: 1px solid #fc6916
}

.service_faq .faq_row {
    margin-top: 70px
}

.service_faq .faq_row h2,
.service_faq .faq_row p {
    color: #270f01
}

.other_services .main__title h2 span,
.service_faq .faq_row .accordion-button i {
    color: #fc6916
}

.service_faq .cta_row h2 {
    color: #fc6916;
    font-size: 30px
}

.service_faq .faq_row .accordion-button {
    border: 0 !important;
    font-size: 18px;
    font-weight: 500;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service_faq .faq_row .accordion-button .fa-plus,
.service_faq .faq_row .accordion-button.collapsed .fa-minus {
    display: inline-block
}

.service_faq .faq_row .accordion-body p {
    color: #333;
    font-size: 16px
}

.get_in_touch,
.other_services,
.service_video_section {
    padding: 70px 0
}

.other_services .main__title p {
    color: #e0e0e0
}

.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0 !important
}

.other_services .service_box {
    text-align: center;
    margin-bottom: 30px;
    display: block;
    position: relative;
    will-change: transform;
    transform-origin: center;

    transition: .5s
}

.other_services .service_box:hover {
    transform: scale(1.05);
}

.other_services .col-lg-6 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.other_services .service_box .service_text {
    color: #e0e0e0;
    font-size: 16px;
    padding-top: 10px
}

.service_faq .accordion {
    border: 0
}

.service_faq .faq_row .accordion-item {
    border: 0;
    border-bottom: 1px solid #fc6916;
    background: 0 0 !important
}

.service_faq .faq_row .accordion-item .accordion-body {
    padding: 20px 0
}

.service_video_section .why_choose_box p {
    color: #fff0e8;
    font-size: 16px;
    margin-bottom: 0
}

.project__item {
    margin-bottom: 0;
    height: 100%;
    background-color: var(--brownColor)
}

.project__item,
.technology__item {
    margin-bottom: calc(var(--bs-gutter-x))
}

.project__item .project__image {
    padding-top: 47%
}

.blog_text,
.project__item .project__info a:hover {
    color: var(--orangeColor) !important
}

.vc__technologies .main__title p {
    color: #4f4f4f
}

/*.technology__item .technology__img {*/
/*    padding-top: 90%*/
/*}*/

.swiper-button-next1.swiper-button-disabled,
.swiper-button-prev1.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.about_testimonial .testimonial_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.about_testimonial {
    padding: 70px 0;
    position: relative
}

.vc__testimonial::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 5rem;
    height: 100%;
    background-color: var(--orangeColor);
    z-index: 0;
    transform: rotate(32deg)
}

.get_in_touch .row {
    align-items: center;
    justify-content: space-between
}

.get_in_touch .main_text h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 20px
}

.get_in_touch .main_text p {
    color: #fff;
    font-size: 20px;
    font-weight: 400
}

.project__details--block {
    margin-top: -6.313rem
}

.project__details__banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 25%
}

.worked_tech {
    color: #333;
    font-weight: 500
}

.project__details__header {
    margin-top: -13.125rem;
    box-shadow: 0 20px 60px rgba(164, 172, 179, .2);
    margin-bottom: 1.5rem
}

.project__details__header .social__sharing li a {
    border: 1px solid #ffceb3
}

.project__details img {
    width: 100%
}

.project__details figure img {
    width: 100%;
    object-fit: cover
}

.project__case__study h4 {
    margin-top: 4rem
}

.blog__post__item,
.project__case__study__item {
    margin-bottom: 4rem
}

.project__case__study__info h5 {
    color: #963e0b;
    transition: .6s ease-in-out
}

.project__case__study__info h5:hover {
    color: var(--orangeColor);
    transition: .6s ease-in-out
}

.project__case__study__info h5 span {
    display: inline-block;
    width: 80%
}

.vc__projects .project__list .product_item {
    position: relative;
    overflow: hidden;
    display: block;
    transition: .5s
}

.vc__projects .project__list .product_item img {
    width: 100%
}

.vc__projects .project__list .product_item:hover .product_item_content {
    opacity: 1;
    transform: translateY(0)
}

.vc__projects .project__list .product_item .product_item_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    opacity: 0;
    transition: .3s;
    transform: translateY(100%)
}

.blog__block h1 {
    border-bottom: 1px solid #e7e9ec
}

.blog__block h3 {
    font-size: 1.8rem
}

.featured__posts__info {
    padding: 2.5rem 4rem 2.5rem 2.5rem
}

.featured__posts__info h4 {
    font-size: 2.2rem
}

.featured__posts__banner {
    padding-top: 35%
}

.blog__post__item img {
    border-radius: 4px
}

.blog__post__info a,
.blog__post__info h5 {
    color: #373f41
}

.blog__post__info p {
    color: #8b8e93
}

.author__info .author__name {
    color: #202326
}

.pagination .page-link {
    border: none;
    border-radius: 4px !important;
    font-size: 14px;
    color: #828282;
    padding: 5px
}

.pagination .page-link:hover {
    background-color: var(--primaryColor);
    color: #fff
}

.page-item:not(:first-child) .page-link {
    margin-left: 1rem
}

.pagination .disabled .page-link {
    background-color: var(--orangeColor);
    opacity: .6
}

.pagination .active .page-link {
    color: #333;
    font-weight: 700;
    background-color: transparent
}

.blog__details__banner {
    margin-top: -12rem
}

.blog__details__title {
    padding-bottom: 15rem
}

.blog__details h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem
}

blockquote {
    padding: 4rem 2rem 2rem;
    border-left: .625rem solid var(--orangeColor);
    position: relative
}

blockquote::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 2rem;
    width: 3.5rem;
    height: 3rem;
    background: url('../images/quote-icon.svg') center/contain no-repeat
}

blockquote h4 {
    color: var(--brownColor);
    line-height: 1.4
}

.figure-with-caption blockquote {
    position: absolute;
    top: auto;
    left: -10rem;
    right: auto;
    bottom: 2rem;
    width: 90%
}

.others__blogs {
    border-top: 1px solid #e7e9ec
}

.careers__banner .vh__center {
    padding-top: 24%
}

.careers__banner::after,
.careers__banner::before {
    content: '';
    position: absolute;
    z-index: 1
}

.careers__banner::before {
    bottom: 1rem;
    left: -1rem;
    width: 7.5rem;
    height: 12.5rem;
    background: url('../images/careers/line-shape-1.svg') center/contain no-repeat
}

.careers__banner::after {
    top: -1rem;
    right: 0;
    width: 12.5rem;
    height: 20rem;
    background: url('../images/careers/line-shape-2.svg') center/contain no-repeat
}

.careers__opening__item {
    padding: 1.5rem;
    height: calc(100% - 5rem);
    margin-bottom: 5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.vc__contact__form {
    padding: 3.125rem 7.5rem
}

.vc__contact__form .or {
    border-top: 1px solid #e0e0e0
}

.vc__contact__form .or span {
    background-color: var(--greyColor);
    position: relative;
    top: -1rem;
    padding: 0 1rem;
    font-size: 1.125rem;
    color: #333
}

.footer {
    z-index: -1;
    padding: 3.125rem 0 4.375rem
}

.blog_content h2,
.blog_content h5,
.blog_heading {
    padding-top: 30px;
    padding-bottom: 10px;
    font-weight: 600
}

.social__sharing li a {
    width: 2.813rem;
    height: 2.813rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #963e0b;
    border-radius: 50%;
    position: relative;
    overflow: hidden
}

.social__sharing li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #963e0b;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 1
}

.social__sharing li a:hover:before {
    top: 0
}

.social__sharing li a:hover svg {
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg)
}

.social__sharing li svg path {
    -webkit-transition: .5s;
    transition: .5s
}

.social__sharing li a:hover svg path {
    fill: #ffffff;
    -webkit-transition: .5s;
    transition: .5s
}

.social__sharing li a:hover svg path[stroke] {
    stroke: #ffffff;
    fill: transparent
}

.footer__links {
    column-count: 4
}

.footer__links li {
    margin-bottom: 1rem
}

.footer__links li a {
    color: #fff0e8
}

.footer__links li a:hover {
    color: var(--orangeColor);
    text-decoration: underline
}

.swiper-grid-column>.swiper-wrapper {
    flex-direction: inherit !important
}

.blog_heading {
    font-size: 36px;
    color: var(--brownColor)
}

.blog_content h2,
.blog_content h5 {
    font-size: 32px;
    color: #000
}

.blog_content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 5px;
    color: var(--brownColor)
}

.achievements_part {
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    border-width: 1px 1px 0px 1px;
    border-style: solid;
    border-color: #963F0D;
    background: linear-gradient(101.99deg, rgba(255, 255, 255, 0.2) 2.94%, rgba(255, 255, 255, 0.1) 26.24%);
}


.achievements_part .achievements_span {
    padding: 7px 10px;
    border-radius: 16px;
    background-color: #FC6916;
    color: #FFFFFF;
    font-size: 16px;
}

.achievements_part .achievements_text {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 25px;
}

.main_pics_section {
    padding: 70px 0 140px;
    background-color: #fff;
}

.main__part_box {
    border-radius: 12px;
    overflow: hidden;
}

.about_main_section {
    padding-bottom: 15px;
}

.main__part_box {
    margin: 30px 0
}

.main__part_box img {
    object-fit: cover;
    height: 100%;
}

.main__part_box.h-40 {
    height: 40%;
}

.main__part_box.h-60 {
    height: 60%;
}

.main__part_box.h-20 {
    height: 20%;
}

.main_inner_video_part {
    background-color: #FC6916;
    height: 100%;
    border-radius: 12px;
    ;
}

.last_col .main__part_box {
    margin: 20px 0
}

.main_inner_video_part i {
    font-size: 40px;
    font-weight: 500;
    color: #fff
}

.main_inner_video_part p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 400;
    color: #fff
}

.about_section {
    padding: 50px 0;
}

.our_team_section {
    padding: 50px 0;
    background-color: #fff;
}

.our_team_section .main_team_box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.our_team_section .main_team_box .content_part {
    text-align: center;
    background-color: #fff;
}

.our_team_section .main_team_box .content_part .name {
    color: #451A01;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0px;
}

.our_team_section .main_team_box .content_part .role {
    color: #FC6916;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

.about_main_section .main-video {
    border-radius: 12px;
    overflow: hidden;
}

.about_main_section .main-video iframe {
    width: 100%;
    height: 350px;
}

@media (max-width:1600px) {
    .header__menu__main li:not(:last-child) {
        margin-bottom: 2rem
    }

    .vc__company {
        overflow-x: hidden
    }

    .vc__hero .vc__hero__banner {
        right: -70px;
        z-index: 0
    }

    .header__menu__main li a {
        font-size: 1.8rem
    }
}

@media (max-width:1280px) {
    .vc__hero .vc__hero__banner {
        right: -4.375rem
    }

    .vc__company {
        overflow-x: hidden
    }

    .vc__testimonial__slider {
        margin-right: 0
    }
}

@media (max-width:1199px) {
    .header__menu__wrapper {
        padding: 9rem 2rem 2rem
    }

    .header__menu__main li:not(:last-child) {
        margin-bottom: 4rem
    }

    .vc__hero .container {
        position: static
    }

    .vc__hero .vc__hero__banner {
        top: -7rem;
        width: 20rem;
        right: 2rem
    }

    .vc__why__us {
        padding: 4rem 0
    }

    .vc__company {
        overflow-x: hidden
    }

    .why__us__item .why__us__des h4 {
        border-width: 2px;
        margin-left: -.8rem;
        padding-left: .8rem
    }

    .vc__leadership {
        padding: 3rem 0
    }

    .vc__leadership .container:after {
        top: -3rem;
        width: 5rem;
        height: calc(100% + 6rem)
    }
}

@media (max-width:991px) {
    html {
        font-size: 14px
    }

    br {
        display: none
    }

    main {
        margin-bottom: 0
    }

    .header__menu__wrapper {
        padding: 9rem 2rem 2rem
    }

    .header__menu__main li:not(:last-child) {
        margin-bottom: 4rem
    }

    .header__menu__sec {
        width: 100%
    }

    .vc__hero .vc__hero__banner {
        width: 25rem
    }

    .vc__hero__content {
        padding-top: 15rem
    }

    .vc__company {
        overflow-x: hidden
    }

    .vc__project__info {
        padding: 30px 20px
    }

    .project__image__col {
        display: flex;
        align-items: center
    }

    .vc__video {
        transform: scale(1) !important
    }

    .vc__stats {
        margin: 0 -15px
    }

    .vc__stats__item {
        max-width: calc(100% / 3 - 1.875rem);
        flex: calc(100% / 3 - 1.875rem);
        margin: 0 .938rem 2.286rem;
        padding: 0 .938rem
    }

    .vc__stats__item:not(:last-child) {
        padding-right: .938rem;
        margin-right: .938rem
    }

    .vc__stats__item:nth-child(3) {
        border-right: none
    }

    .vc__companyLS {
        width: 280px;
        height: 340px
    }

    .vc__companyRS {
        transform: translate3d(0, 0, 0) !important;
        content: "";
        position: absolute;
        right: 0;
        background: url(../images/body-right-shape.svg) right center/contain no-repeat;
        z-index: -1;
        top: 33.8%;
        width: 150px;
        height: 210px
    }

    .vc__service__item h4 {
        width: 80%
    }

    .vc__service__item svg {
        height: 7.5rem;
        width: 7.5rem
    }

    .vc__team__member {
        margin-bottom: 1.5rem
    }

    .vc__contact__info {
        padding: 0 0 3rem
    }

    .services__tab__info p,
    .vc__services__tab .nav-link {
        font-size: 1rem
    }

    .project__details--block {
        margin-top: -7.313rem
    }

    .project__details__header {
        margin-top: -3rem
    }

    .blog__details__block br {
        display: block
    }

    .figure-with-caption blockquote {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.5rem
    }

    .careers__banner::before {
        width: 3.5rem;
        height: 7.5rem
    }

    .careers__banner::after {
        height: 10rem;
        width: 6.5rem
    }

    .vc__contact__form {
        padding: 2.5rem
    }

    .footer {
        position: static
    }
}



@media (max-width:575px) {

    .header__menu__sec .social__sharing,
    .project__case__study h4,
    .project__details__action .social__sharing {
        margin-top: 2rem
    }

    .header__menu__wrapper {
        padding: 15rem 1.5rem 2rem
    }

    .menu__sec__links li a {
        font-size: 1.143rem
    }

    .header__menu__main li a {
        font-size: 1.6rem
    }

    .header__menu__main li svg {
        width: 1.8rem;
        height: 1.8rem;
        margin-right: .5rem
    }

    .header__menu__sec {
        flex-direction: column
    }

    .project__details__header {
        margin-top: 1rem;
        padding: 1.5rem !important
    }

    .project__details__banner {
        padding-top: 100%
    }

    .project__details__action {
        flex-direction: column;
        align-items: flex-start !important
    }

    .vc__project__item:nth-child(odd) {
        background-color: var(--brownColor);
        box-shadow: 0 3.2px 16px rgba(0, 0, 0, .4);
        margin: 0 calc(-.5 * var(--bs-gutter-x))
    }

    .vc__company__services {
        padding: 20px 0 0
    }

    .vc__services {
        padding: 10px 0
    }

    .vc__company {
        overflow-x: hidden
    }

    .vc__company__details>div {
        margin-bottom: 30px
    }

    .vc__video {
        transform: scale(1) !important
    }

    #vc__projects {
        padding-top: 0 !important
    }

    .blog__details h3 {
        font-size: 1.5rem
    }

    .careers__banner::after {
        height: 5rem;
        width: 2.5rem
    }

    .careers__banner::before {
        width: 2.5rem;
        height: 6.5rem;
        left: -5px
    }

    .vc__contact__form {
        padding: 2.2rem 2rem
    }
}

.vc__testimonial .swiper-slide,
.vc__testimonial__slider .swiper-slide {
    min-height: 100%;
    height: auto
}

.contact_details i {
    font-size: 14px;
    padding-right: 5px
}

.service_icon {
    display: flex;
    justify-content: center;
}

.technology__img {
    position: relative;
    overflow: hidden;
}

.tech-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    color: #fff;
    font-size: 14px;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.technology__img:hover .tech-desc {
    opacity: 1;
}

@media (max-width:767px) {

    .h1,
    h1 {
        font-size: 2.8rem
    }

    .h2,
    h2 {
        font-size: 2rem
    }

    h3 {
        font-size: 1.7rem
    }

    .h4,
    h4 {
        font-size: 1.3rem
    }

    .pt-5 {
        padding-top: 2rem !important
    }

    .header__toggle img {
        width: 32px
    }

    .logo.ms-5 {
        margin-left: 1.5rem !important
    }

    .logo img {
        width: 130px
    }

    .header__menu__wrapper {
        padding: 7rem 8.5rem 2rem
    }

    .header__menu__main li:not(:last-child) {
        margin-bottom: .857rem;
        padding-bottom: .857rem;
        border-bottom: 1px solid var(--brownColor)
    }

    .vc__hero {
        padding-bottom: 0 !important
    }

    .vc__hero .vc__hero__banner {
        width: 13rem;
        right: 0
    }

    .vc__hero__content {
        padding-top: 5rem
    }

    .header__menu__sec {
        padding-top: 1.25rem;
        margin-top: 60px;
        width: 100%
    }

    .get_in_touch .main_text h3 {
        font-size: 30px;
        line-height: 46px;
        text-align: center;
        margin-bottom: 10px
    }

    .get_in_touch .main_text p {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center
    }

    .vc__stats {
        margin: 0 -6px
    }

    .vc__stats__item {
        max-width: calc(100% / 3 - 16px);
        flex: calc(100% / 3 - 16px);
        margin: 0 6px 2.286rem;
        padding: 0 5px
    }

    .vc__stats__item:not(:last-child) {
        padding-right: 5px;
        margin-right: 5px
    }

    .vc__companyLS {
        width: 150px;
        height: 210px
    }

    .vc__companyRS {
        top: 32%;
        width: 100px;
        height: 160px
    }

    .vc__company__link {
        display: flex;
        margin-bottom: 0;
        padding-bottom: 1.2rem;
        overflow: auto;
        border-bottom: 1px solid #963e0b
    }

    .vc__company__details>div,
    .vc__project__item {
        margin-bottom: 30px
    }

    .vc__company__link li {
        max-width: 43%;
        flex: 0 0 43%
    }

    .vc__company__link li:not(:last-child) {
        margin-bottom: 0
    }

    .vc__company__link li a,
    .vc__company__link li.active a {
        font-size: 1.143rem
    }

    .vc__company__link li svg {
        margin-right: 5px
    }

    .vc__company__content {
        order: 1;
        margin-top: 2rem
    }

    .vc__video__btn img {
        width: 3rem;
        height: 3rem
    }

    .video__modal .btn-close {
        top: -1rem;
        right: .5rem
    }

    .vc__service__item svg {
        height: 10rem;
        width: 10rem
    }

    .vc__service__item br {
        display: block
    }

    .vc__leadership .row .col-md-9,
    .vc__project__info__col {
        order: 1
    }

    .vc__projects {
        margin-top: 30px
    }

    .vc__company__process {
        padding: 70px 0
    }

    .vc__project__item {
        padding: 30px calc(var(--bs-gutter-x) * .5)
    }

    .vc__project__info {
        background: var(--brownColor) url(../images/projects/info_bg_shape.svg) no-repeat left/contain;
        transition: .6s ease-in-out;
        margin-top: 2rem
    }

    .vc__company__projects {
        padding: 2.286rem 0
    }

    .vc__project__info.bg--brown {
        background: 0 0 !important;
        padding: 0 !important
    }

    .vc__process__image {
        margin-top: 2rem;
        text-align: center
    }

    .vc__process__image svg {
        max-width: 85%
    }

    .vc__testimonial .main__title {
        margin-bottom: 25px
    }

    .vc__testimonial .container::before {
        left: -80px;
        width: 2.5rem
    }

    .vc__testimonial__slider {
        padding: 0 0 4.375rem
    }

    .swiper-button-next,
    .swiper-button-next1,
    .swiper-button-prev,
    .swiper-button-prev1 {
        top: auto;
        bottom: 0
    }

    .vc__client__item {
        padding-top: 40%
    }

    .vc__client__item img {
        padding: 10px
    }

    .vc__tagline {
        margin-bottom: -5rem
    }

    .vc__history {
        padding: 8rem 0 4rem
    }

    .vc__why__us {
        padding: 4rem 0 1rem
    }

    .vc__why__us .main__title p {
        width: 100%
    }

    .why__us__item {
        margin-bottom: 3rem;
        padding-left: 1.5rem
    }

    .vc__leadership h2 {
        font-size: 2.6rem;
        margin-bottom: 2rem !important
    }

    .vc__leadership__msg::before {
        top: 0;
        font-size: 4rem
    }

    .vc__leadership__details {
        padding-left: 2.5rem;
        margin-top: 3rem;
        position: relative
    }

    .vc__leadership__msg p {
        font-size: 1.1rem
    }

    .vc__leadership__info {
        flex-direction: column;
        align-items: flex-start !important
    }

    .vc__leadership__info .vc__leadership__name {
        margin-bottom: 2rem
    }

    .vc__company {
        overflow-x: hidden
    }

    .vc__teams {
        padding: 4rem 0 6rem;
        position: relative
    }

    .vc__teams .swiper-button-next,
    .vc__teams .swiper-button-next1,
    .vc__teams .swiper-button-prev {
        bottom: 3rem
    }

    .vc__teams .swiper-button-next,
    .vc__teams .swiper-button-next1 {
        left: auto;
        right: calc(var(--bs-gutter-x) * .5)
    }

    .vc__teams .swiper-button-prev {
        right: auto;
        left: calc(var(--bs-gutter-x) * .5)
    }

    .vc__teams .row:first-child {
        position: static !important
    }

    .vc__team__member {
        flex-direction: column;
        margin-bottom: 30px;
        text-align: center
    }

    .vc__team__member .vc__team__member__img {
        min-width: auto;
        width: auto
    }

    .vc__team__member__info {
        margin: 2rem 0 0 !important
    }

    .form-group-action {
        flex-direction: column;
        align-items: flex-start !important;
        row-gap: 1rem
    }

    .vc__map__wrapper {
        padding-top: 100%
    }

    .vc__services__hero,
    .vc__services__hero.bg--primary {
        background-position: right top;
        background-size: 26rem;
        margin-top: -7.5rem
    }

    .vc__services__tagline {
        padding: 0 2rem
    }

    .vc__services__tagline h1 {
        font-size: 2.6rem
    }

    .vc__services__tagline h1 span:before {
        height: 4px
    }

    .vc__services {
        padding: 2.5rem 0
    }

    .vc__services__tab .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden
    }

    .vc__services__tab .nav-link {
        max-width: 50% !important;
        flex: 0 0 70%;
        font-size: 1.5rem;
        margin-right: 2rem
    }

    .services__tab__info .services__tab__icon svg {
        width: 80px;
        height: auto
    }

    .services__tab__info {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 1.2rem
    }

    .services__tab__info .services__tab__icon {
        margin: 0 0 3rem
    }

    .services__tab__hero .services__tab__img {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%
    }

    .services__tab__hero:before {
        z-index: 1
    }

    .featured__posts__info {
        padding: 1.5rem
    }

    .blog__block h3,
    .featured__posts__info h4 {
        font-size: 1.5rem
    }

    .blog__post__item {
        margin-bottom: 2.5rem
    }

    .blog__post__info {
        margin-top: 1.5rem
    }

    .figure-with-caption blockquote {
        position: relative;
        top: -2rem;
        bottom: 0;
        width: 95%
    }

    .footer {
        padding: 3.125rem 0
    }

    .footer__widget {
        margin-top: 2rem
    }

    .footer__links {
        column-count: 2
    }

    .social__sharing--desktop {
        display: none !important
    }

    .social__sharing--mobile {
        display: flex
    }

    .footer__copyright {
        text-align: center
    }

    .main_set_about_box .main_about_set_title {
        font-size: 16px !important;
    }


    .main_set_about_box .main_set_content {
        font-size: 12px !important;
    }

    .new_about_section .main_side_img{
        display: none;
    }


    .new_about_section .new_about_content{
        width: auto !important;
        font-size: 18px !important;
    }


   .main_content_box .main_second_img{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
   }

    .main_content_box .main_first_img{
        display: flex;
        justify-content: center;
        align-items: center;

    }
   .main_content_box .main_first_img img{
    width: 200px !important;
    margin-bottom: 20px;

    
   }

   .main_content_box .main_second_img img{
    width: 200px !important;
   }

   .main_achive_demo {
        display: flex;
        justify-content: center;
        text-align: center;
    }

   .about_section .main_about_new_text{
    margin-top: 20px;
   }

   .apart_section{
    padding: 10px 0px !important;
}


.main_approach_box .content_pont{
    font-size: 14px !important;
}

.main_approach_box .main_tech_content{
    font-size: 16px  !important;
}

  .main_right_part {
        align-items: flex-start !important;
    }

    .main_right_part svg {
        margin-top: 6px;
        flex-shrink: 0;
    }


    .development_section{
        padding: 10px 0px !important;
    }


    .dev_bold_txt{
        text-align: center;
    }


    .build_section .build_point{
        margin-bottom: 10px !important;
    }

    .build_title{
        text-align: center;
    }

    .journey_section .journey_content{
        width: auto !important;
        font-size: 14px !important;
    }


    .journey_section .build_point{
        margin-bottom: 10px !important;
    }


    .section_content_title{
        width: auto !important;
        margin-top: 10px !important;
    }

  


   


    .section_title_builds{
        text-align: center;
    }

    .second_impact_content{
        text-align: center !important;
    }


     .leadership_section .main_leader_photo_box {
        margin-left: auto !important;
        margin-right: auto !important;
    }
   

    .main_leader_box .main_leader_content_box{
        text-align: center;
        margin-top: 20px;
    }

    .main_leader_box .leader_content{
        font-size: 16px !important;
    }

    .main_leader_box .leader_short_message{
        font-size: 18px !important;
    }

    .leader_meta {
        justify-content: center;
        text-align: center;
    }

    .leader_meta span {
        justify-content: center;
    }


    .lang_item img{
        height: 20px !important;
    }

    .lang_item span{
        font-size: 14px !important;
    }

    .why_choose_section .col-12:not(:first-child) {
        margin-top: 20px;
    }

    .new_about_section .main_title_about{
        width: 100% !important;
        line-height: 1.3 !important;
        
    }

    .industry_box{
        margin-top: 30px !important;
        margin-bottom: 20px !important;
    }

}

/*new About us page*/

.main_about_new .main_new_txt {
    color: #E0E0E0;
    font-size: 18px;
}


.new_about_section .dark_font{
    color: #270F01;
    font-weight: 600;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 700;
    color: #333333;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48%;
    /* underline length */
    height: 5px;
    /* underline thickness */
    background-color: #FC6916;
    /* exact orange */
}


.about-image-wrapper {
    width: 100%;
    max-width: 520px;
    border: 2px solid #FC6916;
    border-radius: 65px 0 65px 0;
    /* TL TR BR BL */
    padding: 8px;
    /* thin white gap */
    overflow: hidden;
    /* IMPORTANT */
    height: 450px;
}

.about-image-inner {
    border-radius: 55px 0 55px 0;
    overflow: hidden;
    height: 100%;
}

.about-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* MATCHES IMAGE */
    display: block;
}

.about_section .main_about_new_text {
    color: #4F4F4F;
    font-weight: 400;
}

.bold_about_text {
    font-weight: 600;
    color: #333333;
}


.about_section .main_about_bg_box {
    background-color: #FC69160D;
    /* same soft background */
    padding: 22px 26px;
    border-left: 4px solid #FC6916;
    border-radius: 16px;
    line-height: 1.7;
    font-size: 16px;
    color: #333;
}

.section_title_next {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 700;
    color: #333333;
    text-align: center;
}

.section_title_next::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 48%;
    /* underline length */
    height: 5px;
    /* underline thickness */
    background-color: #FC6916;
    transform: translateX(-50%);
}


.main_set_about_box {
    box-shadow: 0px 0px 10px 0px #00000026 !important;
    background-color: #FFFFFF;
    padding: 12px;
    border-radius: 12px;
}


.about_section .main_set_about_box .main_img_icon_box {
    background-color: #FC69160D;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 6px;
}

.main_img_icon_green_box {
    background-color: #DCFCE7;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 6px;
}

.main_img_icon_industry_box {
    background-color: #F3E8FF;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 6px;
}


.about_section .main_set_about_box .main_img_icon_box img {
    width: 100%;
    height: 100%;
}


.main_set_about_box .main_about_set_title {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
}

.main_set_about_box .main_set_content {
    color: #4F4F4F;
    font-size: 16px;
    font-weight: 400;
}

.approach_section {
    padding: 50px 0px;
}

.approach_section .main_approach_box .main_one_box {
    background-color: #0F172A;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 22px;
}


.approach_txt {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
}


.main_approach_box .main_teck_txt {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
}

.main_approach_box .main_tech_content {
    font-size: 18px;
    color: #4F4F4F;
    font-weight: 400;
}

.main_approach_box .content_pont {
    color: #4F4F4F;
    font-weight: 400;
    font-size: 16px;
}


.development_section {
    padding: 50px 0px;
}

.main_development_box .main_second_box {
    background-color: #FC6916;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 22px;
}

.main_development_box .main_dev_txt {
    color: #4F4F4F;
    font-size: 16px;
}

.development-timeline {
    position: relative;
    margin-top: 22px;
    padding-left: 35px;

}

.development-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 14px;
    /* start below first dot */
    width: 2px;
    height: calc(100% - 28px);
    /* stop before last dot */
    background: #DEE6F1;
}


.timeline-item {
    position: relative;
    margin-bottom: 22px;
    color: #4F4F4F;
    font-weight: 400;
    font-size: 16px;
}

.timeline-item .dot {
    position: absolute;
    left: -35px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #C9D2DC;
    border-radius: 50%;
}

.timeline-item.active .dot {
    background: #fff;
    border: 3px solid #FC6916;
}

.timeline-item small {
    display: block;
    color: #9AA3AF;
    font-size: 13px;
    margin-top: 6px;
}


.timeline-item .small_dot {
    width: 7px;
    height: 7px;
    background-color: #CBD5E1;
    border-radius: 50%;
}


.main_small_txt {
    font-size: 12px;
    color: #4F4F4F;
    font-weight: 400;
    line-height: 1.5;
}

.small-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.dev_bold_txt {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    border-top: 1px solid #DDDDDD;
    padding: 20px 0px;
}

.section_title_build {
    color: #333333;
    font-weight: 700;
}





/* Section heading */
.section_title_builds {
    font-size: 32px;
    /* even & standard */
    font-weight: 700;
    color: #333333;
}

.section_title_builds .orange_color {
    color: #FC6916;
}

.section_content_title {
    color: #E0E0E0;
    font-size: 16px;
    margin: auto;
    width: 55%;
}

/* Column title */
.build_title {
    font-size: 20px;
    /* even */
    font-weight: 600;
    color: #FC6916;
    margin-bottom: 14px;
    position: relative;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 15px;
}

/* Thin underline below column titles */


/* List styling */
.build_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.build_list li {
    position: relative;
    font-weight: 400;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 16px;
    /* even */
    color: #4F4F4F;
    line-height: 1.6;
}

/* Orange bullet */
.build_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #FC6916;
    border-radius: 50%;
}


.build_section {
    padding: 30px 0px;
}

.build_section .main_second_row {
    border-bottom: 1px solid #DDDDDD;
    padding: 20px 0px;
}

.language_part .lang_head_txt {
    text-align: center;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}




/* MAIN FLEX CONTAINER */
.main_lang_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: auto;
    /* IMPORTANT */
}

/* EACH ITEM */
.lang_item {
    background-color: #ECEFF6;
    border-radius: 6px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.lang_item:hover {
    transform: translateY(-4px);
    background-color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

/* Optional: small logo emphasis */
.lang_item:hover img {
    transform: scale(1.05);
    transition: transform 0.25s ease;
}


/* ICON */
.lang_item img {
    height: 45px;
    width: auto;
    flex-shrink: 0;
}

/* TEXT */
.lang_item span {
    font-size: 16px;
    font-weight: 500;
    color: #475569;
    line-height: 1.3;
}


.journey_section {
    padding: 30px 0px;
}

.journey_section .journey_content {
    color: #4F4F4F;
    font-weight: 400;
    width: 54%;
    font-size: 16px;
}

.apart_section {
    padding: 50px 0px;
}

.why_choose_section {
    padding: 50px 0px;
    background-color: #270F01;
}


.why_choose_section .main_choose_box {
    position: relative;
    border-radius: 12px;
    padding: 15px;

    background: linear-gradient(101.99deg,
            rgba(75, 40, 21, 0.2) 2.94%,
            rgba(119, 42, 0, 0.1) 26.24%);

    border: 1px solid #853100;
    backdrop-filter: blur(80px);
    box-shadow: 0px 4px 24px -1px #00000033;

    overflow: hidden;
}

/* HOVER OVERLAY */
.why_choose_section .main_choose_box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(101.99deg, rgba(255, 255, 255, 0.2) 2.94%, rgba(255, 255, 255, 0.1) 26.24%);

    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 12px;
    pointer-events: none;
}

.why_choose_section .main_choose_box:hover::before {
    opacity: 1;
}


.main_choose_box .choose_title {
    color: #FFF0E8;
    font-size: 22px;
    font-weight: 600;
}

.main_choose_box .choose_content {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
}

.impact_section {
    padding: 50px 0px;
    background-color: #FFF0E8;
}


.second_impact_content {
    color: #4F4F4F;
    font-weight: 400;
    font-size: 16px;
}


.impact_content_txt {
    color: #FC6916;
    font-weight: 600;
    font-size: 20px;
}

.impact_section .row {
    align-items: stretch !important;
}

.impact_content_txt_black {
    font-weight: 600;
    font-size: 20px;
    color: #0F172A;
}


.impact_section .main_impact_box {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px 0px #00000026;
    padding: 18px 20px;
    border-radius: 12px;
}

/* TITLE */
.main_impact_box .impact_content_title {
    color: #0F172A;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}

/* LIST */
.main_impact_box .impact_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_impact_box .impact_list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #4F4F4F;
    font-size: 16px;
    line-height: 1.4;
}

/* ORANGE DOT */
.main_impact_box .impact_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #FC6916;
    border-radius: 50%;
}


.leadership_section {
    padding: 50px 0px;
}

.leadership_section .main_leader_box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px 15px;
}

.leadership_section .main_leader_photo_box {
    background-color: #FFF0E7;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: 0px 0px 12px 0px #00000040;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

/* IMAGE */
.leadership_section .main_leader_photo_box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}



.main_leader_box .leader_title {
    font-size: 22px;
    color: #451A01;
    font-weight: 600;
}

.main_leader_box .leader_txt_second {
    font-size: 14px;
    text-transform: uppercase;
    color: #FC6916;
    font-weight: 600;
}

.leader_meta {
    margin-top: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
    text-transform: uppercase;
}

.leader_meta span {
    padding-right: 5px;
    border-right: 1px solid #4F4F4F;
    /* soft divider */
    height: 20px;
    display: flex;
    align-items: center;

}



.leader_meta span:last-child {
    border-right: none;
    /* remove last border */
    padding-right: 0;
}

.main_leader_box .leader_content {
    color: #4F4F4F;
    font-weight: 400;
    font-size: 18px;
}

.main_leader_box .leader_short_message {
    color: #333333;
    font-weight: 400;
    font-size: 20px;
}

.new_about_section {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: white;
    position: relative;
}

.new_about_section .main_side_img {
    left: 0;
    position: absolute;
    top: 0;
}



/* BADGE */
.since_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 3px 12px;
    border: 1.5px solid #FC6916;
    border-radius: 50px;
    background-color: #FC69160D;

    color: #FC6916;
    font-size: 16px;
    font-weight: 600;
}

/* ORANGE DOT */
.since_badge .dot {
    width: 10px;
    height: 10px;
    background-color: #FC6916;
    border-radius: 50%;
}


.new_about_section .main_title_about {
    color: #333333;
    font-weight: 500;
    width: 50%;
    line-height: 73px;
    margin-top: 28px;

}

.new_about_section .inner_main_txt {
    color: #FC6916;
    font-weight: 500;
}

.new_about_section .new_about_content {
    color: #4F4F4F;
    font-weight: 400;
    font-size: 22px;
    width: 60%;

    border-left: 4px solid #FC6916;
    padding-left: 20px;
    margin-top: 16px;
    line-height: 1.5;
}


.new_about_section .new_main_achivements_box {
    background: linear-gradient(101.99deg, rgba(255, 255, 255, 0.2) 2.94%, rgba(255, 255, 255, 0.1) 26.24%);

    border: 1px solid #853100;

    box-shadow: 0px 4px 24px -1px #00000033;

    padding: 20px;
    border-radius: 12px;

}


.achive_box {
    background-color: #FC6916;
    color: white;
    border-radius: 20px;
    padding: 2px 10px;
    display: inline-block;
}

.new_main_achivements_box .achive_content {
    color: #4F4F4F;
    font-weight: 400;
}

.main_content_box {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;

}

.stats-section {
    width: 100%;
    margin-top: 35px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.stats-container {
    width: 100%;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.stats-item {

    text-align: center;
}

.stats-number {
    font-size: 32px;
    font-weight: 700;
    color: #FC6916;
    margin-bottom: 3 px;
}

.stats-label {
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
}


@media (max-width: 768px) {
    .stats-container {
        justify-content: center;
    }

    .stats-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .stats-item {
        flex: 0 0 100%;
    }
}



/* new page css jayy */

    .logo-box {
    width: 42px;
    height: 42px;
    background: var(--primary-orange);
    color: black;
    font-weight: 900;
    border-radius: 12px;
    display: grid;
    place-items: center;
    }


  


    /* Navbar base */
    .transition-navbar {
    transition: all 0.3s ease;
    background: transparent;
    }

    /* Scrolled navbar */
    .navbar-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ffedd5;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    }

    /* Logo box */
    .logo-box {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(252, 105, 22, 0.3);
    }

    /* Brand text */
    .brand-name {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--deep-brown);
    }

    .brand-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
    }

    /* Button */
    .btn-orange {
    background-color: var(--primary-orange);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(252, 105, 22, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
    }

    .btn-orange:hover {
    transform: scale(1.05);
    color: #fff;
    }











    /* ===============================
    HERO SECTION SPACING
    ================================ */

    .hero {
    padding-top: 128px;   /* pt-32 */
    padding-bottom: 80px; /* pb-20 */
    }

    @media (min-width: 768px) {
    .hero {
        padding-top: 192px;  /* md:pt-48 */
        padding-bottom: 128px; /* md:pb-32 */
    }
    }

    /* ===============================
    BACKGROUND BLURS
    ================================ */

    .hero-bg {
    pointer-events: none;
    }

    .hero-blur {
    position: absolute;
    border-radius: 50%;
    }

    .hero-blur-orange {
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background-color: var(--orangeColor);
    filter: blur(120px);
    opacity: 0.2;
    }

    .hero-blur-brown {
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background-color: var(--brownColor);
    filter: blur(100px);
    opacity: 0.1;
    }

    /* ===============================
    CONTAINER WIDTH
    ================================ */



    /* ===============================
    BADGE
    ================================ */

    .hero-badge {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid #ffedd5;
    background: rgba(255, 237, 213, 0.5);
    color: var(--orangeColor);
    }

    .hero-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--orangeColor);
    border-radius: 50%;
    animation: pulse 1500ms infinite;
    }

    /* ===============================
    TITLE
    ================================ */

    .hero-title {
    font-size: 48px; /* text-5xl */
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: var(--brownColor);
    }

    @media (min-width: 768px) {
    .hero-title {
        font-size: 72px; /* md:text-7xl */
    }
    }

    @media (min-width: 992px) {
    .hero-title {
        font-size: 90px; /* lg:text-8xl */
    }
    }

    .hero-title-highlight {
    color: var(--orangeColor);
    }

    /* ===============================
    DESCRIPTION
    ================================ */

    .hero-description {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.8;
    max-width: 768px;
    margin: 0 auto 48px;
    line-height: 1.6;
    }

    @media (min-width: 768px) {
    .hero-description {
        font-size: 24px;
    }
    }

    /* ===============================
    BUTTON
    ================================ */

    .hero-btn {
    padding: 24px 48px;
    background-color: var(--orangeColor);
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px rgba(252, 105, 22, 0.35);
    transition: transform 300ms ease;
    }



    .hero-btn:hover {
    transform: scale(1.03);
    }

    .hero-btn:active {
    transform: scale(0.95);
    }


    .hero-btn:hover .hero-arrow {
    transform: rotate(45deg) translateX(8px);
    }

    /* ===============================
    FOOTER TEXT
    ================================ */

    .hero-footer {
    margin-top: 48px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    }

    /* Shield icon */
    .hero-shield {
    width: 20px;
    height: 20px;
    border: 2px solid var(--orangeColor);
    border-radius: 50%;
    }

    /* ===============================
    ANIMATION
    ================================ */

    @keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
    }








    /* ===============================
    SECTION BASE
    ================================ */

    .problem-section {
    padding: 96px 0; /* py-24 */
    background-color: #FDFBF9;
    }

    .problem-container {
    max-width: 1152px; /* max-w-6xl */
    padding-left: 24px;
    padding-right: 24px;
    }

    /* ===============================
    TITLE
    ================================ */

    .problem-title {
    font-size: 36px; /* text-4xl */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--brownColor);
    }

    @media (min-width: 768px) {
    .problem-title {
        font-size: 48px; /* md:text-5xl */
    }
    }

    .problem-muted {
    opacity: 0.4;
    }

    /* ===============================
    PROBLEM CARDS
    ================================ */

    .problem-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px; /* p-5 */
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #ffedd5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 700;
    transition: box-shadow 300ms ease;
    }

    .problem-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* Icons (AlertCircle replacement) */
    .problem-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    }


    /* ===============================
    RIGHT INFO CARD
    ================================ */

    .problem-gradient {
    padding: 4px;
    border-radius: 48px; /* rounded-[3rem] */
    background: linear-gradient(135deg, #fb923c, #d97706);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    }

    .problem-info-card {
    background: #ffffff;
    border-radius: 44px; /* rounded-[2.8rem] */
    padding: 40px; /* p-10 */
    }

    /* Help icon */
    .problem-help-icon {
    width: 80px;
    height: 80px;
    background-color: #fff7ed;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 900;
    color: var(--orangeColor);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
    }

    /* Text */
    .problem-info-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    }

    .problem-info-text {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
    line-height: 1.6;
    }


    .text-primary {
    color: var(--primary-orange);
    }

    .icon-box {
    width: 56px;
    height: 56px;
    background-color: #FFF7ED;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 24px;
    transition: transform 0.3s ease;
    }

    .text-primary-orange {
    color: var(--primary-orange);
    }

    .fw-black {
    font-weight: 900;
    }

    .fw-medium {
    font-weight: 500;
    }

    /* Stat boxes */
    .stat-box {
    padding: 12px 24px;
    background-color: #fff7ed;
    border-radius: 12px;
    }

    .stat-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.5;
    letter-spacing: 0.15em;
    }

    /* Cards */
    .info-card {
    padding: 32px;
    border-radius: 2.5rem;
    background: #fff;
    border: 1px solid #ffedd5;
    transition: all 0.3s ease;
    height: 100%;
    }

    .info-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 25px 50px rgba(252, 105, 22, 0.15);
    }

  

    .info-card:hover .icon-box {
    transform: scale(1.1);
    }









    /* ===============================
    SECTION BASE
    ================================ */

    .cta-section {
    padding: 80px 0; /* py-20 */
    }

    .cta-container {
    max-width: 1152px; /* max-w-6xl */
    padding-left: 24px;
    padding-right: 24px;
    }

    /* ===============================
    MAIN CTA BOX
    ================================ */

    .cta-box {
    background-color: var(--brownColor);
    border-radius: 64px; /* rounded-[4rem] */
    padding: 48px;
    }

    @media (min-width: 768px) {
    .cta-box {
        padding: 96px; /* md:p-24 */
    }
    }

    /* ===============================
    BLUR ACCENTS
    ================================ */

    .cta-blur {
    position: absolute;
    width: 256px;
    height: 256px;
    background-color: var(--orangeColor);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    }

    .cta-blur-top {
    top: 0;
    right: 0;
    }

    .cta-blur-bottom {
    bottom: 0;
    left: 0;
    }

    /* ===============================
    CONTENT
    ================================ */

    .cta-content {
    max-width: 640px; /* max-w-2xl */
    margin: 0 auto;
    z-index: 1;
    }

    /* ===============================
    ICON BOX
    ================================ */

    .cta-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    }

    .cta-icon {
    font-size: 32px;
    color: #fb923c;
    }

    /* ===============================
    TEXT
    ================================ */

    .cta-title {
    font-size: 32px; /* text-3xl */
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.25;
    }

    @media (min-width: 768px) {
    .cta-title {
        font-size: 48px; /* md:text-5xl */
    }
    }

    .cta-text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 237, 213, 0.7); /* text-orange-100/70 */
    margin-bottom: 48px;
    line-height: 1.6;
    }

    @media (min-width: 768px) {
    .cta-text {
        font-size: 20px;
    }
    }

    /* ===============================
    BUTTON
    ================================ */

    .cta-btn {
    padding: 24px 48px;
    background-color: var(--orangeColor);
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    transition: transform 300ms ease;
    }

    .cta-btn:hover {
    transform: scale(1.05);
    }

    .cta-btn:active {
    transform: scale(0.95);
    }

    /* Download icon */
    .cta-download-icon {
    font-size: 24px;
    }


    /* ===============================
    FOOTER BASE
    ================================ */

    .site-footer {
    padding-top: 64px;   /* py-16 */
    padding-bottom: 64px;
    border-top: 1px solid #ffedd5; /* border-orange-50 */
    }

    /* Container */
    .footer-container {
    max-width: 1152px; /* max-w-6xl */
    padding-left: 24px;
    padding-right: 24px;
    }

    /* ===============================
    LOGO AREA
    ================================ */

    .footer-logo {
    margin-bottom: 32px;
    }

    .footer-logo-box {
    width: 32px;
    height: 32px;
    background-color: var(--orangeColor);
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .footer-brand {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brownColor);
    }

    /* ===============================
    TAGLINE
    ================================ */

    .footer-tagline {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px; /* tracking-[0.3em] */
    opacity: 0.3;
    margin-bottom: 32px;
    }

    /* ===============================
    COPYRIGHT
    ================================ */

    .footer-copy {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.4;
    }





    /* ================= POPUP OVERLAY ================= */

    .popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    }

    .popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0.8);
    backdrop-filter: blur(6px);
    }

    /* ================= POPUP BOX ================= */

    .popup-box {
    position: relative;
    width: 100%;
    max-width: 512px;
    background: #ffffff;
    border-radius: 48px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
    z-index: 1;
    animation: popupIn 300ms ease;
    }

    @media (min-width: 768px) {
    .popup-box {
        padding: 56px;
    }

    
    }

    @media (max-width: 768px) {
    .popup-box {
        padding: 56px;
    }

    .btn-orange{
        padding: 7px 15px !important;
        font-size: 12px;
    }

    .hero-title {
    
        font-size: 36px !important;
        margin-top: 6px;
        line-height: normal !important;
        margin-bottom: 20px !important;



    }

    .hero-btn{
        padding: 11px 15px;
        font-size: 14px;
        display: block;
    }


    .hero-description{
        font-size: 16px;
    }
    

    .cta-box{
        padding: 30px 15px;
    }


    .cta-section{
        padding: 40px 0px;
    }

    .cta-btn{
        padding: 10px 15px;
        font-size: 14px;
    }

    
    .hero{
        padding-top: 110px;
        padding-bottom: 40px;
    }

    }

    /* Close */
    .popup-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    font-size: 20px;
    opacity: 0.4;
    cursor: pointer;
    }

    .popup-close:hover {
    opacity: 1;
    }

    /* ================= HEADER ================= */

    .popup-header {
    margin-bottom: 40px;
    }

    .popup-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    }

    .popup-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--brownColor);
    }

    .popup-subtitle {
    font-weight: 500;
    opacity: 0.5;
    }

    /* ================= FORM ================= */

    .form-group {
    margin-bottom: 20px;
    }

    .form-group label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-left: 4px;
    margin-bottom: 6px;
    display: block;
    }

    .form-group input {
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 237, 213, 0.5);
    border: 1px solid #ffedd5;
    border-radius: 16px;
    font-weight: 700;
    outline: none;
    }

    .form-group input:focus {
    border-color: var(--orangeColor);
    }

    /* Submit */
    .popup-submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--orangeColor);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    border-radius: 16px;
    border: none;
    margin-top: 12px;
    }

    /* Note */
    .popup-note {
    font-size: 10px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 16px;
    }

    /* ================= SUCCESS ================= */

    .success-icon {
    width: 96px;
    height: 96px;
    background: #ecfdf5;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #10b981;
    }

    .success-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--brownColor);
    }

    .success-text {
    opacity: 0.7;
    font-size: 18px;
    margin-bottom: 24px;
    }

    .success-quote {
    background: #fff7ed;
    padding: 16px;
    border-radius: 16px;
    font-style: italic;
    margin-bottom: 32px;
    }

    .popup-close-btn {
    width: 100%;
    padding: 20px;
    background: var(--brownColor);
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    border: none;
    }

    /* ================= ANIMATION ================= */

    @keyframes popupIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
    }
