@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
    position: relative;
    font-family: Montserrat,sans-serif;
    font-size: 14px;
    color: rgb(0,0,0);
    padding: 0px;
    overflow-x: hidden !important;
    margin: 0px;
}

* {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

p {
    font-size: 16px;
    color: rgb(0,0,0);
    margin-bottom: 10px;
    font-family: Montserrat,sans-serif;
    line-height: 28px;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0px;
    color: rgb(0,0,0);
    padding: 0px;
    font-family: Montserrat,sans-serif;
}

a {
    text-decoration: none;
    transition: 0.5s ease-in-out;
    font-family: Montserrat,sans-serif;
}

a:hover,a:focus {
    text-decoration: none;
    outline: none;
}

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #0A0A0A;
    --text-color: #f8f8f8;
    --bg-color: #060606;
    --accent-color: #A93E17;
    --accent-secondary-color: #15399A;
    --divider-color: #FFFFFF0F;
    --dark-divider-color: #FFFFFF33;
    --error-color: rgb(230,87,87);
    --default-font: "Montserrat",sans-serif;
}

.herotext p {
    color: #fff;
    line-height: 25px;
    font-size: 16px;
    margin: 20px 0px;
}

.herotext h1 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 35px;
}

.hero-pera-herd {
    font-weight: 500;
    font-size: 28px;
    line-height: 35px !important;
}

.pera-heading-hero {
    font-size: 16px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
    background: #000;
}

.header-top {
    padding: 5px 0;
    background: #EDA921;
}

