@charset "UTF-8";

/********** Varible css **********/
:root {
    --font-family: "Poppins", sans-serif;
    --bg-white: #fff;
    --primary: #EF8333;
    --secondary: #F8F8FB;
    --text-gray: #788391;
    --text-white: #fff;
    --text-black: #000;
    --border: #d3d3d3;
    --btn-hover: #cf6312;
    --light-primary: #e58b3e26;
    --footer-bg: #2C2C2C;
}

/********** Globle css **********/
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}

*:focus {
    outline: 0;
    box-shadow: none !important;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-black);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

textarea {
    overflow: hidden;
    resize: none;
}

iframe {
    border: none !important;
    display: block;
    width: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-lightblack);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 100px;
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
}

/* ===== Inner Cursor ===== */
.mouse-cursor.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--primary);
    transition:
        width 0.3s ease-in-out,
        height 0.3s ease-in-out,
        margin 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
}

.mouse-cursor.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* ===== Outer Cursor ===== */
.mouse-cursor.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    transition: all 0.08s ease-out;
}

.mouse-cursor.cursor-outer.cursor-hover {
    opacity: 0;
}

/********** Header Css ************/
.navbar {
    background-color: var(--bg-white);
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    position: relative;
    color: var(--text-black);
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::before,
.nav-link::after {
    content: '';
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
    position: absolute;
}

.nav-link.active::before,
.nav-link:hover::before {
    content: '[ ';
    opacity: 1;
    left: -5px;
}

.nav-link.active::after,
.nav-link:hover::after {
    content: ' ]';
    opacity: 1;
    right: -5px;
}

.nav-link::before {
    left: 0;
}

.nav-link::after {
    right: 0;
}

.contact-btn {
    background-color: var(--primary);
    color: #fff !important;
    border-radius: 25px;
    padding: 6px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--btn-hover);
}

.btn:active {
    background: var(--btn-hover) !important;
    color: var(--text-white) !important;
}

/**** Mobile Navbar ****/
.offcanvas-body .nav-link {
    color: var(--text-black);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid var(--border);
}

.offcanvas-body .nav-link:hover {
    color: var(--primary);
}

.offcanvas-body .contact-btn {
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.nav-link:hover::before {
    left: -5px;
}

.nav-link:hover::after {
    right: -5px;
}

/********** Hero Css ************/
.hero-bg {
    background: url("../images/herobg.png") no-repeat center/cover;
    padding: 115px 0;
}

.hero-left p:first-child {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 600;
}

.hero-left h1 {
    font-size: 70px;
    font-weight: 700;
    margin: 15px 0 40px;
    line-height: 90px;
}

.hero-left h1 span {
    color: var(--primary);
    position: relative;
}

.underline-animation {
    position: absolute !important;
    left: 0;
    width: 100%;
    height: 3px;
    bottom: 50px;
}

.underline-animation svg {
    width: 100%;
    height: 12px;
}

.underline-animation path {
    stroke: #f97316;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 5s ease forwards;
    animation-delay: 0.8s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-left p {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 35px;
}

.hero-left a {
    background: var(--primary);
    color: var(--text-white);
    font-weight: 500;
    border-radius: 100px;
    padding: 7px 7px 7px 24px;
    margin-top: 28px;
}

.hero-left a i {
    background: var(--bg-white);
    color: var(--text-black);
    padding: 12px;
    border-radius: 100px;
    width: 42px;
    height: 42px;
    margin-left: 20px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 10%);
    transition: all 0.3s ease;
}

.hero-left a:hover,
.hero-left a:active {
    background: var(--btn-hover) !important;
    color: var(--text-white) !important;
}

.hero-left a:hover i {
    transform: rotate(-35deg);
}

.hero-right:before,
.hero-right:after {
    content: "";
    width: 250px;
    height: 250px;
    display: block;
    position: absolute;
    background-color: var(--primary);
    border-radius: 100%;
}

.hero-right:before {
    animation: up-down 1s infinite alternate;
    right: 0;
    top: 0;
}

@keyframes up-down {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-20px)
    }
}

