@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #fff;
    --orange: 238, 124, 0;
    --body: #202020;
    --dark: #252525;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
}

body {
    background: rgba(32, 32, 32, 1);
    /* background: rgb(var(--body)); */
    color: var(--white);
}

/* Navbar */

.navmenu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 50vh;
    width: 100%;
    background-color: var(--dark);
    transition: top 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
}

.navmenu.active {
    top: 105%;
    opacity: 1;
    visibility: visible;
    border: 3px solid #484848;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .navmenu {
        position: static;
        opacity: 1;
        visibility: visible;
        height: auto;
        width: auto;
        background: none;
        transition: none;
    }
}

.navbar-menu-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(315deg) brightness(104%) contrast(102%);
}

.nav-bg {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    width: 80%;
    border-radius: 60px;
    z-index: 99;
}

.offcanvas-bg {
    background-color: var(--dark);
}

.nav-menu li>a {
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s;
    padding: 6px 12px;
}

.nav-menu li:hover>a {
    color: rgb(var(--orange));
    background-color: rgba(var(--orange), 0.2);
    border-radius: 30px;
}

.d-menu {
    background-color: var(--dark) !important;
    border-top: 3px solid #484848 !important;
    border-bottom: 8px solid rgb(var(--orange)) !important;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    transition: 0.3s;
}

.dropdown:hover .d-menu {
    transform: scaleY(1);
    opacity: 1;
}

.drop-menu>li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.drop-menu>li span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
    background-color: #474746;
    border-radius: 50%;
}

.drop-menu>li:hover a {
    color: var(--white);
    background-color: transparent;
}

.drop-menu>li a:hover {
    color: rgb(var(--orange));
}

.inquiry-btn-div {
    margin-right: 10px;
}

.inquiry-btn {
    display: block;
    color: var(--white);
    background-color: rgb(var(--orange));
    font-weight: 500;
    border-radius: 30px;
    padding: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.inquiry-btn:hover {
    color: rgb(var(--orange));
    background-color: var(--white);
}

.header-call p {
    color: var(--white);
}

.hire-drop-bg {
    background-color: #2E2E2E;
}

.hiredrop-icon-box {
    width: 20%;
    text-align: center;
}

.hire-drop-icon-bg {
    background-color: #474746;
    height: 64px;
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.hiredrop-icon-bg-line {
    position: relative;
    z-index: 1;
}

.hiredrop-icon-bg-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50%;
    border-top: 2px dashed #7E7D7C;
    width: 100%;
    z-index: -1;
}

.hire-drop-cont p {
    color: var(--white);
    font-weight: 500;
}

.industries-drop-bg {
    background-color: rgb(var(--orange));
    border-radius: 20px;
}

.industries-drop-bg p {
    color: var(--white);
    font-weight: 500;
}

.industries-drop-bg p span {
    color: #6D3800;
}

.hireus-btn {
    display: inline-block;
    color: rgb(var(--orange));
    background-color: var(--white);
    font-weight: 600;
    border-radius: 21px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.3s;
}

.hireus-btn:hover {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
}

.drop-view-opening-bg {
    background: rgb(var(--orange));
    height: 100%;
    border-radius: 10px;
}

.drop-view-opening-bg .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
}

.drop-view-opening-bg .cont {
    color: var(--white);
    font-weight: 400;
}

.header-call span {
    color: rgb(var(--orange));
    font-weight: 500;
}

.header-call a {
    position: relative;
    display: block;
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: 5px;
    padding-left: 25px;
}

.header-call a::before {
    content: url('../img/drop-shape-triangle.svg');
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 16px;
    width: 20px;
}

.header-call a:hover {
    color: rgb(var(--orange));
}

@media screen and (min-width: 1400px) {

    .nav-menu li a,
    .inquiry-btn,
    .hire-drop-cont p {
        font-size: 18px;
    }

    .header-call span {
        font-size: 22px;
    }
}