.header-top p {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.social-links {
    position: relative;
}

.info-list {
    position: absolute;
    right: 0;
    bottom: -12px;
}

.info-list {
    list-style-type: none;
    margin: 0;
}

.info-list li {
    float: left;
    padding-right: 22px;
}

.info-list li a {
    color: #000;
    font-weight: 600;
}

.nav-link:focus,.nav-link:hover {
    color: #eda921;
}

.info-list li:last-child {
    padding-right: 0;
}

.info-list li:last-child img {
    padding-right: 5px;
}

.header-bottom {
    background: #000000;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

.mainmenu {
    text-align: right;
    display: flex;
    float: right;
}

.mainmenu li {
    position: relative;
    display: inline-block;
}

.mainmenu li a {
    display: block;
    padding: 0 24px;
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 16px;
    position: relative;
}

.mainmenu li .ul-wid {
    width: 235px;
}

.mainmenu li ul.services-menu {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    column-gap: 24px;
}

.mainmenu li ul.services-menu li {
    width: auto;
}

.mainmenu li ul {
    position: absolute;
    left: 0;
    top: 55px;
    width: 500px;
    max-width: 500px;
    background-color: #000;
    text-align: left;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    padding: 0 15px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-box-shadow: 2px 5px 20px 0 rgba(0,0,0,0.1);
    box-shadow: 2px 5px 20px 0 rgba(0,0,0,0.1);
    border-radius: 0;
}

.mainmenu li:hover ul {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.mainmenu li ul li {
    width: 100%;
}

.mainmenu li ul li a {
    padding: 5px 5px;
    font-weight: 400;
    color: #fff;
    transition: all .3s;
    border-bottom: 1px solid #f5f5f561;
    font-size: 14px;
}

.mainmenu li ul li a:hover {
    color: #000;
}

.mainmenu li ul li a:hover {
    background: #fff;
}

.mainmenu li ul li:last-child a {
    border-bottom: none;
}

.info-list li img {
    margin: 0 auto;
}

.btn-style-one {
    position: relative;
    font-size: 13px;
    line-height: 24px;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0px;
    overflow: hidden;
    text-transform: uppercase;
    color: rgb(0,0,0);
    background: rgb(255,170,23);
}

.theme-btn {
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: 0.3s;
    z-index: 0;
}

.btn-style-one::before {
    position: absolute;
    left: 0px;
    top: 0%;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgb(0,0,0);
    transform: scale(1,0);
    transform-origin: left bottom;
    transition: transform 500ms cubic-bezier(0.86,0,0.07,1),-webkit-transform 500ms;
    z-index: -1;
}

.btn-style-one:hover::before {
    transform-origin: right top;
    transform: scale(1,1);
}

.btn-style-one:hover {
    color: rgb(255,255,255);
}

.bg-one {
    background-color: var(--text-color);
}

.section-title {
    margin-bottom: 40px;
}

.section-title {
    display: inline-block;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: rgb(0,0,0);
    background: rgb(237,169,33);
    border-radius: 100px;
    padding: 10px 50px;
    margin-bottom: 20px;
}

.section-title::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    background: url("../asset/img/icon-sparkle.svg") left center / cover no-repeat;
    width: 16px;
    height: 16px;
    filter: brightness(0);
}

.section-title::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background: url("../asset/img/icon-sparkle.svg") right center / cover no-repeat;
    width: 16px;
    height: 16px;
    filter: brightness(0);
}

.title-heading {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0px;
    margin-bottom: 30px;
}

.about-us {
    padding: 30px 0;
}

.about-us .section-title.section-title-center {
    max-width: 1080px;
}

.about-us .section-title h2 span {
    background: var(--accent-secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
}

.about-us .section-title h2 span img {
    max-width: 20px;
}

.about-us .section-title h2 span:nth-child(2) {
    background: var(--accent-color);
}

.text-effect .line {
    width: 100%;
    color: var(--dark-divider-color);
    background-clip: text;
    background-size: 0%;
}

.about-us-box {
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid rgba(237,169,33,0.85);
}

.about-us-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-item-content {
    width: calc(100% - 90px);
}

.about-item-content p {
    font-size: 16px;
    line-height: 1.3em;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

.about-item-content p {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.about-us-item .icon-box {
    position: relative;
    background: #d5d5d5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.about-item-content p:nth-child(1) {
    font-size: 30px;
}

.about-us-item .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: #eda921;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.about-us-box:hover .about-us-item .icon-box::before {
    transform: scale(1);
}

.about-us-item .icon-box img {
    position: relative;
    max-width: 20px;
    z-index: 1;
    filter: invert(1);
}

.about-item-image {
    width: 100%;
    align-content: end;
    text-align: left;
}

.about-item-image img {
    max-height: 60px;
    filter: brightness(.5);
}

.stack {
    font-size: 30px;
    font-weight: 600;
}

.how-it-work {
    padding: 80px 0px;
}

.how-work-item {
    background: rgb(248,248,248);
    border: 1px solid rgb(223,223,223);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.how-work-item:last-child {
    margin-bottom: 0px;
}

.how-work-header {
    border-right: 1px solid rgb(223,223,223);
    margin-right: 40px;
    padding-right: 40px;
}

.how-work-header .icon-box {
    position: relative;
    background: rgb(223,223,223);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.how-work-item .how-work-header .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: #c3c3c3;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: 0.4s ease-in-out;
}

.how-work-item:hover .how-work-header .icon-box::before {
    transform: scale(1);
}

.how-work-header .icon-box img {
    position: relative;
    z-index: 1;
}

.how-work-step-no {
    text-align: center;
    margin-top: 15px;
}

.how-work-step-no p {
    color: rgb(0,0,0);
    text-transform: uppercase;
    margin: 0px;
    font-weight: 500;
}

.how-work-item-content {
    width: calc(100% - 150px);
}

.how-work-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.how-work-item-content p {
    margin: 0px;
}

.how-work-video-content {
    position: sticky;
    top: 30px;
    margin-left: 15px;
}

.how-work-video {
    width: 100%;
}

.how-work-video video {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.how-work-video-content .section-footer-text {
    margin: 30px 30px 0px;
}

.section-footer-text p {
    margin-bottom: 0px;
}

.section-footer-text span {
    font-size: 14px;
    font-weight: 500;
    background-size: 200%;
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 99px;
    margin-right: 10px;
    transition: 0.4s ease-in-out;
}

.section-footer-text p:hover span {
    background-position: right center;
}

.section-footer-text p a {
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 0.3s ease-in-out;
    color: rgb(237,169,33) !important;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.section-title.dark {
    background: rgb(0,0,0);
    color: rgb(255,255,255);
}

.section-title::after {
    filter: sepia(1);
}

.section-title::before {
    filter: sepia(1);
}

.about-text {
    position: relative;
}

.about-text img {
    position: absolute;
    top: 0px;
    width: 65%;
    right: 0px;
    filter: hue-rotate(45deg);
}

.bg-yellow {
    background: url("../images/bg-map.png") center center / cover no-repeat rgb(237,169,33);
    width: 100%;
    padding-top: 50px;
}

.bg-gray {
    background-image: url("https://www.seotechexperts.ae/ajman/images/bg-04.jpg");
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 50px;
}

.about-img {
    margin-left: 40px;
    position: relative;
    z-index: 1;
    padding: 54px;
    padding-top: 0px;
}

.about-img img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.about-img .shape-box {
    bottom: 14px;
    position: absolute;
    right: 15px;
    width: 30%;
}

.about-img .line-shape {
    left: -7px;
    position: absolute;
    right: 0px;
    top: 10px;
    width: 590px;
    z-index: -1;
}

.why-choose-us-four {
    position: relative;
    padding: 50px 0px;
}

.why-choose-us-four .content-column {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}

.why-choose-us-four .content-column .inner-column {
    position: relative;
    padding-top: 2px;
}

.why-choose-us-four .content-column .inner-column i {
    color: #eda921;
}

@media only screen and (max-width: 1199px) {
    .why-choose-us-four .content-column .inner-column {
        padding-left:0px;
    }
}

.why-choose-us-four .content-column .sec-title {
    margin-bottom: 40px;
}

.why-choose-us-four .content-column .sec-title h3 {
    font-size: 24px;
    color: var(--theme-color4);
    margin-top: 35px;
}

.why-choose-us-four .content-column .sec-title .text {
    margin-top: 25px;
}

.why-choose-us-four .content-column .blockquote-one {
    margin-bottom: 50px;
}

.why-choose-us-four .content-column .btn-box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 40px;
}

.why-choose-us-four .image-column {
    position: relative;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1023px) {
    .why-choose-us-four .image-column {
        display:none;
    }
}

.why-choose-us-four .image-column .inner-column {
    position: relative;
    margin-right: -10px;
}

@media only screen and (max-width: 1199px) {
    .why-choose-us-four .image-column .image-box {
        text-align:center;
    }
}

.why-choose-us-four .image-column .image-box .bg-shape {
    background-image: url("https://html.kodesolution.com/2025/arotech-html/images/icons/shape-13.png");
    position: absolute;
    left: -150px;
    top: 50%;
    width: 493px;
    height: 493px;
    transform: translateY(-50%);
}

.why-choose-us-four .image-column .image-box .image-1 {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 296.6px;
}

.why-choose-us-four .image-column .image-box .image-1 img {
    width: 100%;
}

.why-choose-us-four .image-column .image-box .image-2 {
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
    max-width: 296.6px;
}

.why-choose-us-four .image-column .image-box .image-2 img {
    width: 100%;
}

.why-choose-us-four .image-column .image-box .image-3 {
    position: absolute;
    right: 35px;
    top: 92px;
    margin-bottom: 0px;
    max-width: 296.6px;
}

.why-choose-us-four .image-column .image-box .image-3 img {
    width: 100%;
}

@media only screen and (max-width: 1199px) {
    .why-choose-us-four .image-column .image-box .image-3 {
        display:none;
    }
}

.clients-section {
    background: var(--text-color);
    overflow: hidden;
    padding: 40px 0px;
}

.slider {
    height: 100px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(4000px);
    animation: 40s linear 0s infinite normal none running scroll;
}

.slide {
    height: 100px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: auto;
    height: 50%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-50%);
    }
}

#projects-1 .col-md-4 {
    padding: 0px 10px;
}

.projects-section {
    overflow: hidden;
}

.project-1 {
    position: relative;
    top: 0px;
    z-index: 999;
    background-color: rgb(255,255,255);
    border: 1px solid rgb(221,221,221);
    padding: 30px 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition: 400ms ease-in-out;
}

.bg-lightcyan .project-1,.bg-lightgrey .project-1 {
    background-color: rgb(255,255,255);
    border-color: transparent;
    box-shadow: rgba(56,60,67,0.05) 0px 0px 0px 1px,rgba(56,60,67,0.15) 0px 1px 3px 0px;
}

.project-1:hover {
    background-color: rgb(255,255,255);
    border: 1px solid rgb(245,245,245);
    box-shadow: rgba(0,0,0,0.15) 0px 6px 15px 0px;
}

.project-2 {
    margin-bottom: 30px;
    border-radius: 8px;
}

.project-3 {
    position: relative;
    top: 0px;
    z-index: 999;
    background-color: rgb(245,245,245);
    box-shadow: rgba(56,60,67,0.05) 0px 0px 0px 1px,rgba(56,60,67,0.15) 0px 1px 3px 0px;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: 400ms ease-in-out;
}

.project-3:hover {
    background-color: rgb(255,255,255);
    box-shadow: rgba(0,0,0,0.15) 0px 6px 15px 0px;
    top: -10px;
}

.project-1 .project-data {
    border-top: 1px solid rgb(213,213,213);
    padding-top: 22px;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: space-between;
}

.project-3 .project-data {
    padding: 35px 20px 20px;
    border-radius: 8px;
}

.project-3 .project-data h5 {
    color: rgb(117,117,117);
    padding: 0px 10px;
    margin-bottom: 20px;
}

.pd-box {
    display: block;
    margin-bottom: 6px;
}

.pd-box h5 {
    display: inline-block;
    float: left;
    font-weight: 800;
    margin-right: 12px;
    margin-bottom: 0px;
    color: rgb(0,0,0);
    font-size: 16px;
}

.project-1 p.p-sm {
    color: rgb(51,51,51);
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 14px;
}

.pd-box h5 i {
    margin-right: 3px;
    color: rgb(237,169,33);
}

.pd-box p {
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 0px;
}

.project-1 img {
    margin-bottom: 10px;
}

.project-3 .project-data img {
    padding-right: 50%;
}

.project-3 .project-preview img {
    border-radius: 0px 0px 8px 8px;
}

.project-description {
    position: absolute;
    z-index: 20;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.project-description img {
    padding: 0px 22%;
}

.project-description p {
    display: inline-block;
    font-family: Montserrat,sans-serif;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.project-description p::before {
    display: block;
    content: "";
    height: 1px;
    width: 85px;
    background: rgb(255,255,255);
    margin: 15px auto 20px;
    position: relative;
}

.dark-but {
    background: rgb(0,0,0);
    color: rgb(255,255,255);
}

.dark-but::before {
    background-color: rgb(255,255,255);
    color: rgb(0,0,0);
}

.dark-but:hover {
    color: rgb(0,0,0);
}

.auto-container {
    position: static;
    max-width: 1350px;
    padding: 0px 15px;
    margin: 0px auto;
    width: 100%;
}

.why-choose-us-five {
    position: relative;
}

@media (max-width: 991.98px) {
    .why-choose-us-five {
        padding-bottom:120px;
    }

    .counter-sec .col-lg-3.col-md-6 {
        width: 50%;
    }

    .industry-sec .col-lg-2.col-md-2.col-sm-6 {
        width: 50%;
    }

    .about-us .col-lg-3.col-md-6 {
        width: 50%;
    }

    .about-item-content p:nth-child(1) {
        font-size: 20px;
    }

    .about-item-content p {
        font-size: 14px;
    }
}

.why-choose-us-five .icon-arrow1 {
    top: 470px;
    left: -260px;
}

.why-choose-us-five .content-column {
    position: relative;
    z-index: 3;
}

.why-choose-us-five .content-column .inner-column {
    position: relative;
    padding: 50px 0px;
}

.why-choose-us-five .content-column .sec-title {
    margin-bottom: 40px;
}

.why-choose-us-five .info-box {
    position: relative;
    margin-bottom: 10px;
}

.why-choose-us-five .info-box .inner {
    position: relative;
}

.why-choose-us-five .info-box .inner:hover .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color2);
}

.why-choose-us-five .info-box .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 70px;
    width: 70px;
    background-color: var(--theme-color-light);
    color: var(--theme-color2);
    font-size: 36px;
    border-radius: 50%;
    box-shadow: rgba(0,0,0,0.1) 0px 10px 50px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 300ms;
}

@media (max-width: 575.98px) {
    .why-choose-us-five .info-box .icon {
        position:relative;
        display: inline-flex;
        margin: 0px auto 20px;
    }
}

.why-choose-us-five .info-box .title-box {
    position: relative;
    padding-left: 0px;
    min-height: 0px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 5px;
}

@media (max-width: 575.98px) {
    .why-choose-us-five .info-box .title-box {
        padding-left:0px;
        text-align: center;
        min-height: auto;
    }
}

.why-choose-us-five .info-box .title {
    margin-bottom: 0px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .why-choose-us-five .info-box .title br {
        display:none;
    }
}

.why-choose-us-five .info-box .text {
    line-height: 26px;
    margin-bottom: 0px;
}

@media (max-width: 575.98px) {
    .why-choose-us-five .info-box .text {
        text-align:center;
    }
}

.why-choose-us-five .image-column .inner-column {
    position: relative;
    height: 100%;
    padding-left: 0px;
    margin-right: -370px;
}

@media (max-width: 1199.98px) {
    .why-choose-us-five .image-column .inner-column {
        padding-left:0px;
    }
}

@media (max-width: 991.98px) {
    .why-choose-us-five .image-column .inner-column {
        margin-right:0px;
        height: auto;
    }
}

.why-choose-us-five .image-column .image-box {
    position: relative;
}

.why-choose-us-five .image-column .image-box .image {
    margin-bottom: 0px;
    height: 100%;
}

.why-choose-us-five .image-column .image-box .image img {
    object-fit: cover;
}

.why-choose-us-five .image-column .content-box {
    position: absolute;
    left: 0px;
    top: 300px;
    background-color: rgba(24,25,28,0.9);
    padding: 60px 58px 80px;
    max-width: 393px;
}

@media (max-width: 767.98px) {
    .why-choose-us-five .image-column .content-box {
        position:relative;
        top: 0px;
        background-color: var(--theme-color1);
        max-width: 100%;
        padding: 50px 30px 80px;
    }
}

.why-choose-us-five .image-column .content-box .text {
    font-size: 15px;
    line-height: 25px;
    color: rgb(255,255,255);
    margin-bottom: 60px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .why-choose-us-five .image-column .content-box .text {
        margin-bottom:50px;
    }
}

@media (max-width: 767.98px) {
    .why-choose-us-five .image-column .content-box .text {
        font-size:24px;
        line-height: 1.4em;
    }
}

.why-choose-us-five .image-column .content-box .caption {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: rgb(255,170,23);
    font-size: 20px;
    line-height: 30px;
    color: rgb(255,255,255);
    font-weight: 600;
    padding: 25px 30px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .why-choose-us-five .image-column .content-box .caption {
        line-height:1.2em;
    }
}

.accordion-button:not(.collapsed) {
    background: rgb(0,0,0);
    color: rgb(255,255,255);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.tz-banner1 {
    position: relative;
    overflow: hidden;
    background: #121212;
    padding: 12rem 0 0;
}

.position-absolute {
    position: absolute !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.start-0 {
    left: 0 !important;
}

.top-0 {
    top: 0 !important;
}

.end-0 {
    right: 0 !important;
}

.tz-banner1__shape1 {
    position: absolute;
    left: -2%;
    bottom: -3%;
    z-index: 1;
}

.tz-banner1__shape2 {
    position: absolute;
    left: 30%;
    bottom: 7%;
}

.floating {
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.tz-banner1__wrapper {
    position: relative;
}

.tz-banner1__image {
    border-top-right-radius: 7.5rem;
    width: 100%;
}

.herotext {
    margin-top: 75px;
    position: relative;
    z-index: 1;
}

.sliding-text {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ffaa17;
    padding: 10px 0;
}

.sliding-text__wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sliding-text__list {
    display: flex;
    gap: 50px;
    animation: marquee 20s linear infinite;
}

.sliding-text__title {
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.sliding-text__wrap:hover .sliding-text__list {
    animation-play-state: paused;
}

.sliding-text__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sliding-text__list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sliding-text__list li a {
    color: #000;
}

.technical {
    box-shadow: 0 0 10px #dfdfdf;
    border-radius: 10px;
    padding: 30px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.title-box .title {
    margin-bottom: 15px;
}

.counter-one__shape-1 {
    position: absolute;
    top: -65px;
    right: -21px;
    width: 149px;
    height: 149px;
    background: linear-gradient(270deg,rgba(92,176,233,0.02) 0%,rgba(143,136,255,0.1) 100%);
    transform: rotate(-125.62deg);
    border-radius: 50%;
    z-index: -1;
}

.counter-one__shape-2 {
    position: absolute;
    width: 294px;
    height: 294px;
    right: -42px;
    top: -60px;
    border-radius: 50%;
    background: linear-gradient(270deg,rgba(92,176,233,0.02) 0%,rgba(143,136,255,0.05) 100%);
    transform: rotate(-5.91deg);
    z-index: -1;
}

.footer-link .text-white {
    position: relative;
    padding-left: 30px;
}

.footer-link img {
    position: absolute;
    left: 0;
    top: 5px;
}

.mainmenu li:nth-child(7) a {
    padding-right: 0;
}

.toggle {
    display: none;
}

@media (max-width: 991px) {
    .header-top {
        display:none;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .header-area,.header-area .row,.header-area .logo {
        position: relative;
    }

    .header-area .logo {
        display: flex;
        min-height: 64px;
        align-items: center;
        justify-content: space-between;
    }

    .toggle {
        position: absolute;
        top: 50%;
        right: 12px;
        display: block;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 0;
        background: transparent;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .toggle span,.toggle span::before,.toggle span::after {
        position: absolute;
        left: 50%;
        display: block;
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transition: transform 0.25s ease,top 0.25s ease,opacity 0.2s ease;
    }

    .toggle span {
        top: 50%;
        transform: translate(-50%,-50%);
    }

    .toggle span::before,.toggle span::after {
        content: "";
        transform: translateX(-50%);
    }

    .toggle span::before {
        top: -9px;
    }

    .toggle span::after {
        top: 9px;
    }

    .toggle.active span {
        background: transparent;
    }

    .toggle.active span::before {
        top: 0;
        transform: translateX(-50%) rotate(45deg);
    }

    .toggle.active span::after {
        top: 0;
        transform: translateX(-50%) rotate(-45deg);
    }

    .mainmenu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 9999;
        display: none;
        width: 100%;
        max-height: 78vh;
        float: none;
        overflow-y: auto;
        border-radius: 0 0 10px 10px;
        background: #fff;
        box-shadow: 0 18px 35px rgba(0,0,0,0.18);
        text-align: left;
    }

    .mainmenu.is-open {
        display: block;
    }

    .mainmenu nav,.mainmenu nav>ul {
        width: 100%;
    }

    .mainmenu nav>ul {
        margin: 0;
        padding: 8px 0;
    }

    .mainmenu li {
        display: block;
        width: 100%;
    }

    .mainmenu li a {
        padding: 13px 22px;
        border-bottom: 1px solid #ececec;
        color: #171717;
        font-size: 15px;
    }

    .mainmenu .dropdown-toggle::before {
        content: "+";
        position: absolute;
        top: 50%;
        right: 22px;
        font-size: 22px;
        font-weight: 400;
        transform: translateY(-50%);
    }

    .mainmenu .submenu-open>.dropdown-toggle::before {
        content: "−";
    }

    .mainmenu li ul,.mainmenu li ul.services-menu {
        position: static;
        display: none;
        width: 100% !important;
        max-width: none;
        grid-template-columns: none;
        padding: 0 0 0 16px;
        background: #f6f6f6;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    .mainmenu li:hover>ul {
        transform: none;
    }

    .mainmenu li.submenu-open>ul,.mainmenu li.submenu-open>ul.services-menu {
        display: block;
    }

    .mainmenu li ul li a {
        padding: 11px 22px;
        border-bottom: 1px solid #e5e5e5;
        color: #343434;
    }

    .tz-banner1 {
        padding: 5rem 0 0;
    }

    .tz-banner1__image {
        width: 100%;
    }

    .tz-banner1__circle {
        bottom: 75%;
        left: 70%;
    }

    .about-img {
        margin-left: 0;
        padding: 0;
        text-align: center;
    }

    .about-img img {
        width: 70%;
        margin-bottom: 85px;
    }

    .how-work-video {
        margin-top: 50px;
    }

    .img-seo-panel img {
        width: 100%;
    }

    .title-heading {
        font-size: 22px;
    }

    .section-title {
        font-size: 12px;
    }

    .img {
        margin-top: 50px;
    }

    .how-work-item {
        display: block;
        padding: 30px;
    }

    .how-work-header {
        border-right: 0;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .how-work-step-no {
        display: none;
    }

    .how-work-item-content {
        width: 100%;
    }

    .how-work-video video {
        height: 350px;
    }

    .about-img .shape-box {
        bottom: -30px;
        width: 45%;
    }

    .project-1 {
        padding: 10px 0;
    }

    .about-us {
        padding: 30px 0;
    }

    .how-it-work {
        padding: 30px 0px;
    }

    .bg-yellow {
        padding-top: 30px;
    }

    .why-choose-us-four {
        padding: 30px 0px;
    }

    .why-choose-us-four .content-column {
        margin-bottom: 0;
    }

    .clients-section {
        padding: 30px 0px;
    }

    .projects-section {
        padding: 30px 0 !important;
    }

    .technical_seo {
        margin: 30px 0 !important;
    }

    .faq-sec {
        padding: 30px 0 !important;
    }

    .bg-one {
        padding: 30px 0 !important;
    }

    .how-work-item-content h3 {
        position: absolute;
        padding-left: 75px;
        top: 45px;
        font-size: 16px;
    }

    p.hero-pera-herd {
        font-size: 18px;
        line-height: 25px !important;
    }
}

@media (max-width: 767px) {
    .about-img .line-shape {
        display:none;
    }

    .about-img img {
        width: 100%;
    }

    .herotext h1 {
        font-size: 16px;
    }

    .tz-banner1__circle {
        display: none;
    }

    .title-box .title {
        font-size: 16px;
    }

    .tz-banner1__shape1 {
        display: none;
    }

    .how-work-item {
        padding: 25px;
    }

    .gradient_bg {
        width: 90%;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease,background 0.3s ease;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

.floating-buttons a.phone {
    background-color: #0b84ff;
}

@media (min-width: 768px) {
    .floating-buttons a.phone {
        display:none;
    }
}

.bgyellow {
    background-color: #eda921;
    font-weight: 600!important;
    font-size: 13px!important;
}

.industry {
    text-align: center;
    border-radius: 20px;
    margin: 15px 0;
    padding: 10px;
    position: relative;
    background: #ffe2a7;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 10px 20px rgb(0 0 0 / .19),0 6px 6px rgb(0 0 0 / 11%);
}

.industry a {
    font-weight: 700;
    font-size: 10px;
    padding: 5px 18px;
    display: block;
}

.content-review,.industry a {
    background: #fff;
    border-radius: 10px;
}

.wss-100 {
    width: 17%;
}

.ws-100,.wss-100,.wsss-100 {
    border-radius: 10px;
}

.text-dark {
    color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important;
}

.py-2 {
    padding-top: 0.5rem!important;
    padding-bottom: .5rem!important;
    margin-top: 20px;
}

.px-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
}

.accordion-container {
    width: 90%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.accordion-header {
    width: 100%;
    max-height: 100px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 0;
    outline: 0;
    font-family: Montserrat,sans-serif;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #eda921;
    color: #000;
}

.accordion-content {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    background-color: #fafafa;
    transition: max-height 0.3s;
}

.accordion-header.active + .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.5;
}

.icon {
    transition: transform 0.3s;
}

.active .icon {
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .row {
        justify-content:center;
    }

    .industry-sec .bgyellow {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .accordion-container {
        width:100%;
    }
}

.counter-section {
    position: relative;
}

.counter-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
}

.counter-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f4b223;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.counter-icon {
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    background: #fff6df;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4b223;
    font-size: 32px;
    margin-bottom: 18px;
    transition: .35s;
}

.counter-box:hover .counter-icon {
    background: #f4b223;
    color: #fff;
    transform: rotateY(180deg);
}

.counter-box h2 {
    font-size: 25px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.counter-box h5 {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}

.counter-line {
    width: 60px;
    height: 4px;
    background: #f4b223;
    border-radius: 30px;
    margin: auto;
    transition: .35s;
}

.counter-box:hover .counter-line {
    width: 100px;
}

@media(max-width: 767px) {
    .counter-box {
        padding:25px 20px;
        margin-bottom: 20px;
    }

    .counter-box h2 {
        font-size: 21px;
    }

    .counter-icon {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
}

.counter-icon i {
    font-size: 25px;
}

.ste-workflow {
    --workflow-primary: #f2ad18;
    --workflow-secondary: #d98d00;
    --workflow-dark: #111111;
    --workflow-border: #ead59d;
    position: relative;
    overflow: hidden;
    padding: 80px 0 20px;
    background: #fff;
    font-family: inherit;
}

.ste-workflow *,.ste-workflow *::before,.ste-workflow *::after {
    box-sizing: border-box;
}

.ste-workflow-container {
    width: min(1400px,calc(100% - 40px));
    margin: 0 auto;
}

.ste-workflow-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.ste-workflow-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    color: var(--workflow-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ste-workflow-subtitle::before,.ste-workflow-subtitle::after {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--workflow-primary);
}

.ste-workflow-heading h2 {
    position: relative;
    margin: 0 0 28px;
    color: var(--workflow-dark);
    font-size: clamp(36px,5vw,64px);
    font-weight: 800;
    line-height: 1.1;
}

.ste-workflow-heading h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 140px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg,var(--workflow-primary),var(--workflow-secondary));
    transform: translateX(-50%);
}

.ste-workflow-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #555;
    font-size: 18px;
    line-height: 1.65;
}

.ste-workflow-timeline {
    position: relative;
    min-height: 480px;
    padding: 0 15px;
}

.ste-workflow-line {
    position: absolute;
    top: 237px;
    right: 35px;
    left: 35px;
    z-index: 1;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg,var(--workflow-primary),var(--workflow-secondary),var(--workflow-primary));
}

.ste-workflow-line::before,.ste-workflow-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--workflow-primary);
    box-shadow: 0 0 15px rgba(245,168,0,0.65);
    transform: translateY(-50%);
}

.ste-workflow-line::before {
    left: -8px;
}

.ste-workflow-line::after {
    right: -8px;
}

.ste-workflow-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(7,minmax(0,1fr));
    gap: 20px;
}

.ste-workflow-step {
    position: relative;
    min-width: 0;
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.65s ease,transform 0.65s ease;
}

.ste-workflow-step.ste-visible {
    opacity: 1;
    transform: translateY(0);
}

.ste-workflow-step:nth-child(odd) {
    padding-bottom: 260px;
}

.ste-workflow-step:nth-child(even) {
    padding-top: 260px;
}

.ste-step-connector {
    position: absolute;
    left: 50%;
    width: 3px;
    background: linear-gradient(var(--workflow-primary),var(--workflow-secondary));
    transform: translateX(-50%);
}

.ste-workflow-step:nth-child(odd) .ste-step-connector {
    top: 150px;
    height: 89px;
}

.ste-workflow-step:nth-child(even) .ste-step-connector {
    top: 238px;
    height: 22px;
}

.ste-step-connector::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 17px;
    height: 17px;
    border: 4px solid var(--workflow-primary);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(245,168,0,0.12);
    transform: translateX(-50%);
}

.ste-workflow-step:nth-child(odd) .ste-step-connector::before {
    bottom: -8px;
}

.ste-workflow-step:nth-child(even) .ste-step-connector::before {
    top: -8px;
}

.ste-workflow-card {
    position: relative;
    display: flex;
    height: 150px;
    align-items: center;
    justify-content: center;
    padding: 58px 15px 20px;
    border: 1px solid var(--workflow-border);
    border-radius: 15px;
    background: #fffdf7;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    transition: transform 0.35s ease,box-shadow 0.35s ease,border-color 0.35s ease,background 0.35s ease;
}

.ste-workflow-card:hover {
    border-color: var(--workflow-primary);
    background: #fff9e9;
    box-shadow: 0 20px 42px rgba(0,0,0,0.15);
    transform: translateY(-10px);
}

.ste-workflow-icon {
    position: absolute;
    top: -38px;
    left: 50%;
    display: flex;
    width: 78px;
    height: 78px;
    align-items: center;
    justify-content: center;
    border: 6px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg,#f5b51b,#d98d00);
    color: #111;
    font-size: 29px;
    box-shadow: 0 9px 25px rgba(242,173,24,0.35);
    transform: translateX(-50%);
    transition: transform 0.35s ease,box-shadow 0.35s ease,background 0.35s ease;
}

.ste-workflow-card:hover .ste-workflow-icon {
    background: #111;
    color: #f5b51b;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transform: translateX(-50%) rotateY(180deg);
}

.ste-workflow-card h3 {
    position: relative;
    margin: 0;
    color: var(--workflow-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.ste-workflow-card h3::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 42px;
    height: 2px;
    background: var(--workflow-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.ste-workflow-card:hover h3::after {
    width: 70px;
}

@media (max-width: 1199px) {
    .ste-workflow-timeline {
        min-height:auto;
        padding-bottom: 30px;
    }

    .ste-workflow-line,.ste-step-connector {
        display: none;
    }

    .ste-workflow-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 28px;
    }

    .ste-workflow-step:nth-child(odd),.ste-workflow-step:nth-child(even) {
        padding: 0;
    }

    .ste-workflow-card {
        height: 180px;
        padding: 65px 25px 25px;
    }
}

@media (max-width: 767px) {
    .ste-workflow {
        padding-top:55px;
    }

    .ste-workflow-container {
        width: calc(100% - 28px);
    }

    .ste-workflow-heading {
        margin-bottom: 45px;
    }

    .ste-workflow-subtitle {
        gap: 10px;
        font-size: 13px;
    }

    .ste-workflow-subtitle::before,.ste-workflow-subtitle::after {
        width: 25px;
    }

    .ste-workflow-heading h2 {
        font-size: 36px;
    }

    .ste-workflow-heading p {
        font-size: 16px;
    }

    .ste-workflow-grid {
        position: relative;
        display: block;
        padding-left: 42px;
    }

    .ste-workflow-grid::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 15px;
        width: 3px;
        border-radius: 10px;
        background: linear-gradient(var(--workflow-primary),var(--workflow-secondary),var(--workflow-primary));
    }

    .ste-workflow-step {
        margin-bottom: 28px;
    }

    .ste-workflow-step:last-child {
        margin-bottom: 0;
    }

    .ste-workflow-step::before {
        content: "";
        position: absolute;
        top: 42px;
        left: -35px;
        width: 17px;
        height: 17px;
        border: 4px solid var(--workflow-primary);
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 0 0 5px rgba(245,168,0,0.13);
    }

    .ste-workflow-card {
        height: auto;
        min-height: 150px;
        justify-content: flex-start;
        padding: 72px 22px 25px;
        text-align: left;
    }

    .ste-workflow-icon {
        left: 22px;
        width: 68px;
        height: 68px;
        font-size: 25px;
        transform: none;
    }

    .ste-workflow-card:hover .ste-workflow-icon {
        transform: rotateY(180deg);
    }

    .ste-workflow-card h3::after {
        left: 0;
        transform: none;
    }
}

@media (prefers-reduced-motion:reduce) {
    .ste-workflow-step,.ste-workflow-card,.ste-workflow-icon {
        transition: none !important;
    }
}

.latest-blog-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(180deg,#f7f8fa 0%,#ffffff 100%);
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(18,32,47,0.08);
}

.blog-card:hover {
    transform: none;
    box-shadow: 0 14px 38px rgba(18,32,47,0.08);
}

.blog-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    background: #ececec;
}

.blog-image img {
    width: auto;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-card:hover .blog-image img {
    transform: none;
}

.blog-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.blog-meta span {
    position: relative;
}

.blog-meta span+span::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #eda921;
    border-radius: 50%;
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
}

.blog-content h3 {
    display: -webkit-box;
    min-height: 84px;
    overflow: hidden;
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 750;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-content h3 a {
    color: #151515;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #a66d00;
}

.blog-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 24px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
    color: #111;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.blog-read-more span {
    font-size: 18px;
}

.blog-read-more:hover {
    color: #a66d00;
}

.blog-read-more:hover span {
    transform: none;
}

.blog-view-all {
    margin-top: 38px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 205px;
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.view-all-btn span {
    font-size: 19px;
}

.view-all-btn:hover {
    background: #eda921;
    color: #111;
    transform: none;
}

.view-all-btn:hover span {
    transform: none;
}

@media (max-width: 991px) {
    .latest-blog-section {
        padding:70px 0;
    }

    .blog-content h3 {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .latest-blog-section {
        padding:55px 0;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 19px;
    }

    .blog-image {
        aspect-ratio: 16 / 10;
    }
}

.counter-stats-grid {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 18px;
}

.counter-card-col {
    min-width: 0;
}

.counter-stats-grid .about-us-box {
    position: relative;
    height: 100%;
    min-height: 170px;
    overflow: hidden;
    margin: 0;
    padding: 24px 20px;
    border: 1px solid rgba(237,169,33,0.45);
    border-radius: 22px;
    background: linear-gradient(145deg,#ffffff 0%,#fffaf0 100%);
    box-shadow: 0 12px 32px rgba(25,25,25,0.08);
}

.counter-stats-grid .about-us-box::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -50px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(237,169,33,0.09);
}

.counter-stats-grid .about-us-item {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: nowrap;
}

.counter-stats-grid .about-item-content {
    width: auto;
    min-width: 0;
    flex: 1;
}

.counter-stats-grid .about-item-content p {
    margin: 0;
    color: #242424;
    font-size: clamp(15px,1.1vw,15px);
    font-weight: 400;
    line-height: 1.35;
}

.counter-stats-grid .about-item-content p:first-child {
    margin-bottom: 12px;
    color: #111;
    font-size: clamp(22px,3vw,22px);
    font-weight: 800;
    line-height: 1;
}

.counter-stats-grid .about-us-item .icon-box {
    position: relative;
    display: flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(237,169,33,0.3);
    border-radius: 16px;
    background: #eda921;
    color: #111;
    box-shadow: 0 8px 20px rgba(237,169,33,0.24);
}

.counter-stats-grid .about-us-item .icon-box::before {
    display: none;
}

.counter-stats-grid .about-us-item .icon-box svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 1199.98px) {
    .counter-stats-grid {
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media (max-width: 767.98px) {
    .counter-stats-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap: 14px;
    }

    .counter-stats-grid .about-us-box {
        min-height: 145px;
        padding: 20px 16px;
    }

    .counter-stats-grid .about-us-item {
        align-items: flex-start;
    }

    .counter-stats-grid .about-us-item .icon-box {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }
}

@media (max-width: 479.98px) {
    .counter-stats-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
    }

    .counter-stats-grid .about-us-box {
        min-height:150px;
        padding:16px 12px;
        border-radius:18px;
    }

    .counter-stats-grid .about-us-item {
        flex-direction:column-reverse;
        align-items:flex-start;
        justify-content:space-between;
        gap:14px;
    }

    .counter-stats-grid .about-item-content p:first-child {
        margin-bottom:8px;
        font-size:22px;
    }

    .counter-stats-grid .about-item-content p {
        font-size:13px;
        line-height:1.3;
    }

    .counter-stats-grid .about-us-item .icon-box {
        width:42px;
        height:42px;
        flex-basis:42px;
    }

    .counter-stats-grid .about-us-item .icon-box svg {
        width:22px;
        height:22px;
    }
}

.case-study-showcase {
    position: relative;
    padding: 70px 0;
    background: #f7f7f7;
}

.case-study-showcase::before {
    display: none;
}

.case-study-heading {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: center;
}

.case-study-card {
    position: relative;
    z-index: 1;
    display: grid;
    max-width: 1000px;
    min-height: 210px;
    grid-template-columns: 290px minmax(0,1fr);
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #eda921;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.case-study-logo {
    position: relative;
    display: flex;
    min-height: 210px;
    align-items: center;
    justify-content: center;
    padding: 35px 30px;
    border-right: 1px solid #ededed;
    background: #fff;
}

.case-study-logo::after {
    display: none;
}

.case-study-logo img {
    position: relative;
    z-index: 1;
    width: min(230px,90%);
    height: auto;
    padding: 0;
    border-radius: 0;
    object-fit: contain;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px 42px;
}

.case-study-content p {
    margin: 0;
    color: #292929;
    font-size: clamp(15px,1.5vw,19px);
    line-height: 1.65;
}

.case-study-content strong {
    color: #111;
    font-weight: 800;
}

.case-study-content .case-study-name {
    margin-bottom: 14px;
}

.case-study-service-text a {
    color: #a66d00;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 8px;
}

@media (max-width: 767.98px) {
    .case-study-showcase {
        padding:60px 0;
    }

    .case-study-heading {
        margin-bottom: 24px;
    }

    .case-study-card {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .case-study-logo {
        min-height: 150px;
        padding: 30px 24px;
        border-right: 0;
        border-bottom: 1px solid #ededed;
    }

    .case-study-content {
        padding: 28px 24px 30px;
    }
}

@media (max-width: 399.98px) {
    .case-study-content p {
        font-size:15px;
    }
}

.counter-sec {
    overflow: visible;
    padding-bottom: 0 !important;
}

.counter-wrap-sec {
    background: #000;
}

.counter-sec .counter-section {
    position: relative;
    left: 50%;
    display: grid;
    width: 100vw;
    max-width: none;
    flex: 0 0 100vw;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: clamp(16px,2vw,30px);
    margin: 45px 0 0 -50vw;
    padding: 64px clamp(24px,7vw,120px);
    background: #eda921;
}

.counter-sec .counter-column {
    min-width: 0;
}

.counter-sec .counter-box {
    display: flex;
    height: 100%;
    min-height: 310px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 38px 24px;
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(104,70,0,0.16);
    transition: none;
}

.counter-sec .counter-box::before {
    display: none;
}

.counter-sec .counter-box:hover {
    transform: none;
    box-shadow: 0 18px 38px rgba(104,70,0,0.16);
}

.counter-sec .counter-icon {
    display: flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    margin: 0 0 28px;
    border: 1px solid #f7deb0;
    border-radius: 50%;
    background: #fff5df;
    color: #eda921;
    transition: none;
}

.counter-sec .counter-box:hover .counter-icon {
    background: #fff5df;
    color: #eda921;
    transform: none;
}

.counter-sec .counter-icon i {
    font-size: 30px;
}

.counter-sec .counter-box h2 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(34px,3vw,48px);
    font-weight: 800;
    line-height: 1;
}

.counter-sec .counter-box h5 {
    margin: 0 0 30px;
    color: #3e3e3e;
    font-size: clamp(15px,1.4vw,20px);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.counter-sec .counter-line {
    width: 64px;
    height: 4px;
    margin: 0;
    border-radius: 20px;
    background: #eda921;
    transition: none;
}

.counter-sec .counter-box:hover .counter-line {
    width: 64px;
}

@media (max-width: 991.98px) {
    .counter-sec .counter-section {
        grid-template-columns:repeat(2,minmax(0,1fr));
        padding: 48px 24px;
    }

    .counter-sec .counter-box {
        min-height: 270px;
    }
}

@media (max-width: 575.98px) {
    .counter-sec .counter-section {
        grid-template-columns:1fr;
        gap: 16px;
        margin-top: 32px;
        padding: 34px 16px;
    }

    .counter-sec .counter-box {
        min-height: 235px;
        padding: 30px 20px;
    }

    .counter-sec .counter-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
    }
}

.counter-sec .counter-section {
    position: static;
    left: auto;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 0;
    margin: 45px 0 50px;
    padding: 20px 0;
    border-radius: 4px;
    background: #000;
}

.counter-sec .counter-column {
    position: relative;
    display: flex;
    align-items: stretch;
}

.counter-sec .counter-column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: rgba(255,255,255,0.28);
}

.counter-sec .counter-box {
    width: 100%;
    min-height: 210px;
    padding: 32px 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.counter-sec .counter-box:hover {
    box-shadow: none;
}

.counter-sec .counter-icon {
    display: none;
}

.counter-sec .counter-box h2 {
    margin-bottom: 28px;
    color: #eda921;
    font-size: clamp(35px,4.2vw,35px);
    font-weight: 500;
    letter-spacing: -2px;
}

.counter-sec .counter-box h5 {
    margin: 0;
    color: #fff;
    font-size: clamp(16px,1.5vw,22px);
    font-weight: 500;
    line-height: 1.4;
}

.counter-sec .counter-line {
    display: none;
}

@media (max-width: 991.98px) {
    .counter-sec .counter-section {
        grid-template-columns:repeat(2,minmax(0,1fr));
        padding: 28px;
    }

    .counter-sec .counter-column:nth-child(2)::after {
        display: none;
    }

    .counter-sec .counter-column:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.22);
    }

    .counter-sec .counter-box {
        min-height: 210px;
    }
}

@media (max-width: 575.98px) {
    .counter-sec .counter-section {
        grid-template-columns:repeat(2,minmax(0,1fr));
        margin: 32px 0 35px;
        padding: 14px;
    }

    .counter-sec .counter-column:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.22);
    }

    .counter-sec .counter-column:nth-child(n+3) {
        border-bottom: 0;
    }

    .counter-sec .counter-column::after {
        display: block;
    }

    .counter-sec .counter-column:nth-child(even)::after {
        display: none;
    }

    .counter-sec .counter-box {
        min-height: 150px;
        padding: 24px 8px;
    }

    .counter-sec .counter-box h2 {
        margin-bottom: 14px;
        font-size: 28px;
        letter-spacing: -1px;
    }

    .counter-sec .counter-box h5 {
        font-size: 13px;
        line-height: 1.35;
    }
}

