:root {
    --body-font: "Outfit", sans-serif;
    --heading-font: "Fleur De Leah", serif;
    --theme-color: #c6a15b;
    --theme-color2: #c6a15b;
    --theme-bg-light: #F6F6F6;
    --theme-color-light: rgba(245, 182, 81, .1);
    --theme-color-light2: rgba(245, 182, 81, .25);
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #1E232A;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
}



*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: smooth !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
     scroll-padding-top: 60px;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 500;
    font-family: var(--body-font);
    line-height: 1.2;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

/*====================
8. Container
======================*/

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
}





.footer-area {
    background: #20232c;
    position: relative;
    z-index: 1;
}





.contact-informations {
    background: #ef7f1a;
    padding: 30px 35px 32px;
    border-radius: 5px 5px 60px 5px;
    margin: 0 3px 30px;
    position: relative;
    z-index: 1;
    transition: .5s;
    margin-top: -40px;
    overflow: hidden;
}

.contact-informations {
    position: relative;
    overflow: hidden;
}

.contact-informations::before {
    position: absolute;
    z-index: -1;
    content: "";
    bottom: 0;
    width: 100%;
    height: 0;
    right: 0;
    transition: 0.5s;
    background: #ef7f1a;
}

.contact-informations:hover::before {
    height: 100%;
    top: 0;
}

.contact-informations:hover {
    border-radius: 5px 5px 60px 60px;
}

.contact-title-content {
    overflow: hidden;
}

h2.contact-title {
    font-size: 20px;
    padding: 0px 0 8px;
    margin-top: 0;
    color: var(--color-white);
    transition: .5s;
}

span.contact-text {
    line-height: 24px;
    display: inline-block;
    transition: .5s;
    color: var(--color-white);
    font-size: 16px;
}

span.contact-text2 {
    font-size: 16px;
    display: block;
    color: var(--color-white);
    line-height: 22px;
    transition: .5s;
}

.contact-icon {
    float: left;
    margin-right: 14px;
}

.contact-icon i {
    width: 47px;
    height: 47px;
    line-height: 47px;
    background: var(--theme-bg-light);
    text-align: center;
    color: var(--theme-color);
    border-radius: 50%;
    font-size: 20px;
}

.contact-informations:hover h2.contact-title,
.contact-informations:hover span.contact-text,
.contact-informations:hover span.contact-text2 {
    color: #fff;
}

.contact-informations:hover span.contact-text2 a {
    color: #fff;
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 21px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.footer-widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 50px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .70rem;
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
    position: relative;
    margin-left: 0px;
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--theme-color);
    opacity: 1;
    transition: var(--transition);
}

.contact-title-footer {
    position: relative;
    display: block;
}

.footer-widget-box.about-us {
    margin-right: 20px;
}

.copyright {
    padding: 7px 0;
    background-color: var(--theme-color);
}

.copyright .copyright-text {
    color: var(--color-white);
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 400;
}

.copyright .copyright-text .anchor-tag-name {
    color: var(--color-white);
}

.footer-widget-wrap {
    padding: 40px 0px 30px;
}

.site-footer__logo img {
    filter: brightness(0) invert(1);
}

.footer-logo img {
    height: 81px;
}

.footer-widget__about-text {
    position: relative;
    display: block;
    margin-top: 20px;
}

.footer-discirption {
    font-size: 16px;
    color: #fff;
}

.footer-discirption a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
}

.footer-widget__about-social-links {
    position: relative;
    display: block;
    margin-top: 20px;
}

.footer-widget__about-social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-widget__about-social-links span {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding-right: 10px;
}

.footer-widget__about-social-links ul li {
    position: relative;
    display: block;
}

.contact-text2 a {
    color: var(--color-white);
}

.working-process-on-sec {
    position: relative;
    display: block;
    padding: 60px 0 40px;
    background-color: #f4f5f9;
    counter-reset: count;
    z-index: 1;
}