@media screen and (min-width: 992px) {
    .dropdown {
        position: static !important;
        width: 100%;
    }

    .d-menu {
        transform: scale(1, 0);
        opacity: 0;
        transform-origin: top;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .nav-bg {
        width: 90%;
        top: 30px;
    }

    .nav-menu li {
        margin: 15px 0px;
    }

    .inquiry-btn {
        padding: 8px;
    }
}

/* home-page */
/* hero-sec */

.hero-bg {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 800px;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero_bg.png') no-repeat center center;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.hero-content h2 {
    font-size: 74px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

.hero-content h2 span {
    color: rgb(var(--orange));
}

/* btn  */
.contact-btn {
    /* display: flex; */
    /* justify-content: center; */
    color: var(--white);
    background-color: rgb(var(--orange));
    font-weight: 500;
    border-radius: 30px;
    padding: 14px;
    text-decoration: none;
    transition: 0.3s;
}

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

@media screen and (max-width:576px) {
    .hero-content h2 {
        font-size: 25px;
    }

    .hero-bg {
        min-height: 600px;
    }
}

@media screen and (max-width:992px) {
    .hero-content h2 {
        font-size: 27px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-content p {
        font-size: 20px;
        font-weight: 500;
    }
}

/* ******************* */
/* Our Service */
/* ****************** */

.our-service-bg {
    background-color: rgb(var(--dark));
}

/* .our-service h2 {} */

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    right: 0;
    top: 0px;
    animation: autoRun 60s linear infinite;
    animation-delay: calc((60s / var(--quantity)) * (var(--position) - 1) - 60s) !important;
}

.slider .list .item img {
    width: 100%;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width) * -1);
    }
}

.slider-container:hover .slider .item {
    animation-play-state: paused !important;
}

.slider[reverse="true"] .item {
    animation: reversePlay 60s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(var(--width) * -1);
    }

    to {
        left: 100%;
    }
}

@media screen and (min-width:992px) {
    .our-service h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

/* **********/
/* Our Work */
/* **********/

.our-work-bg {
    background: url("../img/our-work-bg.png");
}

.h2-cta-cont h2 {
    color: rgb(var(--orange));
    font-weight: 700;
}

.h2-cta-cont p {
    font-weight: 500;
    color: var(--white);
}

@media screen and (max-width:792px) {
    .h2-cta-cont {
        text-align: center;
    }
}

@media screen and (min-width:992px) {
    .h2-cta-cont h2 {
        font-size: 48px;
    }
}

/* **********/
/* Industries section */
/* **********/

.service-text p {
    font-weight: 500;
    color: var(--white);
}

.service-text a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.service-text a img {
    filter: brightness(0.3) saturate(100%)
}

@media screen and (min-width:992px) {
    .service-text a {
        font-size: 18px;
    }
}

/* **********/
/*  Process section */
/* **********/

.process-bg {
    background: url("../img/process_bg.png");
}

.process-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    border: 3px solid transparent;
}