.hero-right:after {
    animation: up-down-2 .9s infinite alternate;
    left: 0;
    bottom: 0;
}

@keyframes up-down-2 {
    0% {
        transform: translateY(-20px)
    }

    to {
        transform: translateY(0)
    }
}

.hero-right img {
    position: relative;
    z-index: 1;
}

/********** About Us Css ************/
section {
    padding: 90px 0;
}

.about:before {
    content: "";
    background-image: url("../images/svg/ab-frame.svg");
    width: 260px;
    height: 468px;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: move-bottom 5s linear infinite;
    -moz-animation: move-bottom 5s linear infinite;
    -o-animation: move-bottom 5s linear infinite;
    animation: move-bottom 3.5s linear infinite;
}

@keyframes move-bottom {
    0% {
        transform: translateY(-25px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}

.border-line {
    width: 130px;
    height: 4px;
    background-color: var(--primary);
    position: relative;
    border-radius: 100px;
}

.border-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: moveDot 2s linear infinite;
}

@keyframes moveDot {
    0% {
        left: 0;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 100%;
    }
}

.title h1 {
    font-weight: 600;
    padding-bottom: 8px;
}

.ab-text p {
    line-height: 30px;
}

.btn-commmon {
    background-color: var(--primary);
    padding: 12px 31px;
    border-radius: 100px;
    color: var(--text-white);
    font-weight: 600;
}

.exp-round {
    width: 183px;
    height: 183px;
    background: var(--primary);
    background: linear-gradient(0deg, rgba(99, 50, 14, 1) 0%, rgba(239, 131, 51, 1) 100%);
    color: var(--text-white);
    border-radius: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    border: 13px solid var(--bs-white);
    box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 12%);
    position: absolute;
    bottom: 22px;
    right: 86px;
}

.exp-round h1 {
    font-weight: 600;
}

.exp-round p {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    margin: 0;
}

.btn-commmon:hover {
    background-color: var(--btn-hover);
    color: var(--text-white);
}

/********** Serve You Css ************/
.service-bg {
    background-image: url("../images/services-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-padding {
    padding: 70px 0;
}

.title p {
    margin-top: 26px;
    color: var(--text-gray);
}

.card.service-card {
    border-radius: 30px;
    border: 0;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 5%);
    transition: all 0.3s ease;
}

.card.service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(1deg, rgb(239 131 51 / 10%) 0%, hsl(0deg 0% 100% / 98%) 100%);
    box-shadow: none;
}

.card.service-card:hover .icon img {
    transform: scale(-1) rotate(180deg);
    transition: all 0.5s ease;
}

.card.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 22px 0 8px;
}

.card.service-card p {
    font-size: 14px;
    line-height: 24px;
    color: var(--text-black);
    margin: 0;
}

.card.service-card .btn {
    font-size: 14px;
    font-weight: 500;
}

.number {
    font-size: 70px;
    color: var(--light-primary);
    font-weight: 600;
    position: absolute;
    right: 25px;
    top: 15px;
}

/********** Our Development Process Css ************/
.work-flow {
    padding: 0 25px;
}

.flow-ui img {
    border: 1px dashed var(--text-black);
    border-radius: 100%;
    padding: 8px;
    border-spacing: 20px;
}

.flow-ui h5 {
    font-size: 18px;
    line-height: 26px;
    margin: 30px 0 0;
}

.work-flow:before {
    content: "";
    background-image: url("../images/svg/dot-line.svg");
    width: 100%;
    height: 300px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: -1;
    background-size: contain;
}

.flow-ui:nth-child(1) {
    margin-top: 210px;
}

.flow-ui:nth-child(2) {
    margin-top: 80px;
}

.flow-ui:nth-child(3) {
    margin-top: 55px;
}

.flow-ui:nth-child(4) {
    margin-top: 100px;
}

/********** Why Choose Us Css ************/
.light-bg {
    background-color: var(--secondary);
    position: relative;
    padding: 180px 0;
}

.light-bg:before,
.light-bg:after {
    content: "";
    background-image: url("../images/svg/curve.svg");
    display: block;
    width: 100%;
    height: 164px;
    position: absolute;
    top: -33px;
    left: 0;
    background-position: center;
}