.site-footer {
    position: relative;
    padding: 50px 0 0;
    background: #000;
    color: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #eda921;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr 1.15fr;
    gap: 0;
    padding-bottom: 55px;
}

.footer-column {
    min-width: 0;
    padding: 0 34px;
    border-right: 1px solid rgba(255,255,255,0.1);
    background: transparent;
}

.footer-column:first-child {
    padding-left: 0;
}

.footer-column:last-child {
    padding-right: 0;
    border-right: 0;
}

.footer-title {
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.footer-title-line {
    width: 44px;
    height: 3px;
    margin: 13px 0 22px;
    border-radius: 10px;
    background: #eda921;
}

.footer-copy {
    margin: 0 0 24px;
    color: #c8d1d9;
    font-size: 14px;
    line-height: 1.75;
}

.footer-badge {
    display: flex;
    min-height: 52px;
    align-items: center;
}

.footer-map {
    position: relative;
    height: 220px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    background: #0c2944;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-map iframe[hidden],.map-loader[hidden] {
    display: none;
}

.map-loader {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 20px;
    border: 0;
    background: #0c2944;
    color: #fff;
    cursor: pointer;
}

.map-loader .svg-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eda921;
    color: #111;
}

.map-loader span {
    font-size: 14px;
    font-weight: 700;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact a {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    color: #dbe2e8;
    font-size: 13px;
    line-height: 1.65;
}

.footer-contact a:last-child {
    border-bottom: 0;
}

.footer-contact-icon {
    display: flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(237,169,33,0.14);
    color: #eda921;
}

.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    vertical-align: -0.125em;
    color: inherit;
}