.process-text p {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.process-main {
    transition: 0.2s ease-in-out;

}

.process-main:hover {
    background-color: rgba(37, 37, 37, 1);
    border-radius: 10px;
}

.process-text:hover {
    border: 3px solid rgba(238, 124, 0, 1);
    border-radius: 10px;
}

/* @media screen and (min-width:576px) and (max-width:792px) {
    .process-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
} */

/* body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
} */
.left-content {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.circle-container {
    position: relative;
    width: 550px;
    height: 550px;
    transition: transform 1s;
    transform-origin: center center;
    background: url("../img/our_logo.svg") no-repeat center center;
    background-position: fixed;
}

.circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(37, 37, 37, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s, color 0.5s, transform 1s;
}

.circle.active {
    background-color: rgba(238, 124, 0, 1);
    color: #fff;
}

.swiper-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* **********/
/* Client Says section  */
/* **********/

.client-bg {
    background: rgba(37, 37, 37, 1);
}

.client-next-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(73, 50, 26, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-prev-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(73, 50, 26, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-prev-btn:active {
    background-color: rgb(var(--orange));
}

.client-next-btn:active {
    background-color: rgb(var(--orange));
}

.client-prev-btn-1 {
    margin-top: -20px;
    left: 47%;
}

@media screen and (max-width:576px) {
    .client-prev-btn-1 {
        left: 45%;
        /* margin-top: -50px; */
    }
}

/* **********/
/* about section */
/* **********/
.about-inner-content p {
    font-weight: 400;
}

.about-inner-cont-bg {
    position: relative;
    background-color: #1E1E1E;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px #133D8114;
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

.about-inner-cont-bg::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/about-inner-content-bg.png');
    height: 100%;
    width: 100%;
    z-index: 1;
}

.about-inner-cont-bg h4 {
    font-weight: 600;
    color: rgb(var(--orange));
}

.about-inner-cont-bg p {
    font-weight: 400;
}

@media screen and (min-width:992px) {
    .about-inner-cont-bg p {
        font-size: 18px !important;
    }

    .about-inner-cont-bg {
        left: -15%;
        width: 700px;
    }

    .aboutus-ourmission::after {
        content: ' ';
        position: absolute;
        width: 4px;
        min-height: 470%;
        background-color: rgb(var(--orange));
        left: 48%;
        top: 100%;
    }

}

/* **********/
/* App idea*/
/* **********/

.app-bg {
    background-color: rgb(var(--orange));
}

.let-btn {
    display: flex;
    justify-content: center;
    color: rgb(var(--orange));
    background: var(--white);
    font-weight: 500;
    border-radius: 30px;
    padding: 14px;
    text-decoration: none;
    transition: 0.3s;
}

/* .let-btn:hover {
    color: rgb(var(--orange));
    background-color: var(--white);
} */
@media screen and (min-width:992px) {
    .app-text h3 {
        font-size: 40px;
        color: rgb(var(--white));
        font-weight: 600;
    }

    .app-text p {
        font-size: 24px;
        font-weight: 500;
    }
}

/* footer */

.footer-bg {
    position: relative;
    background: #000;
    z-index: 1;
}

.footer-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/img-footer-bg.png') no-repeat center;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.footer-menu-title {
    position: relative;
    color: rgb(var(--orange));
    font-weight: 500;
    z-index: 1;
}

.footer-menu-title::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: 0;
    background-color: #454442;
    border-radius: 20px;
    height: 4px;
    width: 107px;
    z-index: -1;
}

.footer-call span {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.footer-call a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.footer-call a:hover {
    color: rgb(var(--orange));
}

.footer-call a span {
    color: rgb(var(--orange));
}

.footer-menu li a {
    display: inline-block;
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    padding: 5px 0px;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: rgb(var(--orange));
}

.footer-copyright p {
    color: #5A5A5A;
    font-weight: 400;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #EE7C00;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social li a img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(93%) saturate(1353%) hue-rotate(1deg) brightness(93%) contrast(105%);
    transition: 0.1s;
}

.footer-social li a:hover {
    background-color: #EE7C00;
}

.footer-social li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(17%) hue-rotate(328deg) brightness(106%) contrast(106%);
}

@media screen and (min-width: 992px) {
    .footer-menu li a {
        font-size: 20px;
    }

    .footer-copyright p {
        font-size: 24px;
    }
}

/* About */
/* Hero */

.inner-page-hero-bg {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 390px;
    z-index: 1;
}

.inner-page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/inner-page-hero-bg.png') no-repeat center center;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.inner-hero-breadcrumb li.active {
    color: var(--white);
}

.inner-hero-breadcrumb li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.5;
    font-weight: 500;
    transition: 0.3s;
}

.inner-hero-breadcrumb li a:hover {
    color: rgb(var(--orange));
    opacity: 1;
}

.inner-hero-breadcrumb li.active::before {
    content: url('../img/breadcrumb-divider.svg') !important;
    color: var(--white) !important;
}