.light-bg:after {
    transform: scaleX(-1) rotate(180deg);
    bottom: -33px;
    top: auto;
}

.why-img {
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.why-us-ui i {
    background: var(--primary);
    color: var(--text-white);
    font-size: 22px;
    padding: 10px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-ui h5 {
    font-size: 18px;
}

.why-us-ui p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

/********** Counter Css ************/
.pf-ui {
    padding: 0 60px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    border: 2px dashed var(--primary);
    border-radius: 100px;
    padding: 7px;
    animation: glow 2s infinite;
}

.stat-icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    background: var(--primary);
}

.stat-icon-circle i {
    font-size: 38px;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-black);
}

.stat-value {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    margin: 0;
    letter-spacing: -1px;
}

.swiper-button-prev,
.swiper-button-next {
    background-image: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 55px;
    height: 100%;
    top: 15px;
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.swiper-button-prev i,
.swiper-button-next i {
    background: var(--primary);
    color: var(--text-white);
    font-size: 20px;
    padding: 10px;
    width: 55px;
    height: 55px;
    border-radius: 100px;
    line-height: 36px;
    box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 15%);
}

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

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

/********** Our Secret Work Formula Css ************/
.work-formula {
    background-image: url("../images/work-formula.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.formula-txt h5 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.formula-txt p {
    font-size: 16px;
    line-height: 32px;
    margin: 0;
}

.formula-blk {
    background: var(--bs-white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    min-height: 380px;
    margin-bottom: 24px;
}

.formula-blk h5 {
    font-weight: 600;
    margin-top: 15px;
}

.formula-blk p {
    font-size: 14px;
    line-height: 24px;
}

/********** What Our Clients Says Css ************/
.client-blk {
    background: var(--bs-white);
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0px 0px 15px 0px hsl(0deg 0% 0% / 10%);
    height: 100%;
    display: flex;
    gap: 18px;
}

.client-blk img {
    height: max-content;
}

.client-speak img {
    margin-left: -7px;
    margin-bottom: 11px;
}

.client-speak p {
    font-size: 14px;
    line-height: 24px;
}

.client-speak h6 {
    color: var(--primary);
    font-weight: 600;
}

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

/********** Footer Css ************/
footer {
    background: var(--footer-bg);
    overflow: hidden;
    position: sticky;
    bottom: 0;
}

footer img {
    object-fit: cover;
    min-width: 100%;
}

.footer-space {
    padding: 50px 12px 60px;
}

.foot-title h3 {
    font-size: 24px;
    color: var(--text-white);
    font-weight: 600;
}

.foot-title h3:after {
    content: "";
    background: var(--bs-white);
    height: 3px;
    width: 55px;
    display: block;
    margin-top: 12px;
}

.foot-title p {
    font-size: 12px;
    color: var(--text-white);
    font-weight: 400;
    margin-top: 20px;
}

.link-ui ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.link-ui ul a {
    color: var(--text-white);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.link-ui ul a i {
    font-size: 13px;
}

.link-ui ul a:hover {
    padding-left: 3px;
    color: var(--primary);
}

.address p {
    font-size: 14px;
}

.address p a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    font-size: 14px;
    gap: 6px;
}

.address p a i {
    font-size: 16px;
}

.copy-right {
    border-top: 1px solid var(--bs-white);
    padding: 15px 12px;
}

.copy-right p {
    margin: 0;
}

.copy-right p,
.copy-right a {
    font-size: 14px;
    color: var(--text-white);
    text-decoration: none;
}

.copy-right a {
    padding-left: 35px;
    transition: all 0.3s ease;
}

.copy-right a:hover {
    color: var(--primary);
}

/************************************ About Us Page Css ************************************/
.breadcrumb-ui {
    background-image: url("../images/breadcrumb.png");
    height: 425px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 84px 0;
}

.breadcrumb-ui:after {
    content: "";
    background-image: url(../images/breadcrumb-vector.png);
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.breadcrumb-ui h1 {
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcrumb-ui p {
    margin-bottom: 30px;
}

.breadcrumb-ui span a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.breadcrumb-ui span>span {
    color: var(--primary);
    font-weight: 500;
    font-size: 18px;
}

.breadcrumb-ui span a:hover {
    color: var(--primary);
}

.ab-d-bg:before {
    content: "";
    background-image: url(../images/svg/about-vector.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    left: 0;
}

.ab-d-txt h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 20px;
}

.ab-d-txt h3 span {
    color: var(--primary);
}

.ab-d-txt p {
    line-height: 28px;
}

.mv-block {
    background: var(--bs-white);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    border-radius: 30px;
    padding: 35px;
    height: 100%;
}

.mv-block h4 {
    font-weight: 700;
    margin: 24px 0 15px;
}

.mv-block p {
    line-height: 28px;
    margin: 0;
}

.image-box {
    overflow: hidden;
}

.image-box img {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    margin: auto;
    display: block;
    max-width: 100%;
}

.image-box img.active {
    opacity: 1;
    position: relative;
}

.accordion-section .accordion-item {
    border: none;
    margin-bottom: 20px;
    background-color: transparent;
}

.accordion-section .accordion-item button {
    border-radius: 100px !important;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 8%);
    font-size: 18px;
    font-weight: 600;
}

.accordion-section .accordion-body {
    background: var(--bs-white);
    border-radius: 30px;
    padding: 20px 25px;
    font-size: 14px;
    line-height: 22px;
}

.accordion-section .accordion-item button i {
    margin-right: 8px;
    font-size: 20px;
}

.accordion-button::after {
    display: none;
}

.accordion-section .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: var(--text-white);
}

.value-blk {
    padding: 30px;
    border-radius: 10px;
}

.value-blk:hover img {
    transform: scale(-1) rotate(180deg);
    transition: all 0.5s ease;
}

.value-blk img {
    margin-bottom: 20px;
}

.value-blk h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.value-blk p {
    line-height: 25px;
    margin: 0;
}

.clr-1 {
    background: #ec5a171f;
}

.clr-2 {
    background: #86267b1f;
}

.clr-3 {
    background: #64a8fb1f;
}

.clr-4 {
    background: #40a32c1f;
}

.technology-swiper img {
    height: 70px;
    width: 100%;
    object-fit: contain;
}

.technology-swiper .client-blk {
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-radius: 20px;
    gap: 28px;
    justify-content: center;
}

.technology-swiper p {
    font-weight: 500;
    margin: 0;
}

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

/************************************ Services Page Css ************************************/
.service-blk {
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    border-radius: 30px;
    padding: 40px;
    border: 5px solid #fff;
}

.srv-1 {
    background-color: #EEF6FF;
}

.srv-2 {
    background-color: #FFF1F3;
}

.srv-3 {
    background-color: #F0FDF4;
}

.srv-4 {
    background-color: #F4F2FF;
}

.srv-5 {
    background-color: #FEF7EE;
}

.srv-6 {
    background-color: #ebfbff;
}

.service-blk h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-blk p {
    line-height: 30px;
}

.service-blk img {
    transition: all 0.3s ease;
}

.service-blk:hover {
    box-shadow: 0px 0px 0px 5px rgb(0 0 0 / 5%);
    background: linear-gradient(1deg, rgb(239 131 51 / 10%) 0%, hsl(0deg 0% 100% / 98%) 100%);
}

.service-blk:hover img {
    transform: scale(0.9);
}

/************************************ Career Page Css ************************************/
.cmp-shape-left {
    background-image: url(../images/cmp-shape-left.png);
    background-repeat: no-repeat;
}

.left-sec {
    box-shadow: 0px 0px 37px 0px rgb(152 152 152 / 40%);
    border-radius: 15px;
    padding: 50px;
    flex: 0 0 50%;
    background: var(--bs-white);
    height: fit-content;
}

.left-sec h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
}

.left-sec p {
    line-height: 35px;
    font-size: 20px;
    margin: 0;
}

.right-sec {
    position: relative;
    left: auto;
    right: 96px;
    z-index: -1;
    flex: 0 0 59%;
    margin-top: 100px;
}

.cmp-shape-right {
    background-image: url(../images/cmp-shape-right.png);
    margin: 90px 0 0;
    background-repeat: no-repeat;
    background-position: right;
}

.left-set {
    left: 96px;
    right: auto;
}

.right-sec img {
    width: 100%;
    min-height: 375px;
    object-fit: cover;
    border-radius: 15px;
}

.position-blk {
    background: var(--bs-white);
    border-radius: 15px;
    box-shadow: 0px 0px 35px 0px rgb(152 152 152 / 25%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
}

.position-blk:hover {
    background: linear-gradient(1deg, rgb(239 131 51 / 10%) 0%, hsl(0deg 0% 100% / 98%) 100%);
    box-shadow: none;
}

.position-blk img {
    transition: all 0.3s ease;
}

.position-blk:hover img {
    transform: scale(0.9);
}

.position-blk h5 {
    margin: 20px 0 12px;
    font-weight: 600;
}

.position-blk p i {
    color: var(--primary);
    margin-right: 7px;
    font-size: 16px;
}

.position-blk p strong {
    font-weight: 600;
    margin-right: 5px;
}

.position-blk p {
    margin-bottom: 5px;
    font-size: 14px;
}

.position-blk hr {
    border-color: var(--border);
    opacity: 1;
}

.skills-txt i {
    color: var(--primary);
    font-size: 16px;
    margin-right: 5px;
}

.skills-txt h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.skills-txt p {
    align-items: start;
    gap: 7px;
}

.skills-txt p img {
    margin-top: 3px;
}

.upload-box {
    background: var(--secondary);
    border: 2px dashed var(--text-gray);
    border-radius: 5px;
    text-align: center;
    position: relative;
    padding: 22px 10px;
    color: var(--text-gray);
    margin: 40px 0;
}

.upload-box #resume {
    position: absolute;
    opacity: 0;
    top: 0;
}

.form-box input,
.form-box select {
    height: 54px;
    border-radius: 5px;
    color: var(--text-gray);
    border: 1px solid var(--border);
}

.form-box input::placeholder,
.form-box select::placeholder,
.form-box textarea::placeholder {
    color: var(--text-gray);
}

.form-box label {
    font-weight: 500;
}

.form-box label span {
    color: #ff0000;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border-color: var(--primary);
}

.form-box textarea {
    border-radius: 5px;
    padding: 12px 14px;
}

/************************************ Pre Project Consulting Page Css ************************************/
.consult-ui {
    margin-bottom: 30px;
}

.consult-ui h4 {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.consult-ui p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #000000bf;
}

.project-blk {
    flex: 0 0 33.33%;
    padding: 30px 30px 20px;
}

.project-blk:nth-child(1),
.project-blk:nth-child(4) {
    padding-left: 0;
}

.project-blk:nth-child(3),
.project-blk:nth-child(6) {
    padding-right: 0;
}

.project-blk h6 {
    background: var(--primary);
    display: inline-block;
    color: var(--text-white);
    padding: 11px 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-blk p {
    color: var(--text-black);
    line-height: 24px;
}

.steps-blk img {
    animation: glow 2s infinite;
    border-radius: 100px;
}

@keyframes glow {
    0% {
        box-shadow:
            0 0 0 0 rgb(239 131 51 / 50%),
            0 0 15px rgb(239 131 51 / 60%);
    }

    100% {
        box-shadow:
            0 0 0 25px rgb(239 131 51 / 0%),
            0 0 25px rgb(239 131 51 / 0%);
    }
}

.steps-blk h6 {
    font-weight: 600;
    margin: 20px 0 7px;
}

.consultation-blk {
    background: #ec5a171f;
    border: 1px solid var(--primary);
    border-radius: 40px;
    margin-top: 80px;
}

.consultation-blk h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.consultation-blk p {
    line-height: 32px;
    font-size: 18px;
    width: 60%;
    margin: 0 auto 8px;
}

/************************************ Contact Us Page Css ************************************/
.contact-details {
    background: #ef833326;
    border-radius: 15px;
    padding: 25px;
}

.contact-details i {
    font-size: 35px;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-details h5 {
    font-weight: 700;
    text-transform: uppercase;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
}

.map-iframe iframe {
    border-radius: 15px;
}

.contact-main:before,
.contact-main:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    -webkit-animation: move-left 4s linear infinite;
    -moz-animation: move-left 4s linear infinite;
    -o-animation: move-left 4s linear infinite;
    animation: move-left 4s linear infinite;
}

@keyframes move-left {
    0% {
        transform: translateX(-25px);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25px);
    }
}

.contact-main:before {
    background-image: url("../images/svg/ab-frame.svg");
    top: 80px;
    right: -25px;
    background-position: top right;
}

.contact-main:after {
    background-image: url("../images/svg/ct-frame.svg");
    left: 0;
    background-position: bottom left;
    bottom: 80px;
}

/************************************ Terms and Conditions Page Css ************************************/
.terms-ui h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.terms-ui p {
    font-size: 15px;
    line-height: 25px;
    color: #000000d9;
}

.linear-border {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            #fafafa,
            #d3d3d3,
            #fafafa);
    margin: 30px 0;
}

.condition-blk h5 {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.condition-blk p {
    font-size: 15px;
    line-height: 25px;
    color: #000000d9;
}

/************************************ Refund Page Css ************************************/
.condition-blk ul {
    list-style: none;
    padding: 0;
}

.condition-blk ul li:first-child {
    margin-bottom: 12px;
}

.condition-blk ul li {
    margin-bottom: 5px;
}

.condition-blk ul li img {
    margin-right: 5px;
}

/************************************ Services Pages Css ************************************/
.srv-i-txt h5 {
    font-weight: 600;
    margin: 32px 0 10px;
}

.srv-i-txt p {
    line-height: 30px;
}

.img-shape img {
    position: relative;
    width: 100px;
}

.srv-i-txt .img-shape:before {
    content: "";
    background: #ef833333;
    width: 125px;
    height: 125px;
    position: absolute;
    top: -48px;
    left: 20px;
    display: block;
    border-radius: 100px;
    animation: zoomInOut 1.8s ease-in-out infinite;

}

@keyframes zoomInOut {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

.process-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    border-left: 2px dotted var(--border);
}

.number-circle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 22px;
    font-weight: 600;
    margin-right: 25px;
    position: relative;
    z-index: 1;
    outline: 5px solid #ef833380;
}

.content-area {
    flex: 1;
}

.main-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 18px;
    margin-top: 0;
}

.sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 15px;
    margin-bottom: 8px;
}

.description {
    color: var(--text-black);
    line-height: 28px;
    margin-bottom: 15px;
}

.highlight-orange {
    color: var(--primary);
    font-weight: 600;
}

.benifit p {
    font-size: 17px;
    font-weight: 500;
    background: var(--bg-white);
    box-shadow: 0px 0px 15px 0px #0000001f;
    padding: 15px 22px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.benifit p img {
    margin-right: 5px;
    vertical-align: middle;
}

.enterprise-level h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.enterprise-level ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-level ul li {
    font-weight: 500;
    line-height: 2.2;
}

.enterprise-level ul li img {
    width: 22px;
}

.enterprise-level {
    background: var(--bs-white);
    box-shadow: 0px 0px 15px 0px #00000026;
    padding: 30px;
    border-radius: 20px;
}

.enterprise-level i {
    background: var(--primary);
    color: var(--text-white);
    font-size: 30px;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: glow 2s infinite;
}

.enterprise-level h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.computing-card {
    background: var(--bs-white);
    box-shadow: 0px 0px 15px 0px #00000026;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.computing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 0px 1px var(--primary);
}

.computing-card i {
    color: var(--primary);
    font-size: 26px;
}

.computing-card h5 {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.src-sub-ui {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.src-sub-ui li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}

.src-sub-ui li img {
    width: 22px;
    position: relative;
    top: 2px;
}

.qa-lab-section {
    padding: 5rem 0 0;
}

.qa-heading {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-item {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    color: var(--text-gray);
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(0deg, rgba(99, 50, 14, 1) 0%, rgba(239, 131, 51, 1) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}