.counter-icon .svg-icon {
    width: 30px;
    height: 30px;
}

.project-data .svg-icon {
    width: 18px;
    height: 18px;
}

.footer-contact-icon .svg-icon {
    width: 16px;
    height: 16px;
}

.map-loader .svg-icon {
    width: 22px;
    height: 22px;
}

.floating-buttons .svg-icon {
    width: 23px;
    height: 23px;
}

.footer-bottom {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aebbc5;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap: 35px 0;
    }

    .footer-contact {
        grid-column: 1 / -1;
        padding: 30px 0 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-right: 0;
    }

    .footer-column:nth-child(2) {
        padding-right: 0;
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top:50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-contact {
        grid-column: auto;
        padding-top: 30px;
    }

    .footer-column {
        padding: 0 0 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-column:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

.faq-section .title-heading {
    margin-bottom: 28px;
}

.faq-section .row:last-child {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 20px;
}

.faq-section .accordion-container {
    width: 100%;
    margin: 0;
}

.faq-section .accordion-item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #e4e6e8;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(14,30,45,0.06);
}

.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-header {
    display: flex;
    width: 100%;
    min-height: 72px;
    max-height: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #171717;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}

.faq-section .accordion-header:hover {
    background: #fff;
    color: #171717;
}

.faq-section .accordion-header.active {
    background: #000;
    color: #fff;
}

.faq-section .accordion-header .icon {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4f4f4;
    color: #111;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: none;
}

.faq-section .accordion-header.active .icon {
    background: #eda921;
    color: #111;
    transform: rotate(45deg);
}

.faq-section .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    background: #fff;
    transition: none;
}

.faq-section .accordion-content p {
    margin: 0;
    padding: 22px 0 24px;
    color: #505860;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .faq-section .accordion-header {
        min-height:64px;
        padding: 16px;
        font-size: 14px;
    }

    .faq-section .accordion-header .icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .faq-section .accordion-content {
        padding: 0 18px;
    }

    .faq-section .accordion-content p {
        padding: 18px 0 20px;
        font-size: 13px;
    }
}