.title-area {
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    margin-top: -6px;
}

.sub-title {
    display: block;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.sub-title::before {
    background-color: var(--theme-color);
    margin-left: -4.5rem;
}

.sub-title::before,
.sub-title:after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60px;
}

.sub-title::after {
    background-color: var(--theme-color);
    margin-left: 0.8rem;
}

.process-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.process-one__list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0px;
}

.process-one__list li {
    position: relative;
    display: block;
    text-align: center;
    flex: 0 0 32%;
    padding: 0 15px;
    margin-bottom: 21px;
}

.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: var(--theme-color);
    border-radius: 50%;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    margin: 0 auto 0;
    transition: all 500ms ease;
    z-index: 1;
}

/* .process-one__icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: var(--theme-color);
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: -1;
} */
.process-one__icon::before {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px dashed #fff;
    border-radius: 50%;
    animation: rotated 10s infinite linear;
    transition: 500ms all ease;
    content: "";
}

@keyframes rotated {
    0% {
        transform: rotate(0);
    }

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

.process-one__list li:hover .process-one__icon {
    background-color: rgba(var(--color-dark), .60);
}

.process-one__list li:hover .process-one__icon:before {
    background-color: var(--color-dark);
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--color-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: 2;
}

.process-one__count {
    position: absolute;
    top: -15px;
    right: -5px;
    height: 40px;
    width: 40px;
    z-index: 2;
}

.process-one__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-dark);
    border: 3px solid rgba(var(--color-dark), .50);
    border-radius: 50%;
    counter-increment: count;
    content: "0" counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.process-one__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
    margin-top: 4px;
    margin-bottom: 6px;
}

.process-one__text {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
}

.process-one__shpae-1 {
    position: absolute;
    top: 26%;
    left: 50%;
    right: -28%;
    background-color: var(--theme-color);
    height: 4px;
    transition: all 500ms ease;
}

.process-one__shpae-1:before {
    content: "";
    position: absolute;
    top: -8px;
    right: -10px;
    height: 20px;
    width: 20px;
    background-color: var(--theme-color);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transition: all 500ms ease;
}

.content-box-card {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    min-height: auto;
}

.process-one__icon span img {
    width: 55px;
    filter: brightness(0) invert(1);
}

.process-one__list li:hover .process-one__count::before {
    background-color: var(--theme-color);
}

.how-it-works {
    color: var(--color-dark);
    margin-top: 8px;
    margin-bottom: 8px;
}


.why_choose_us_section {
    counter-reset: item;
}

.why_choose_us_section {
    padding: 60px 0 45px;
    background: #20232c;

    position: relative;
}

.why_choose_us_title_div {
    margin-bottom: 25px;
}

.why_choose_us_section .title-area {
    margin-bottom: 25px;
}

.why_choose_us_title_div>h4 {
    color: var(--color-white);
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5em;
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 17px;
}

.why_choose_us_title_div>h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 55px;
    background-color: var(--color-white);
    border-radius: 0px;
}

.why_choose_us_title_div>h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 95%;
    max-width: 255px;
    background-color: var(--color-white);
}

.why_choose_us_title_div p {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
}

.why_choose_main_div {
    position: relative;
    padding: 20px;
    background: rgba(20, 22, 28, 0.82);
    border-radius: 0px;
    margin-bottom: 28px;
    min-height: 175px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-color: rgba(255, 255, 255, .40);
}

.icon-div-box img {
    width: 90px;
}

.why_choose_main_div::before {
    position: absolute;
    top: -11px;
    left: -11px;
    content: "";
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    border: solid;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 5px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .7s ease-out;
    border-color: rgba(0, 0, 0, .09);
    border-color: rgba(255, 255, 255, .40);
}

.why_choose_main_div::after {
    position: absolute;
    bottom: -11px;
    right: -11px;
    content: "";
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    border: solid;
    border-width: 1px 0 0 1px;
    display: inline-block;
    padding: 5px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .7s ease-out;
    border-color: rgba(0, 0, 0, .09);
    border-color: rgba(255, 255, 255, 1);
}

