html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 105px;
}

#header {
    background-color: #ffffff;
    padding: 14px 0px;
    border-bottom: 1px solid #0000001c;
}

#header .nav-item .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    transition: all linear 0.4s;
}

#header .nav-item .nav-link:hover {
    color: #fa9d1f;
}

header.sticky {
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    padding: 0px;
}

#header .dropdown a {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
}

#header .dropdown a i {
    font-size: 18px;
    margin: 2px 0px 0px 5px;
}

#header .dropdown-nav li a {
    font-size: 16px !important;
    padding: 4px;
}

/* Dropdown initially hidden */
#header .dropdown-nav {
    width: 300px;
    padding: 10px;
    opacity: 0;
    transform: translateY(-2rem);
    transition: transform .3s cubic-bezier(0.88, -0.72, 0, 1), opacity .5s ease-in-out;
    list-style: none;
    margin-top: -2px;
    position: absolute;
    z-index: 1000; 
    border-radius: 2px;
    background: #fff;
    pointer-events: none; 
}

/* Show dropdown on li hover */
#header .dropdown:hover .dropdown-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.apply_btn {
    font-size: 16px;
    font-weight: 500;
    color: #fdfbff;
    background: #f7940d;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.6s all ease;
    width: fit-content;
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.apply_btn:hover {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #fff;
}

/* hero content */
canvas {
    height: 100vh;
    position: relative;
    position: absolute;
    z-index: 1;
    overflow: hidden;
}

.hero-section {
    background-image: url(..//img/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-row {
    position: relative;
    z-index: 2;
}

.hero_img {
    position: relative;
    z-index: 2;
    width: 100%
}

.hero_img img {
    width: 100%;
    height: 100%;
}

.hero-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #e18100;
}

.typing {
    color: #fa9d1f;
}

/* feature start */