.projects-swiper {
    position: relative;
    padding: 0 46px;
}

.projects-swiper .swiper-wrapper {
    align-items: stretch;
}

.projects-swiper .swiper-slide {
    height: auto;
}

.projects-swiper .project-1 {
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    margin-bottom: 0;
}

.projects-swiper .project-data {
    margin-top: auto;
}

.projects-swiper .swiper-button-prev,.projects-swiper .swiper-button-next {
    top: calc(50% - 27px);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
}

.projects-swiper .swiper-button-prev {
    left: 0;
}

.projects-swiper .swiper-button-next {
    right: 0;
}

.projects-swiper .swiper-button-prev::after,.projects-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 800;
}

.projects-swiper.swiper-horizontal>.swiper-pagination-bullets {
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 30px;
    line-height: 1;
}

.projects-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #111;
    opacity: 0.3;
}

.projects-swiper .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 10px;
    background: #111;
    opacity: 1;
}

.projects-section .all-projects-btn {
    margin-top: 34px;
}

@media (max-width: 767.98px) {
    .projects-swiper {
        padding:0;
    }

    .projects-swiper.swiper-horizontal>.swiper-pagination-bullets {
        margin-top: 24px;
    }

    .projects-section .all-projects-btn {
        margin-top: 28px;
    }

    .projects-swiper .swiper-button-prev,.projects-swiper .swiper-button-next {
        display: none;
    }
}