.why_choose_main_div:hover::before {
    left: 100%;
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 1);
}

.why_choose_main_div:hover::after {
    right: 100%;
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 1);
}

.why_choose_main_div .conut-number {
    content: "0" counter(item);
    counter-increment: item;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
}



.whyus_img_div {
    margin-bottom: 12px;
    width: 65px;
    height: 65px;
    background: #20232c;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
}

.whyus_img_div img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.why_choose_main_div h4 {
    color: var(--color-white);
    font-size: 19px;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.why_choose_main_div p {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 400;
}

.avinashay-quick-links {
    padding-left: 60px;
}

.contact-three {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    background: #F0F4FF;
    background: linear-gradient(180deg, rgba(240, 244, 255, 0.78) 0%, rgba(240, 244, 255, 0) 100%);
    z-index: 1;
}

.contact-three__bg-color {
    position: absolute;
    top: 90px;
    right: 0;
    bottom: 0;
    width: calc((100% - -344px) / 2);
    background-color: #20232c;
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.contact-three__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-one__right {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: -10px 0px 60px 0px rgba(0, 0, 0, 0.07);
    border-radius: var(--itzone-bdr-radius);
    padding: 43px 50px 50px;
    margin-left: 0px;
}

.contact-one__input-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 7px;
    color: var(--color-dark);
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-one__input-icon {
    position: absolute;
    top: 14px;
    right: 16px;
}

.contact-one__input-icon span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--color-dark);
}

.contact-one__input-box input {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(7, 13, 26, .10);
    padding-left: 15px;
    padding-right: 45px;
    outline: none;
    font-size: 16px;
    color: var(--color-dark);
    display: block;
    font-weight: 400;
    border-radius: 7px;
    line-height: 50px;
    position: relative;
    display: block;
    z-index: 1;
}

.contact-one__input-box textarea {
    position: relative;
    height: 120px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(7, 13, 26, .10);
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 45px;
    outline: none;
    font-size: 16px;
    color: var(--color-dark);
    display: block;
    font-weight: 400;
    border-radius: 7px;
    margin-bottom: 0;
}

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-white);
    padding: 11px 25px 11px;
    border-radius: 7px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    gap: 10px;
    text-align: center;
    background-color: var(--theme-color);
    z-index: 1;
}

.contact-three__left {
    position: relative;
    display: block;
}

.contact-three__left .section-title {
    margin-bottom: 22px;
}

.section-title {
    position: relative;
    display: block;
    margin-top: -5px;
    margin-bottom: 51px;
    z-index: 1;
}

.section-title__tagline-box {
    position: relative;
    display: block;
    line-height: 16px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: var(--theme-color);
    font-weight: 600;
    text-transform: uppercase;
}

.section-title__tagline:before {
    content: "";
    height: 2px;
    background: #c6a15b;
    background: var(--color-dark);
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
}

.section-title__tagline::after {
    position: absolute;
    left: 0;
    bottom: -6px;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    content: "";
    animation: l-r-zump 2s linear infinite;
    background: #c6a15b;
    border-radius: 50%;
}

@keyframes l-r-zump {

    0%,
    100% {
        transform: translateX(0);
    }

    25%,
    75% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(-10px);
    }
}

.section-title__title {
    color: var(--color-dark);
    font-size: 32px;
    line-height: 50px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 10px 0 0;
}

.contact-three__contact-list {
    position: relative;
    display: block;
    max-width: 430px;
    width: 100%;
    margin-top: 30px;
}

.contact-three__contact-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(7, 13, 26, .10);
    border-radius: 7px;
    gap: 20px;
    padding: 19px 20px 13px;
}

.contact-three__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    background-color: var(--theme-color);
    border-radius: 7px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-three__contact-list li .content {
    position: relative;
    display: block;
    flex: 1;
}