.feature-area .single-feature-box {
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 30px 20px 30px;
    gap: 18px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.feature-area .single-feature-box:hover {
    background: #f7f4f9;
}

.feature-area .feature-content h4 {
    font-size: 24px;
    font-weight: 600;
}

.feature-area .feature-content p {
    margin: 10px 0 0;
    font-size: 16px;
}

.feature-area .single-feature-shape {
    position: absolute;
    right: -89px;
    bottom: -59px;
    z-index: -1;
    transition: 0.5s;
}

.feature-area .single-feature-box:hover .single-feature-shape {
    right: -3px;
    bottom: 0;
}

.feature-icon img {
    width: 75px !important;
}

/* about area start */

.about-area {
    background: #fff;
    border-bottom: 1px solid #00000021;
}

.about-area .about-thumb img {
    width: 100%;
    border-radius: 15px;
}

.section-title h4 {
    font-size: 18px;
    color: #fa9d1f;
}

.section-desc p span {
    height: 5px;
    width: 20px;
    color: red;
}

.single-about-box {
    padding-bottom: 20px;
    margin-top: 25px;
}

.section-title h1 {
    font-size: 42px;
    font-weight: 600;
    margin-top: 10px;
}

.section-desc {
    font-size: 17px;
    text-align: justify;
}

.ai-driven {
    margin-left: 30px;
}

.ai-driven img {
    width: 100%;
    border-radius: 15px;
}

/* marketing-strategies-wrapper start */

.marketing-strategies-wrapper {
    background-color: #fff;
    border-bottom: 1px solid #00000021;
}

.marketing-strategies-img img {
    width: 100%;
}

.skill-bars {
    background: #fff;
    border-radius: 10px;
}

.skill-bars .bar {
    margin: 20px 0;
}

.skill-bars .bar:first-child {
    margin-top: 0px;
}

.skill-bars .bar .info {
    margin-bottom: 5px;
}

.skill-bars .bar .info span {
    font-weight: 600;
    font-size: 18px;
    opacity: 0;
    color: #000;
    animation: showText 0.5s 1s linear forwards;
}

@keyframes showText {
    100% {
        opacity: 1;
    }
}

.skill-bars .bar .progress-line {
    height: 10px;
    width: 100%;
    background: #f9ad0924;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 10px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05),
        0 1px rgba(255, 255, 255, 0.8);
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.bar .progress-line span {
    height: 100%;
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(-45deg, #9034a7 20%, #fa9d1f 50%, #fa9d1f 100%);
    transform: scaleX(0);
    animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line.bar-1 span {
    width: 90%;
}

.bar .progress-line.bar-2 span {
    width: 75%;
}

.bar .progress-line.bar-3 span {
    width: 85%;
}

.bar .progress-line.bar-4 span {
    width: 80%;
}

.progress-line span::before {
    position: absolute;
    content: "";
    top: -10px;
    right: 0;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-top-color: #000;
    opacity: 0;
    animation: showText2 0.5s 1.5s linear forwards;
}

.progress-line span::after {
    position: absolute;
    top: -28px;
    right: 0;
    font-weight: 500;
    background: #000;
    color: #fff;
    padding: 1px 8px;
    font-size: 12px;
    border-radius: 3px;
    opacity: 0;
    animation: showText2 0.5s 1.5s linear forwards;
}

@keyframes showText2 {
    100% {
        opacity: 1;
    }
}

.progress-line.bar-1 span::after {
    content: "90%";
}

.progress-line.bar-2 span::after {
    content: "75%";
}

.progress-line.bar-3 span::after {
    content: "85%";
}

.progress-line.bar-4 span::after {
    content: "80%";
}

/* marketing-strategies-wrapper end */


/* services start */
.our-services {
    background-image: url(..//img/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    position: relative;
}

/* counter section start */

.counter-section {
    background-image: url(..//img/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.counter-box {
    padding: 25px;
    border-radius: 10px;
    background: transparent;
    transition: all linear 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 100%;
}

.odometer {
    font-size: 60px;
    font-weight: 700;
    color: #e18100;
    line-height: 1;
}

.counter-box span {
    font-size: 60px;
    font-weight: 700;
    color: #e18100;
}

.tag {
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #f7940d69;
}

.counter-box h5 {
    font-size: 19px;
    font-weight: 500;
    text-align: center;
}

/* counter section end */

.get-in-touch {
    background-color: #fff;
}

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


/* marquee start */
.marquee-section {
    background-color: #f6ebe6;
    border-top: 1px solid #00000021;
}

:root {
    --marquee-width: 100%;
    --marquee-height: 120px;
    --marquee-elements-displayed: 6;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    background-color: transparent;
    overflow: hidden;
    position: relative;
}

.marquee::before,
.marquee::after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
    padding: 0;
    margin: 0;
}

.marquee.reverse .marquee-content {
    animation: scrolling-reverse var(--marquee-animation-duration) linear infinite;
}

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

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

@keyframes scrolling-reverse {
    0% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }

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

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    height: 85%;
    padding: 1rem;
    border: 1px solid #12121133;
    margin: 10px;
    border-radius: 10px;
    background: #fff;
}

.marquee-content li img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;

}

@media (max-width: 768px) {
    :root {
        --marquee-elements-displayed: 3;
    }

    .marquee::before,
    .marquee::after {
        width: 5rem;
    }
}

/* .why-choose-us {
    background-color: #f5f3ef;
} */

.accordion-item {
    border: 1px solid #dcdfe5 !important;
    margin: 10px;
    border-radius: 10px;
    background: transparent;
}

.accordion-button {
    padding: 15px !important;
}

.accordion-body {
    background: #fff;
    font-size: 17px;
}


/* testimonials_section start */

.testimonials-section {
    border-bottom: 1px solid #00000021;
    background-image: url(..//img/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.review_box {
    background: #ffffff;
    padding: 30px 35px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.review_box::after {
    left: 45px !important;
}

.review_box::before,
.review_box::after {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 90px;
    margin: auto;
    width: 20px;
    content: '';
    background: url(../img/double-quote.png);
    height: 40px;
    background-size: cover;
}

.review_img {
    position: absolute;
    left: 0;
    top: -48px;
    right: 0;
    justify-content: center;
    display: flex;
    width: 85px;
    height: 85px;
    background: #fff;
    margin: auto;
    border-radius: 50%;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.review_img img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
}

.review_content {
    margin-top: 45px;
}

.review_content h4 {
    font-weight: 600;
    font-size: 22px;
}

.review_content p {
    font-size: 16px;
    margin-top: 10px;
}


/* testimonials_section end */


/* footer start */

.footer {
    background: #181e23;
}

.footer-quick-links {
    margin-left: 30px;
}

.footer-quick-links h4 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #f7940d;
    margin-bottom: 30px;
}

.footer-quick-links h4::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    bottom: -16px;
    left: -2px;
}

.footer-quick-links h4::after {
    content: '';
    position: absolute;
    border-bottom: 5px dotted #ffffff;
    width: 30px;
    bottom: -16px;
    left: 45px;
}

.footer-quick-links ul li a {
    font-size: 16px;
}

.footer-quick-links ul li a i {
    font-size: 14px;
    margin-right: 10px;
}

.footer-quick-links ul li a:hover {
    color: #e18100 !important;
}

/* .footer-cta {
    border-top: 1px solid #373636;
} */

.single-cta i {
    color: #f5930d;
    font-size: 36px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text span a {
    color: #757575;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 16px;
    font-weight: 500;
}

/* footer end */

/* breadcrumb start */

.breadcrumb-section {
    background-image: url(..//img/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.breadcrumb-nav {
    font-size: 16px;
    color: #666;
}

.breadcrumb-nav a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #e18100;
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-nav .current {
    color: #333;
    font-weight: 500;
}

/* breadcrumb end */


.inner-box {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-bottom: 50px;
}

.inner-box .icon-box {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 4px;
    width: 75px;
    height: 75px;
    background: #e6e9f3;
    border-radius: 50%;
    z-index: 1;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-box p {
    width: 92% !important;
}

.inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: #f6940d;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    width: 75px;
    height: 75px;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    transform: scale(0, 0);
    z-index: -1;
    transition: all 500ms ease;
}

.icon-box2 {
    width: 50px !important;
    height: 50px !important;
}

.inner-box:hover .icon-box2:before {
    transform: scale(0) !important;
}

.inner-box h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.inner-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.inner-box:hover .icon-box:before {
    transform: scale(1, 1);
}

.inner-box .icon-box img {
    max-width: 50px;
}

.abouts {
    list-style-type: none;
    margin-left: 0px;
    padding-left: 0px;
}

.abouts li {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 500;
    color: #000000cf;
    display: flex;
    align-items: center;
    gap: 5px;
}

.abouts li img {
    max-width: 30px;
    margin-right: 5px;
}

/* 
.have-questions-section{
    background-image: url(..//img/questions.jpg);
     background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
} */


/* our process start */
.our-process-section {
    background-color: #f0fafe;
}

.how-it-wokrs-list {
    position: relative;
}

.how-it-wokrs-list li::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: #e6e6e6;
    top: 0;
}

.how-it-wokrs-list li:first-child::before,
.how-it-wokrs-list li:last-child::after {
    width: 0;
}

.how-it-wokrs-list li .how-right {
    position: relative;
}

.how-it-wokrs-list li::after {
    content: "";
    position: absolute;
    height: 50%;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: #e6e6e6;
    bottom: 0;
}

.how-it-wokrs-list li .how-left .process-box,
.how-it-wokrs-list li .how-right .process-box {
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.process-box h4 {
    font-size: 22px;
    font-weight: 600;
}
.process-box p{
    margin-bottom: 0px;
}

.how-it-wokrs-list li:nth-child(even) {
    flex-direction: row-reverse;
}

.how-it-wokrs-list li {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
}

.how-it-wokrs-list .how-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 80px 0 0;
    position: relative;
}

.how-it-wokrs-list li .how-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 0 80px;
}

.how-it-wokrs-list li figure {
    position: absolute;
    top: 50%;
    right: -33px;
    width: 65px;
    height: 65px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #f79f2c;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 7px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.how-it-wokrs-list li:nth-child(even) figure {
    left: -33px
}

.how-it-wokrs-list li .how-left figcaption h4,
.how-it-wokrs-list li .how-right figcaption h4 {
    font-size: 18px;
    color: #322153;
    padding-bottom: 10px;
    font-weight: 700;
}

.how-it-wokrs-list li .how-left figcaption p,
.how-it-wokrs-list li .how-right figcaption p {
    color: #636678;
    font-size: 14px;
    line-height: 20px
}

/* our process end */

.Strategy {
    background: #d6ecf2;
}

.timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 50px;
    border-left: 2px dotted #f7940d;
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: -80px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #acdbf9;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.timeline-icon img {
    max-width: 40px;
}

.timeline-content {
    margin-left: 40px;
}

.timeline-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.Frontend {
    display: flex;
    flex-flow: column;
    padding: 10px !important;
    height: 100%;
}

.Frontend h4 {
    font-size: 20px;
}

.Frontend img {
    max-width: 100px;
    margin: auto;
}


.Our_premius_services {
    background-color: #f0f3f9;
    padding: 60px 0px;
}

.premimius_services {
    background: #fff;
    padding: 26px 15px;
    display: flex;
    align-items: center;
    flex-flow: column;
    height: 100%;
    gap: 10px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.premimius_services img {
    max-width: 60px;
}

.premimius_services h6 {
    font-size: 22px;
    font-weight: 600;
    padding-top: 10px;
}

.premimius_services p {
    text-align: center;
}


/*----------------------------------------*/
/*  10. Blog Area
/*----------------------------------------*/
.blog-content {
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
}

.blog-content a h4 {
    font-size: 21px;
    color: #2a354e;
    line-height: 30px;
    transition: 0.4s;
}

.home-blog .blog-content a h4 {
    margin-bottom: 0px;
}

.admin-type i,
.date-type i,
.comments-type i {
    color: #fa9d1f;
    margin-right: 5px;
}

.single-blog:hover .blog-content::after {
    transition: 0.4s;
    opacity: 1;
    top: 0px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.blog-content p {
    line-height: 28px;
    transition: 0.4s;
}

.blog-content a h4:hover {
    color: #0c54ad;
    transition: 0.4s;
}

.blog-meta span {
    color: #757b82;
    font-size: 14px;
    font-weight: 400;
    padding-right: 10px;
}

.admin-type img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid #0c54ad;
    margin-right: 10px;
}

.single-blog {
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 100%;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-btn {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s ease 0s;
    border: 1px solid #fa9d1f;
    background: #fa9d1f;
    padding: 7px 24px;
    margin-top: 10px;
    border-radius: 3px;
}

.blog-btn:hover {
    color: #fa9d1f;
    background: transparent;
    transition: all 0.4s ease 0s;
}






@media(max-width:1024px) {
    .display-3 {
        font-size: 45px;
    }

    .display-3 br {
        display: none;
    }

    .lead {
        font-size: 16px;
    }

    .section-title h4 {
        font-size: 18px;
        color: #fa9d1f;
    }

    .feature-area .single-feature-box {
        display: flex;
        flex-flow: column;
        justify-content: center;
        text-align: center;
    }

    .section-title h1 {
        font-size: 34px;
        font-weight: 600;
        margin-top: 10px;
    }

    .breadcrumb-title {
        font-size: 35px;
    }

    .section-title p br {
        display: none;
    }

    .right {
        width: 90%;
        float: left;
        margin-top: 15px;
    }

}

@media(max-width:991px) {
    .single-feature-box {
        margin-top: 20px;
    }

    .section-title br {
        display: none;
    }

    .navbar-expand-lg .navbar-nav {
        padding: 1rem 1rem;
        /* background: #fa9d1f; */
    }

    .navbar-toggler .navbar-toggler-default {
        display: -ms-flexbox;
        display: flex;
        color: #e18100;
    }

    .navbar-toggler[aria-expanded=true] .navbar-toggler-toggled {
        display: -ms-flexbox;
        display: flex;
        color: #fa9d1f;
    }

    .ai-driven {
        margin-left: 0px;
    }
}

@media(max-width:768px) {

    .about-area .about-thumb img {
        width: 100%;
        margin-left: 0px;
        border-radius: 15px;
    }

    .about-area .about-thumb {
        margin-left: 0px !important;
    }

    .inner-box {
        position: relative;
        display: block;
        padding-left: 75px;
        margin-bottom: 50px;
        margin-top: 20px;
    }

    .how-it-wokrs-list li .how-left .process-box,
    .how-it-wokrs-list li .how-right .process-box {
        width: 100%;
        position: relative;
        z-index: 2;
        margin-bottom: 60px;
    }

    .how-it-wokrs-list li figure {
        position: absolute;
        top: -4%;
        left: 40%;
        height: 65px;
        transform: translateY(-50%);
        border-radius: 50%;
        background: #f79f2c;
    }

    .how-it-wokrs-list li:nth-child(even) figure {
        left: 40%;
    }

    .how-it-wokrs-list li {
        display: inherit;
        align-items: center;
        padding-bottom: 20px;
        position: relative;
    }

    .how-it-wokrs-list .how-left {
        flex: 0 0 50%;
        max-width: 100%;
        padding: 0px;
        position: relative;
    }

    .how-it-wokrs-list li .how-right {
        flex: 0 0 50%;
        max-width: 100%;
        padding: 0px;
    }

    .counter-box span {
        font-size: 50px;
    }

    .Frontend {
        margin-bottom: 15px !important;
        height: inherit;
    }
}


@media(max-width:425px) {

    .display-3 {
        font-size: 36px;
    }

    .timeline-content h4 {
        font-size: 22px;
    }

    .section-title h1 {
        font-size: 27px;
        font-weight: 600;
        margin-top: 10px;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .card-box h6 {
        font-size: 20px;
        margin-top: 18px;
    }

    #faq .card-body {
        padding: 0px !important;
    }

    .footer-quick-links {
        margin-left: 0px;
        margin-top: 20px;
    }

    p {
        font-size: 16px;
    }

    .section-desc {
        font-size: 16px;
        text-align: justify;
    }

    .section-title h4 {
        font-size: 16px;
        color: #fa9d1f;
    }

    .content-space-2 {
        padding: 40px 0px !important;
    }

    .hero-row {
        padding: 10px;
    }

    .social-icon-last ul {
        text-align: center;
    }

    .copyright {
        text-align: center;
    }

    .single-cta i {
        color: #f5930d;
        font-size: 30px;
    }

    .cta-text h4 {
        color: #fff;
        font-size: 18px;
    }

    .cta-text {
        margin-bottom: 15px;
    }
    .custom-contact-form .form-row {
     display: block !important; 
    gap: 20px;
}
}

.custom-contact-form .form-row {
    display: flex;
    gap: 20px;
}

.custom-contact-form .form-col {
    flex: 1;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.custom-contact-form textarea {
    height: 110px;
    resize: vertical;
}

.custom-contact-form .btn-orange {
    background-color: #f59100;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-contact-form .btn-orange:hover {
    background-color: #e07b00;
}

.custom-contact-form .privacy-text {
    font-size: 16px;
    color: #666;
    text-align: center;
    
}