.reviews-location-section {
    padding: 30px 0;
    background: #fff;
}

.reviews-location-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 32px;
    align-items: stretch;
}

.google-reviews-column,.location-map-column {
    min-width: 0;
    padding: 0;
    background: transparent;
}

.google-reviews-column .title-heading,.location-map-column .title-heading {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
}

.custom-reviews-slider {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f3f3;
}

.custom-reviews-slider .review-slide {
    position: relative;
    display: flex;
    min-height: 400px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 36px 38px 66px;
    background: #f3f3f3;
    color: #222;
}

.custom-reviews-slider .review-slide::before {
    display: none;
}

.review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.review-card-head strong {
    display: block;
}

.review-card-head strong {
    color: #111;
    font-size: 19px;
    font-weight: 750;
}

.review-google-logo {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    object-fit: contain;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.review-stars {
    margin: 0;
    color: #eda921;
    font-size: 22px;
    letter-spacing: 2px;
}

.review-stars span {
    opacity: 0.35;
}

.review-slide>p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #171717;
    line-height: 1.6;
}

.custom-reviews-pagination {
    position: absolute;
    right: auto;
    bottom: 24px !important;
    left: 38px !important;
    z-index: 5;
    width: auto !important;
}

.custom-reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #777;
    opacity: 0.25;
}