.hero-cont h1 {
    color: transparent;
    background: linear-gradient(103.62deg, #FFFFFF 20%, #EE7C00 103.06%);
    background-position: -80%;
    font-weight: 600;
    background-clip: text;
}

.team-badge {
    bottom: -12%;
    right: 15%;
}

.team-badge-text {
    top: 46%;
    left: 50%;
    transform: translate(-50%, -46%);
}

.team-badge-text img {
    animation: rotating-img 15s linear infinite;
}

@keyframes rotating-img {
    0% {
        transform: rotate(0deg);
    }

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

@media screen and (max-width: 767px) {
    .team-badge {
        /* top: auto !important; */
        bottom: -8%;
        right: 0;
        width: 175px;
        height: 175px;
    }

    .team-badge-text img {
        height: 120px;
        width: 120px;
    }
}


/* About-us-sec */

.inner-about-cont h2 {
    color: #5B5B5B;
    font-weight: 600;
}

.inner-about-cont h2 span {
    color: rgb(var(--orange));
}

.inner-cont-bg {
    position: relative;
    background-color: #1E1E1E;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px #133D8114;
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

.inner-cont-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/inner-cont-bg-gradiant.png') no-repeat top;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.inner-about-sub-cont-right {
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    left: -18%;
}

.inner-about-sub-cont-left {
    position: absolute;
    top: 35%;
    right: -17%;
}

.inner-about-cont p {
    color: #FFFFFFCC;
    font-weight: 400;
    line-height: 28px;
}

@media screen and (max-width: 768px) {

    .inner-about-sub-cont-right,
    .inner-about-sub-cont-left {
        position: static;
        transform: translateY(0);
    }
}

/* value-sec */

.inner-value-bg {
    background: url('../img/inner-value-bg.png') no-repeat center;
    background-size: cover;
}

/* *************** */
/* Caree Inner Page */
/* *************** */
.creer-inner-bg {
    background: url("../img/carre_inner_bg.png") no-repeat center;
    background-size: cover;
}

.career-form-bg {
    background-color: rgba(37, 37, 37, 1);
    border-radius: 10px;
    padding: 20px; /* Optional: improves spacing inside */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: adds depth */
}

.care-from-input input {
    background-color: rgba(45, 45, 45, 1);
    border-radius: 35px;
    outline: none;
    border: 0;
}

.care-from-input input::placeholder {
    color: rgba(255, 255, 255, 1);
}

input[type="file"]::file-selector-button {
    background: rgba(45, 45, 45, 1);
    border: 0;
    color: rgb(var(--white));
}

.contact-btn-div button {
    color: rgb(var(--white));
    border: 0;
    background: none;
    font-weight: 700;
}

.caree-view-bg {
    background-color: rgba(32, 32, 32, 1);
}

.caree-developer {
    background-color: rgba(46, 46, 46, 1);
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.caree-developer-text p {
    color: rgba(255, 255, 255, 0.6);
}

.caree_collapse {
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.caree_collapse h5 {
    color: rgb(var(--orange));
}


/* *************** */
/* Retails inner page */
/* *************** */
.reatils-inner-text p {
    color: rgba(255, 255, 255, 0.7);
}

.retails-ready-bg {
    background: url("../img/retails_ready_bg.png") no-repeat center center;
}

.retails-app-bg {
    background: rgba(58, 58, 58, 1) no-repeat center;
}

/* *************** */
/* Blog inner page section */
/* *************** */

.blog-main {
    background-color: rgba(37, 37, 37, 1);
    border-radius: 10px;
}

.blog-text-content {
    background-color: rgba(58, 58, 58, 1);
    border-radius: 10px;
}

.blog-filed h6 {
    color: rgb(var(--orange));
    font-weight: 600;
}

.blog-div-web h5 {
    font-weight: 400;
    color: rgb(var(--orange));
}

.blog-div-date h6 {
    font-weight: 400;
    color: rgba(133, 133, 133, 1);
}

.blog-div-web a {
    color: rgb(var(--white));
    font-weight: 400;
}

@media screen and (min-width:400px) and (max-width:576px) {
    .blog-main-img {
        display: flex;

    }
}

@media screen and (min-width:992px) {
    .blog-filed h6 {
        font-size: 18px;
    }

    .blog-div-web p {
        font-size: 16px;
        font-weight: 400;
    }

    .blog-div-web a {
        font-size: 18px;
    }
}

@media screen and (min-width:1200px) {
    .blog-main-img {
        display: flex;
    }
}

/* Blog inner section */
.blog-iner-text h3 {
    font-weight: 600;
    color: rgb(var(--white));
}

.blog-share-bg {
    background-color: rgba(58, 58, 58, 0.2);
    border-radius: 10px;
}

.blog-inner-content p {
    color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width:992px) {
    .blog-iner-text h3 {
        font-size: 36px;
    }

    .blog-iner-text h6 {
        font-size: 20px;
        font-weight: 400;
    }

    .blog-post-text p {
        font-size: 20px;
    }
}

/* *************** */
/* Mobile App Development */
/* *************** */

.app-innovation-bg {
    background-color: rgba(44, 44, 44, 1);
}

.app_innovat-text {
    color: rgba(255, 255, 255, 0.7);
}

.app-benefits-text p {
    color: rgba(255, 255, 255, 0.6);
}

.app-contact-bg {
    background: url("../img/app_contact_bg.png") no-repeat center;
    background-size: cover;
}

.accordion-item {
    border: none;
}

.accordion-button h3 {
    color: rgba(255, 255, 255);
}

.accordion-button {
    background-color: rgba(44, 44, 44, 1) !important;
    border-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    background-color: rgba(32, 32, 32, 1);
}

.accordion-body p {
    color: var(--white);
}

.accordion-body h5 {
    color: rgb(var(--orange));
}

.accordion-item {
    border-bottom: 1px solid white;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(81%) saturate(5%) hue-rotate(107deg) brightness(108%) contrast(99%);
}

/* <!-- Android Partner --> */
.app-innovation-text p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* <!-- Development Services --> */
.app-service-pro-text p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.app-service-hover:hover {
    background-color: rgb(var(--orange));
    transition: 0.3s ease-in-out;
}

@media screen and (min-width:992px) {
    .app-service-pro-text {
        border-right: 2px solid rgba(61, 61, 61, 1);
    }

    .app-service-pro-text-2 {
        border-right: 2px solid rgba(61, 61, 61, 1);
        border-top: 2px solid rgba(61, 61, 61, 1);
    }

    .app-service-pro-text-0 {
        border-top: 2px solid rgba(61, 61, 61, 1);
    }
}

/* <!-- Engagement models --> */

.android_models_bg {
    background: url("../img/android_models_bg.png") no-repeat center;
    border-radius: 10px;
}

.android_models_text h6 {
    color: rgb(var(--orange));
}

.android-button {
    background-color: rgba(32, 32, 32, 1) !important;
}

/* <!-- Contact Us --> */
.contact_form_text h4 {
    color: rgb(var(--orange));
    font-weight: 600;
}

@media screen and (min-width:576px) {
    .contact_form_ifram iframe {
        width: 450px !important;
        height: 300px !important;
    }

}

.contact_form_ifram {}

@media screen and (min-width:992px) {
    .contact_form_text h4 {
        font-size: 40px;
    }
}

/* <!-- Beauty Trends Boutique --> */
.ios-beauty-bg {
    background: url("../img/ios_beaty_img01.png") no-repeat center;
    background-color: rgba(44, 44, 44, 1) !important;
}

/* <!-- Types of Hiring Models --> */

.ios-hiring-bg {
    background-color: rgba(44, 44, 44, 1);
    border-radius: 10px;
}

.ios-hiring-text h3 {
    color: rgb(var(--orange));
    font-weight: 600;
}

.ios_workflow_icon-bg {
    background: url("../img/ios_workflow_icon.png");
    min-height: 58px;
    width: 238px;
    color: rgb(var(--orange));
    background-size: cover;
}

.ios_workflow_icon-bg-1 {
    background: url("../img/ios_workflow_icon-1.svg");
    min-height: 58px;
    width: 238px;
    color: rgb(var(--orange));
    background-size: cover;
}

.ios-dis-box {
    width: 80px;
    height: 80px;
    background-color: rgba(32, 32, 32, 1);
    box-shadow: 0px 10px 60px 0px rgba(238, 124, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:576px) {
    .ios-hiring-text p {
        font-size: 12px;
    }
}

/* <!-- Hiring iOS Developers --> */
.ios_discuss_text {
    /* background: url("../img/ios_discuss Project & budget.png") no-repeat; */
    /* border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1; */
    border: 2px solid rgb(var(--orange));
    border-radius: 10px;
}

/* Proftfolio  */
.item-box,
.item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.nav-tabs button {
    margin: 0;
    border: 1px solid rgba(47, 47, 47, 1) !important;
    border-radius: 0 !important;
    color: rgb(255, 255, 255);
    /* width: 24%; */
    height: 60px;
    border-radius: 20px !important;
    background-color: rgba(47, 47, 47, 1);
}

.nav-tabs button:hover {
    color: rgb(var(--white));

}

.nav-tabs .nav-link.active {
    background-color: rgba(238, 124, 0, 1);
    color: white;
    border-radius: 5px !important;
    border-radius: 50px !important;
}

.protfolio-item-box {
    background-color: rgba(47, 47, 47, 1);
    border-radius: 10px;
    box-shadow: 0px 0px 14px 0px rgba(238, 124, 0, 0.1);
}

.tab-content {
    margin-top: 100px;
}

@media screen and (max-width:992px) {
    .nav-tabs button {
        width: 100% !important;
    }

}

@media screen and (min-width:992px) {
    .prot-nav-tabs {
        background-color: rgba(47, 47, 47, 1) !important;
        border-radius: 50px !important;
    }

}

@media screen and (min-width:1200px) {
    .nav-tabs .nav-link.active {
        padding: 0px 80px;
    }
}

/* Application Design */

.application-count-bg {
    background-color: rgb(var(--orange));
}

.h2-cta-cont-app h2 {
    color: rgb(var(--white));
    font-weight: 600;
}

.swiper-slide img {
    transition: transform 0.3s ease-in-out;
}

.swiper-slide img:hover {
    transform: scale(1.2); /* Adjust scale as needed */
}