.contact-three__contact-list li .content span {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-transform: capitalize;
    color: var(--color-dark);
}

.contact-three__contact-list li .content p {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-dark);
    margin-top: 1px;
}

.contact-three__contact-list li+li {
    margin-top: 15px;
}

.email-container-box {
    background: #e1e9ef;
    padding: 45px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.working-process-on-sec.phone-email-sec-index {
    background-image: linear-gradient(to right, #20232c, #c6a15b);
}

.btn-solid {
    padding: 11px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    background-image: linear-gradient(to right, #20232c, #c6a15b);
    border: 1px solid #20232c;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    border-radius: 30px;
    min-width: 195px;
}

.btn-solid:hover {
    color: #fff;
}

.theme-btn:hover {
    color: #c0902c;
}

.view-design-pdf {
    border: 1px solid #20232c;
    margin-left: 8px;
    font-weight: 500;
    line-height: 1;
    padding: 11px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
    min-width: 195px;
}

.view-design-pdf:hover {
    background-image: linear-gradient(to right, #20232c, #c6a15b);
    color: #fff;
    transition: all ease-in;
}

.recent-build-project-sec {
    background: #1E232A;
    padding: 40px 0px 40px;
}

.main-card-recent-build-box {
    position: relative;
    width: 100%;
    min-height: 62px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: #c6a15b;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    color: #fff;
    transition: all 0.35s ease;
    overflow: hidden;
    margin-bottom: 12px;
}

.main-card-recent-build-box:last-child {
    margin-bottom: 0px !important;
}

.main-card-recent-build-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


.number-series {
    position: relative;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20232c;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 3px solid #ccc;
    z-index: 2;
}


.number-series::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid #ccc;
    opacity: 0.6;
}


/* Content */
.build-content {
    flex: 1;
    min-width: 0;
}

.build-title {
    margin: 0 0 5px;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;

    transition: 0.3s ease;
}

.mobile-app {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}


/* Round Arrow */
.arrow {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;

    background: #20232c;
    color: #fff;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition: all 0.35s ease;
}

/* Arrow hover */
.main-card-recent-build-box:hover .arrow {
    background: #fff;
    color: #20232c;
    transform: translateX(4px);
}


/* Mobile */
@media (max-width: 575px) {

    .main-card-recent-build-box {
        gap: 15px;
        min-height: 68px;
        padding: 10px;
    }

    .number-series {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .number-series::after {
        right: -9px;
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 10px;
    }

    .build-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .mobile-app {
        font-size: 12px;
    }

    .arrow {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 19px;
    }
}

.hearo-sec-banner{
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
    background-color: #1E232A;
}
.eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 8px 14px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;

    text-transform: uppercase;
    color: #c6a15b;

    background: rgba(198, 161, 91, 0.07);
    border: 1px solid rgba(198, 161, 91, 0.25);
    border-radius: 50px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    margin-bottom: 22px;

    transition: all 0.35s ease;
}


.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #c6a15b
    );
    transition: width 0.35s ease;
}


.eyebrow::after {
    content: "";
    position: absolute;
    right: 9px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #c6a15b;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(198, 161, 91, 0.8);
}

.main-title {
    margin: 0;
    font-size: clamp(35px, 4.2vw, 50px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.045em;

    color: #f5f5f5;

    text-wrap: balance;
}

.main-title .accent {
    position: relative;

    color:#E6E9EF;
    font-weight: 600;

    display: inline-block;
}

/* Gold underline */
.main-title .accent::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #c6a15b,
        transparent
    );

    border-radius: 50%;

    opacity: 0.8;
}

/* Subtle hover effect */
.main-title:hover .accent {
    text-shadow:
        0 0 12px rgba(198, 161, 91, 0.25),
        0 0 30px rgba(198, 161, 91, 0.12);
}


/* Tablet */
@media (max-width: 991px) {
    .main-title {
        max-width: 700px;
        font-size: clamp(40px, 7vw, 60px);
        line-height: 1.1;
    }
}