.custom-reviews-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
    background: #eda921;
    opacity: 1;
}

.custom-reviews-prev,.custom-reviews-next {
    position: absolute;
    right: 38px;
    bottom: 18px;
    z-index: 6;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dedede;
    border-radius: 50%;
    background: #fff;
    color: #171717;
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease,background-color 0.2s ease,border-color 0.2s ease;
}

.custom-reviews-prev {
    right: 82px;
}

.custom-reviews-prev:hover,.custom-reviews-next:hover {
    border-color: #eda921;
    background: #eda921;
    color: #111;
}

.custom-reviews-prev.swiper-button-disabled,.custom-reviews-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

.location-map-column {
    display: flex;
    flex-direction: column;
}

.location-map-frame {
    position: relative;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    background: #eceff1;
}

.location-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

@media (max-width: 991.98px) {
    .reviews-location-grid {
        grid-template-columns:1fr;
        gap: 45px;
    }
}

@media (max-width: 767.98px) {
    .reviews-location-section {
        padding:55px 0;
    }

    .custom-reviews-slider,.custom-reviews-slider .review-slide {
        min-height: 330px;
    }

    .custom-reviews-slider .review-slide {
        padding: 30px 24px 58px;
    }

    .custom-reviews-pagination {
        left: 26px !important;
    }

    .custom-reviews-next {
        right: 24px;
    }

    .custom-reviews-prev {
        right: 68px;
    }

    .location-map-frame,.location-map-frame iframe {
        min-height: 330px;
    }
}

   @media screen and (max-width: 768px) {
       .col-xs-6 {
           width: 50% !important;
       }
              .col-xs-4 {
           width: 33% !important;
       }
   }
   .portfolio-item {
   flex: 0 0 calc(33.333% - 12px);
   height: 320px;
   border-color: #b12bb5 !important;
}

.portfolio-image {
   display: block;
   cursor: pointer;
   transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
   transform: scale(1.03);
}

#imageModal .modal-body {
   max-height: 90vh;
}

#imageModal #modalImage {
   max-width: 100%;
   max-height: 90vh;
   object-fit: contain;
}

@media (max-width: 991px) {
   .portfolio-item {
      flex: 0 0 calc(50% - 10px);
      height: 280px;
   }
}

@media (max-width: 575px) {
   .portfolio-item {
      flex: 0 0 100%;
      height: auto;
   }

   .portfolio-item img {
      height: auto !important;
   }
}

.local-seo-comparison-section {
   background: #ffffff;
}

.comparison-label,
.cta-small-title {
   background: #f5b335;
   color: #111111;
   padding: 7px 14px;
   border-radius: 7px;
   font-size: 14px;
   font-weight: 600;
}

/*.comparison-title {*/
/*   color: #111111;*/
/*   font-size: 38px;*/
/*   font-weight: 700;*/
/*   line-height: 1.25;*/
/*}*/

.comparison-title span {
   color: #1f63d5;
}

.comparison-intro {
   max-width: 100%;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
   color: #444444;
   font-size: 16px;
   line-height: 1.8;
}

.comparison-table-wrapper {
   overflow: hidden;
   border: 1px solid #e4e4e4;
   border-radius: 16px;
   box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.comparison-table {
   min-width: 950px;
}

.comparison-table thead th {
   background: #111111;
   color: #ffffff;
   padding: 22px 20px;
   border: 0;
   font-size: 17px;
   font-weight: 700;
   text-align: center;
}

.comparison-table thead th:nth-child(2) {
   background: #f5b335;
   color: #111111;
}
.comparison-table thead th:nth-child(4) {
   background: #f5b335;
   color: #111111;
}

.comparison-table tbody td {
   padding: 20px;
   color: #000000;
   border-color: #e5e5e5;
   font-size: 15px;
   line-height: 1.6;
   vertical-align: top;
}

.comparison-table tbody td:first-child {
   /*width: 24%;*/
   background: #f7f8fa;
   color: #111111;
}

.comparison-table tbody td:nth-child(2) {
   /*width: 40%;*/
   background: #fffaf0;
}

.comparison-table tbody td:nth-child(3) {
   /*width: 36%;*/
   background: #ffffff;
}

.comparison-table tbody td:nth-child(4) {
   /*width: 40%;*/
   background: #fffaf0;
}

.table-check,
.table-cross {
   display: inline-flex;
   width: 25px;
   height: 25px;
   align-items: center;
   justify-content: center;
   margin-right: 7px;
   border-radius: 50%;
   font-size: 15px;
   font-weight: 700;
}

.table-check {
   background: #e7f7ec;
   color: #159447;
}

.table-cross {
   background: #fdeaea;
   color: #d93636;
}

.comparison-cta {
   background: #f4f6f9;
   padding: 35px 40px;
   border-radius: 18px;
   border-left: 5px solid #f5b335;
}

.comparison-cta h3 {
   color: #111111;
   font-size: 28px;
   font-weight: 700;
   line-height: 1.35;
}

.comparison-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 52px;
   padding: 12px 28px;
   background: #f5b335;
   color: #111111;
   border: 2px solid #f5b335;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 700;
   text-decoration: none;
   transition: 0.3s ease;
}

.comparison-btn:hover {
   background: #111111;
   border-color: #111111;
   color: #ffffff;
}

@media (max-width: 991px) {
   /*.comparison-title {*/
   /*   font-size: 32px;*/
   /*}*/

   .comparison-cta {
      text-align: center;
      padding: 30px;
   }

   .comparison-cta h3 {
      font-size: 24px;
   }
}

@media (max-width: 575px) {
   .local-seo-comparison-section {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
   }

   /*.comparison-title {*/
   /*   font-size: 27px;*/
   /*}*/

   .comparison-intro {
      font-size: 15px;
      text-align: left;
   }

   .comparison-table thead th,
   .comparison-table tbody td {
      padding: 15px;
      font-size: 14px;
   }

   .comparison-cta {
      padding: 25px 20px;
   }

   .comparison-cta h3 {
      font-size: 22px;
   }

   .comparison-btn {
      width: 100%;
   }
}
.latest-blogs__heading span,.review-subtitle{font-weight:700;text-transform:uppercase;letter-spacing:1px}.review-subtitle{display:block;margin-bottom:6px;color:#e9a719;font-size:15px}.review-card{padding:22px;background:#fff;border:1px solid #eadfc9;box-shadow:0 8px 22px rgba(0,0,0,.07);transition:transform .3s,box-shadow .3s}.review-card:hover{transform:translateY(-5px);box-shadow:0 14px 30px rgba(0,0,0,.12)}.review-avatar{display:flex;flex:0 0 46px;align-items:center;justify-content:center;width:46px;height:46px;overflow:hidden;color:#fff;background:#111;border-radius:50%;font-size:18px;font-weight:600}.review-name{margin:0;font-size:15px;font-weight:600}.review-stars{color:#f5a900;font-size:15px;line-height:1.2;letter-spacing:1px}.review-card>p{color:#222;font-size:14px;line-height:1.6}.bg-purple{background:#7b2cbf}.bg-blue{background:#0995aa}.bg-green{background:#005c4b}@media screen and (max-width:768px){.new-col .col-lg-3{flex:0 0 100%!important;width:100%!important;margin-bottom:25px}}.latest-blogs{padding:40px 20px;background:#fff}.latest-blogs__inner{width:100%;max-width:1200px;margin:0 auto}.latest-blogs__heading{max-width:700px;margin:0 auto 40px;text-align:center}.latest-blogs__heading span{display:inline-block;margin-bottom:8px;color:#e9a719;font-size:15px}.latest-blogs__heading p{margin:0;color:#555;font-size:16px;line-height:1.7}.latest-blogs__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.review-card a{text-decoration:none !important;}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #f7f3eb;
    border: 1px solid #eee3ce;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.blog-card__image {
    display: block;
    overflow: hidden;
    background: #eeeeee;
}

.blog-card__image img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.blog-card__date {
    margin-bottom: 10px;
    color: #8b8b8b;
    font-size: 14px;
    line-height: 1.4;
}

.blog-card__content h3 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 600;
}

.blog-card__content h3 a {
    color: #111111;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card__content h3 a:hover {
    color: #e9a719;
}

.blog-card__content p {
    margin: 0 0 20px;
    color: #444444;
    font-size: 15px;
    line-height: 1.65;
}

.blog-card__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding: 10px 16px;
    color: #000000;
    background: #f2ad1c;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.blog-card__button:hover {
    color: #ffffff !important;
    background: #000000;
}

.blog-card__button span {
    transition: transform 0.25s ease;
}

.blog-card__button:hover span {
    transform: translateX(4px);
}

@media only screen and (max-width: 991px) {
    .latest-blogs {
        padding: 65px 20px;
    }

    .latest-blogs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .latest-blogs {
        padding: 50px 15px;
    }

    .latest-blogs__grid {
        grid-template-columns: 1fr;
    }

    .latest-blogs__heading {
        margin-bottom: 30px;
    }

    .blog-card__image img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .blog-card__content {
        padding: 20px;
    }

    .blog-card__content h3 {
        font-size: 20px;
    }
}