/* Mobile */
@media (max-width: 575px) {
    .main-title {
        max-width: 100%;
        font-size: 38px;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .main-title .accent::after {
        height: 2px;
        bottom: 0;
    }
}

.lead{
    margin-top: 22px;
    max-width: 560px;
    font-size: 17px;
    line-height: 1.65;
    color: #ccc;
}

.btn-solid.hero-btn {
    background: #fff;
    color: #c6a15b;
}

.view-design-pdf.hear-pdf-btn{
    color: #fff;
    border: 1px solid #fff;
}

.count-number-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
margin-top: 30px;
    width: 100%;
    max-width: 650px;
}

.count-number-boc-card {
    position: relative;

    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(198, 161, 91, 0.22);
    border-radius: 14px;

    overflow: hidden;

    transition: all 0.35s ease;
}

/* Gold top line */
.count-number-boc-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 20px;

    width: 35px;
    height: 2px;

    background: #c6a15b;

    transition: width 0.35s ease;
}


/* Number */
.count-number-boc-card .num {
    margin-bottom: 8px;

    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: -0.04em;

    color: #c6a15b;
}


/* Label */
.count-number-boc-card .lbl {
    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
    font-weight: 500;

    line-height: 1.4;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* Hover */
.count-number-boc-card:hover {
    transform: translateY(-5px);

    border-color: rgba(198, 161, 91, 0.55);

    background: rgba(198, 161, 91, 0.06);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.count-number-boc-card:hover::before {
    width: 65px;
}


/* Tablet */
@media (max-width: 767px) {

    .count-number-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .count-number-boc-card {
        padding: 18px 15px;
    }

    .count-number-boc-card .num {
        font-size: 34px;
    }
}


/* Mobile */
@media (max-width: 480px) {

    .count-number-box {
        grid-template-columns: 1fr;
    }

    .count-number-boc-card {
        padding: 18px 20px;
    }
}

.banner-images {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.our-screen-sec{
    position: relative;
    width: 100%;
    padding: 60px 0px 40px;
    background-color: #1E232A;
}
.page_title_lmeuo_section {
    background-image: #e5e4e2;
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}
.page_ti_overly_lmeuo_div {
    background-color: #e5e4e2;
    padding-top: 25px;
}
.page_title_tax_lmeuo_main_div {
    text-align: left;
    margin: auto;
}
.page_title_tax_lmeuo_div {
    text-align: center;
    background-color: var(--theme-color);
    display: inline-block;
    padding: 7px 20px 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-radius: 4px;
    margin-top: -20px;
}
.page_title_tax_lmeuo_div ul {
    list-style: none;
    padding: 0px 6px;
    margin-bottom: 0px !important;
}
.page_title_tax_lmeuo_div li {
    display: inline-block;
    margin: 0px 3px 0px 3px;
    color: var(--color-white);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
}
.page_title_tax_lmeuo_div i {
    font-size: 13px;
    color: var(--color-white);
}
.page_title_tax_lmeuo_div li a{
    color: var(--color-white);
}
.aboutus-sec-home {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}
.about-three__right {
    position: relative;
    display: block;
    padding-left: 0px;
}
.aboutus-sec-home .site-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 30px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
}
.about-three__right p {
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mission-vision-sec-about {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
    background: #f1f2f9;
}
.mission-visison-card-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.mission-vision-sec-about .mission-visison-card-box .col-lg-6.col-sm-12.col-md-12 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.mission-images img {
    height: 328px;
}
.mission-vision-sec-about .mission-visison-card-box .col-lg-6.col-sm-12.col-md-12 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.mission-main-content-box {
    background-color: var(--theme-color);
    padding: 30px;
}
.mission-main-content-box h2 {
    font-size: 24px;
    color: #ffff;
    font-weight: 600;
    margin-bottom: 8px;
}
.mission-main-content-box p {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
}