* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif !important;
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/Nunito-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./fonts/Nunito-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./fonts/Nunito-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/Nunito-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('./fonts/Nunito-ExtraBold.ttf') format('truetype');
}


p {
    margin-bottom: 0 !important;
}

ul {
    list-style: none !important;
}

button {
    border: none;
    outline: none;
    background: transparent;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: #141414 !important;
}

.title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: 82px;
}

.pageNavigate {
    padding: 0 80px;
    margin: 125px auto 0;
    max-width: 1440px;
    width: 100%;
    display: flex;
    gap: 12px;
}

.pageNavigate a,
.pageNavigate span {
    color: #757B7A;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;

}

.pageNavigate .currentPage {
    color: #141414;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*Home CSS
  ===========================*/
  nav{
     position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
    padding: 12px 20px;
    width: 100%;
}


.navbar-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.navbar-section .logo {
    display: flex;
    width: 90px;

    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.navbar-section .logo img {
    width: 100%;
    height: 100%;
}

.navbar-section .nav-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-section .nav-main .navbar-items-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.navbar-section .nav-main .navbar-items-area .nav-items {
    display: flex;
    margin: 0;
    padding-left:0;
    gap:10px;
}

.navbar-section .nav-main .navbar-items-area .nav-items li {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #f5f5f5;
}

.navbar-section .nav-main .navbar-items-area .nav-items li a {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend" sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu {
        position:relative;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .navbar-item{
        display: flex;
        align-items:center;
        gap:5px;
    }

    
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .sub-nav-area {
        width: max-content;
        position:absolute;
        top: 45px;
        left: 0px;
        z-index:10;
        padding-top:10px;
        transition:.6s easy;
        visibility:hidden;
        opacity:0;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .active_sub_menu{
        display:block !important;
    }

    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .sub-nav-area .sub-nav-menu{
        width: max-content;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 12px 24px;
        border-radius: 8px;
        background:#f5f5f5;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items li .nav-item {
        font-weight: 600;
        cursor:pointer;
    }
        @media only screen and (min-width: 1081px){
        .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu:hover .sub-nav-area{
            visibility:visible;
            opacity:1;
            height:max-content;
            transition:.4s;
        }
        .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu:hover .navbar-item i{
            transform:rotate(180deg);
            transition:.4s;
        }
    }

.navbar-section .nav-main .navbar-items-area .closeMenu {
    display: none;
}

.navbar-section .nav-main .navbar-items-area .dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #141414;
}

.navbar-section .nav-main .navbar-items-area .dropdown .dropdown-toggle img {
    width: 25px;
    height: 15px;
}

.navbar-section .nav-main .navbar-items-area .dropdown .dropdown-menu {
    min-width: 70px;
}

.navbar-section .nav-main .navbar-items-area .dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-section .nav-main .navbar-items-area .dropdown .dropdown-menu .dropdown-item img {
    width: 25px;
    height: 15px;
    -o-object-fit: cover;
    object-fit: cover;
}

.navbar-section .nav-main .have_project {
    text-align: center;
    padding: 12px 24px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend" sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 50px;
    background: #F3BB26;
    text-decoration: none;
}

.navbar-section .nav-main .responsiveMenu {
    display: none;
}

.hero-section {
    padding: 0 80px;
    margin: 225px auto 0;
    max-width: 1440px;
    width: 100%;
}

.hero-section .hero-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-section .hero-main .hero-title {
    max-width: 650px;
    width:100%;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend" sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 800;
    line-height: 66px;
    text-align:start;
    margin:0;
}

.hero-section .hero-main .hero-title span {
    color: #F3BB26;
}

/* Hero CTA Buttons */
.hero-section .hero-main .hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.hero-section .hero-main .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-section .hero-main .hero-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-section .hero-main .hero-cta-order {
    background: #F3BB26;
    color: #141414 !important;
}
.hero-section .hero-main .hero-cta-order span,
.hero-section .hero-main .hero-cta-order svg {
    color: #141414 !important;
}

.hero-section .hero-main .hero-cta-order:hover {
    background: #e0aa1e;
}

.hero-section .hero-main .hero-cta-call {
    background: #141414;
    color: #fff !important;
}
.hero-section .hero-main .hero-cta-call span,
.hero-section .hero-main .hero-cta-call svg {
    color: #fff !important;
}

.hero-section .hero-main .hero-cta-call:hover {
    background: #333;
}

.hero-section .hero-main .swiper {
    max-width: 302px;
    height: 256px;
    margin: 0;
}

.hero-section .hero-main .swiper .main-hero-box {
    border-radius: 24px;
    background: #f5f5f5;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.hero-section .hero-main .swiper .main-hero-box .hero-box-text .box-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    margin: 0;
}
.hero-section .hero-main .swiper .main-hero-box .box-icon{
    border-radius: 100px;
}
.hero-section .hero-main .swiper .main-hero-box .box-icon img{
    border-radius: 100px;
}

.hero-section .hero-main .swiper .main-hero-box .hero-box-text .box-title span {
    color: #F3BB26;
}

.hero-section .hero-main .swiper .main-hero-box .hero-box-text .hero-box-txt {
    margin: 0;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend" sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.hero-section .hero-main .swiper .swiper-pagination {
    bottom: 20px;
    left: auto;
    right: 24px;
    text-align: end;
}

.hero-section .hero-main .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #F3BB26;
}

.hero-section .heroSlider {
    width: 100%;
    margin-top: 140px;
}

.hero-section .heroSlider .heroSwiper .swiper-wrapper .swiper-slide {
    cursor: pointer;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px;
    background: #f5f5f5;
    border-radius: 14px;
    width: -moz-max-content;
    width: max-content;
}

.hero-section .heroSlider .heroSwiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    max-height: 52px;
    object-fit: contain;
}

.service-section {
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    margin: 130px auto 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
}

.service-section .service-left {
    max-width: 520px;
}

.service-section .service-left .service-title {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    max-width: 480px;
}



.home-faq-section {
    padding: 0 80px;
    margin: 100px auto 0;
    max-width: 1440px;
    width:100%;
}

.home-faq-section .home-faq-title {
    color: #000;
    text-align: center;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.home-faq-section .faq-tabs {
    margin-top: 56px;
}

.home-faq-section .faq-tabs .faq-tab-item {
    width: -moz-max-content !important;
    width: max-content !important;
    border: none;
    outline: none;
    text-align: center;
    padding: 8px 20px;
    border-radius: 50px;
    background: #F5F5F5;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0 !important;
    cursor: pointer;
} 

.home-faq-section .faq-tabs .active-faq-tab {
    background: #F3BB26;
}

.home-faq-section .home-faq-area {
    width: 100%;
}

.home-faq-section .home-faq-area .acardion__item {
    position: relative;
    margin: 20px 0;
}

.home-faq-section .home-faq-area .acardion__item .acardion__label {
    position: relative;
    padding: 20px 80px;
    color: #141414;
    background-color: #F5F5F5;
    border-radius: 24px;
    cursor: pointer;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.home-faq-section .home-faq-area .acardion__item .acardion__label::before {
    position: absolute;
    content: "+";
    top: 50%;
    right: 5%;
    font-size: 1.5em;
    transform: translateY(-50%);
}

.home-faq-section .home-faq-area .acardion__item .acardion__content {
    font-size: 18px;
    position: relative;
    overflow-y: auto;
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: 0.5s;
    background-color: #fff;
}

.home-faq-section .home-faq-area .acardion__item--active .acardion__content {
    height: -moz-max-content;
    height: max-content;
    padding: 10px;
    opacity: 1;
}

.home-faq-section .home-faq-area .acardion__item--active .acardion__label::before {
    content: "-";
}

.service-section .service-left .service-txt {
    align-self: stretch;
    color: var(--Black, #141414);
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 30px;
}

.service-section .service-left .serviceBtn {
    display: flex;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    background: #F3BB26;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-decoration: none;
    margin-top: 50px;
}

.service-section .service-right-area {
    max-width: 628px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-section .home-mobile-service{
    width: 100%;
    display: none;
    padding-bottom: 10px;
}
.service-section .home-mobile-service .service-box-item {
    width:300px;
    border: 2px solid #fff;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0px rgba(168, 168, 168, 0.25);
    background: #F5F5F5;
    height: auto;
}
.service-section .home-mobile-service .service-box-item .service-box-body{
    border-radius: 24px;
    background: #F5F5F5;
    display: flex;
    padding: 22px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 2px solid #fff;
}
.service-section .home-mobile-service .service-box-item .service-box-image{
    width: 100%;
    height: 120px;
    position: relative;
}
.service-section .home-mobile-service .service-box-item .service-box-image img{
    position: absolute;
    width: 230px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
}
.service-section .home-mobile-service .service-box-item .service-box-body .service-box-title {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.service-section .home-mobile-service .service-box-item .service-box-body .service-box-content .service-box-text {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.service-section .home-mobile-service .service-box-item .service-box-body .service-box-content .service-box-tags {
    margin: 0;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-section .home-mobile-service .service-box-item .service-box-body .service-box-content .service-box-tags .tag-item {
    margin: 0;
    padding: 4px 12px;
    gap: 10px;
    border-radius: 20px;
    background: #E6E6E6;
    color: #141414;
    font-size:14px;
}

.service-section .service-right-area .service-box-item {
    border: 2px solid #fff;
    width:100%;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0px rgba(168, 168, 168, 0.25);
    background: #F5F5F5;
}
.service-section .service-right-area .service-box-item .service-box-body{
    border-radius: 24px;
    background: #F5F5F5;
    display: flex;
    padding: 22px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 2px solid #fff;
} 

.service-section .service-right-area .service-box-item .service-box-body .service-box-title {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.service-section .service-right-area .service-box-item .service-box-body .service-box-content .service-box-text {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-section .service-right-area .service-box-item .service-box-body .service-box-content .service-box-tags {
    margin: 0;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-section .service-right-area .service-box-item .service-box-body .service-box-content .service-box-tags .tag-item {
    margin: 0;
    padding: 4px 12px;
    gap: 10px;
    border-radius: 20px;
    background: #E6E6E6;
    color: #141414;
    font-size:14px;
}
.service-section .service-right-area .service-box-item .service-box-image{
    width: 100%;
    height: 120px;
    position: relative;
}
.service-section .service-right-area .service-box-item .service-box-image img{
    position: absolute;
    width: 230px;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
}
.portfolio-tabs{
    padding: 0 80px;
    margin: 40px auto 0;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    gap:24px;
    
}
.portfolio-tabs .portfolio-tab-item{
    text-align: center;
    padding: 12px 24px;
    color: #141414;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 50px;
    background: #fff;
    border:1px solid #F3BB26;
    text-decoration: none;
}
.portfolio-tabs .active{
    background: #F3BB26;
}
.works-section {
    padding: 0 80px;
    margin: 100px auto 0;
    max-width: 1440px;
    width: 100%;
}

.works-section .works-title {
    text-align: start;
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
}

.works-section .ourPortfolios {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 64px;
  margin-top: 56px;
}


.works-section .ourPortfolios .portfolio-item {
    display:flex;
    flex-direction:column;
    align-items:start;
    text-decoration: none;
    color: #141414;
    width: 100%;
    padding: 20px 24px;
    background: #F4F4F4;
    border-radius: 18px;
    border: 2px solid #FFFFFF;
    box-shadow: 2px 4px 4px 0px rgba(222, 222, 222, 0.25);
}

.works-section .ourPortfolios .portfolio-item .portfolio-img {
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.works-section .ourPortfolios .portfolio-item .portfolio-img img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-section .ourPortfolios .portfolio-item .portfolio-body {
    margin-top: 20px;
}

.works-section .ourPortfolios .portfolio-item .portfolio-body .portfolio-name {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 8px !important;
}

.works-section .ourPortfolios .portfolio-item .portfolio-body .portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.works-section .ourPortfolios .portfolio-item .portfolio-body .portfolio-tags .tag-item {
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    text-align: center;
    background: #EBEBEB;
}

.works-section .more-work {
    width: 100%;
    max-width: 300px;
    margin: 70px auto 0;
    display: flex;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    color: #141414;
    text-decoration: none;
    border: 1px solid #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.blog-section {
    padding: 0 80px;
    margin: 130px auto 0;
    max-width: 1440px;
    width:100%;
    
}

.blog-section .blog-title {
    text-align: start;
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
}

.blog-section .blog-sliders {
    width: 100%;
    margin-top: 30px;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 332px;
    width: 100%;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-content {
    max-width: 60%;
    width: 60%;
    display: flex;
    padding: 36px 44px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 24px;
    background: #F5F5F5;
    align-self: stretch;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-content .slide-content-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-content .slide-content-head .slide-blog-date {
    margin: 0;
    align-self: stretch;
    color: rgba(0,0,0,.6);
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-content .slide-content-head .slide-blog-title {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    height: 52px;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-content .slide-more-detail {
    display: flex;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #F3BB26;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-img {
    max-width: 40%;
    width: 100%;
    height: 332px;
    border-radius: 24px;
}

.blog-section .blog-sliders .swiper-wrapper .blog-slide-box .blog-slide-img img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
}

.blog-section .blog-sliders .swiper-pagination {
    left: 50%;
    transform: translate(-50%);
    bottom: 52px;
    width: max-content;
}

.blog-section .blog-sliders .swiper-pagination .swiper-pagination-current {
    font-weight: 600;
}

.blog-section .blog-sliders .swiper-button-next {
    cursor: pointer;
    top: initial;
    bottom: 42px;
    text-align: center;
    right: 43%;
    --swiper-navigation-size: 14px;
    color: #141414;
    width: 40px;
    height: 40px;
    border: 1px solid #141414;
    border-radius: 50px;
}

.blog-section .blog-sliders .swiper-button-prev {
    cursor: pointer;
    top: initial;
    bottom: 42px;
    text-align: center;
    left: 43%;
    --swiper-navigation-size: 14px;
    color: #141414;
    width: 40px;
    height: 40px;
    border: 1px solid #141414;
    border-radius: 50px;
}
footer{
    margin: 160px auto 0;
    max-width: 1440px;
    width: 100%;
    padding: 0 80px;
}

.footer-section {
    width: 100%;
    border-radius: 52px 52px 0px 0px;
    background: var(--Light-grey, #F5F5F5);
    padding: 72px 80px 80px;
}

.footer-section .footer-head {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #757B7A;
}

.footer-section .footer-head .footer-logo {
    width: 90px !important;
}

.footer-section .footer-head .footer-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-section .footer-head .footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-section .footer-head .footer-links a {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-decoration: none;
}

.footer-section .footer-content {
    margin-top: 50px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer-section .footer-content .footer-WriteUS .writeUs-Text {
    max-width: 410px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.footer-section .footer-content .footer-WriteUS .writeUs-btn {
    margin-top: 48px;
    display: flex;
    width: 416px;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    background: #F3BB26;
    color: #141414;
    text-decoration: none;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.footer-section .footer-content .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    .footer-contact-item{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2px;
        .contact-title {
            color: rgba(0,0,0,.6);
            font-feature-settings: "clig" off, "liga" off;
            font-family: "Lexend";
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
        }
        .contact-number,.contact-email {
            margin: 0;
            color: #141414;
            font-feature-settings: "clig" off, "liga" off;
            font-family: "Lexend";
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
            text-decoration: none;
        }
    }
}


.footer-section .footer-content .footer-right{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    .footer-social-medias {
        display: flex;
        align-items: center;
        gap: 14px;
        .social-media{
            display: block;
            width: 20px;
            height: 20px;
            min-width: 20px;
            svg{
                width: 100%;
                height: 100%;
            }
        }
    }
    .google_partner{
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        img{
            width: 100%;
        }
    }
}

/* Reference CSS
  ======================*/

.reference-hero{
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width: 100%;
}
.all-reference{
    padding: 0 80px;
    margin: 100px auto 0;
    max-width: 1440px;
    width: 100%;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    column-gap:20px;
    row-gap:24px;
}
.all-reference .reference-item{
    display: flex;
    width: 142.5px;
    height: 100px;
    padding: 26px;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background:#F5F5F5;
}
.all-reference .reference-item img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Customer Comment CSS
  ======================*/

.customer-comment-hero{
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width:100%;
}
.all-comments{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    padding: 0 80px;
    max-width: 1440px;
    width:100%;
    margin: 100px auto 0;
    gap:24px;
}
.all-comments .comment-item{
    padding:40px 48px;
    border-radius: 24px;
    background: #F5F5F5;
}
.all-comments .comment-item .comment-item-top{
    display:flex;
    align-items:center;
    gap:24px;
}
.all-comments .comment-item .comment-item-top .customer-img{
    width: 76px;
    height: 76px;
    border-radius:50px;
}
.all-comments .comment-item .comment-item-top .customer-img img{
    width: 100%;
    height: 100%;
    border-radius:50px;
    object-fit:contain;
}

.all-comments .comment-item .comment-item-top .customer-data{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.all-comments .comment-item .comment-item-top .customer-data .customer-position{
    color:  #757B7A;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.all-comments .comment-item .comment-item-top .customer-data .customer-fullName{
    color:#141414;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.all-comments .comment-item .customer-comment{
    margin-top:24px;
    color:#141414;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* About CSS
  ======================*/
.about-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    width: 100%;
    max-width: 1440px;
    .short-description{
        margin-top: 30px;
        p{
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #757B7A;
        }
    }
    .who_we{
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        .content{
            background: #F5F5F5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 30px;
            gap: 30px;
            border-radius: 24px 0 0 24px;
            h2{
                font-weight: 700;
                font-size: 50px;
                line-height: 75px;
                color: #141414;
                margin-bottom: 0;
                text-align: center;
            }
            .desc{
                p,span{
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: rgba(42, 42, 42, 0.85);
                    text-align: start;
                }
            }
            .line{
                width: 160px;
                height: 2px;
                background: #F3BB26;
                margin: 0 auto;
            }   
        }
        .who_we_img{
            width: 100%;
            min-height: 500px;
            height: auto;
            border-radius: 0 24px 24px 0;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 0 24px 24px 0;
            }
        }
    }
    .what_we_do{
        margin-top: 100px;
        h2{
            font-weight: 700;
            font-size: 50px;
            line-height: 75px;
            color: #141414;
        }
        .what_we_do_boxes{
            margin-top: 56px;
            display: grid;
            grid-template-columns: repeat(3,1fr);
            width: 100%;
            gap: 24px;
            .what_we_do_box{
                background: #F5F5F5;
                border-radius: 24px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
                padding: 40px 32px;
                h3{
                    font-weight: 700;
                    font-size: 26px;
                    line-height: 36px;
                    color: #141414;
                }
                .icon{
                    width: 54px;
                    height: 54px;
                    min-width: 54px;
                    border-radius: 100px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border: 1px solid #141414;
                    img{
                        max-width: 100%;
                        max-height: 26px;
                    }
                }
            }
        }
    }
}

.about-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 100px;
}

.about-hero .hero-content .ourMission,
.about-hero .hero-content .ourVision {
    padding: 44px 48px;
    border-radius: 24px;
    background: #f5f5f5;
}

.about-hero .hero-content .ourMission .hero-content-title,
.about-hero .hero-content .ourVision .hero-content-title {
    margin-top: 36px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    max-height: 80;
}

.about-hero .hero-content .ourMission .hero-content-text,
.about-hero .hero-content .ourVision .hero-content-text {
    margin-top: 20px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.ourTeam {
    padding: 0 80px;
    margin-top: 130px;
}

.ourTeam .ourTeam-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
}

.ourTeam .team-members {
    width: 100%;
    margin-top: 56px;
}

.ourTeam .team-members .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    row-gap: 52px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}
.ourTeam .team-members .swiper-wrapper .team_Member{
    display: block;
}
.ourTeam .team-members .swiper-wrapper .team_Member .member_Img {
    border-radius: 16px;
}

.ourTeam .team-members .swiper-wrapper .team_Member .member_Img img {
    width: 100%;
    border-radius: 16px;
}

.ourTeam .team-members .swiper-wrapper .team_Member .member_Position {
    margin-top: 20px;
    color: var(--Text-grey, #757B7A);
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.ourTeam .team-members .swiper-wrapper .team_Member .member_FullName {
    margin-top: 8px;
    color: var(--Black, #141414);
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.customerFeedback-section {
    padding: 0 80px;
    margin-top: 130px;
}

.customerFeedback-section .customerFeedback-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
}

.customerFeedback-section .customer_Feedbacks {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.customerFeedback-section .customer_Feedbacks .customer_Feedback-item {
    display: flex;
    align-items: start;
    gap: 32px;
    border-radius: 24px;
    background: #F5F5F5;
    padding: 48px;
}

.customerFeedback-section .customer_Feedbacks .customer_Feedback-item .company-logo {
    width: 76px;
    height: 76px;
    border-radius: 50px;
    background: #fff;
}

.customerFeedback-section .customer_Feedbacks .customer_Feedback-item .company-logo img {
    width: 76px;
    height: 76px;
    border-radius: 50px;
}

.customerFeedback-section .customer_Feedbacks .customer_Feedback-item .customer_feedback-detail .customer_Position {
    color: #757B7A;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.customerFeedback-section .customer_Feedbacks .customer_Feedback-item .customer_feedback-detail .customer_FullName {
    margin-top: 8px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.customerFeedback-section .customer_Feedbacks .customer_Feedback-item .customer_feedback-detail .customer_review {
    margin-top: 40px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Portfolio CSS
  ======================*/
.portfolio-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width: 100%;
}

/* Service CSS
  ======================*/
.service-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width:100%;
}

.service-items {
    margin: 100px auto 0;
    max-width: 1440px;
    width:100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-items .service-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 44px 60px;
}

.service-items .service-item .service-item-left {
    display: flex;
    align-items: center;
    gap: 52px;
}

.service-items .service-item .service-item-left .service-item-icon {
    width: 40px;
    height: 40px;
}

.service-items .service-item .service-item-left .service-item-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.service-items .service-item .service-item-text {
    max-width: 349px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.service-items .service-item .service-item-moreBtn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    background: #F3BB26;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.home-contact-section {
    padding: 0 80px;
    margin: 100px auto 0;
    max-width: 1440px;
    width: 100%;
}

.home-contact-section .home-contact-area {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
    background: #F5F5F5;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 60px;
}

.home-contact-section .home-contact-area .home-contact-img {
    max-width: 400px;
    width: 100%;
    height: 245px;
    border-radius: 8px;
    overflow: hidden;
}

.home-contact-section .home-contact-area .home-contact-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-contact-section .home-contact-area .home-contact-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 245px;
    gap: 20px;
}

.home-contact-section .home-contact-area .home-contact-content .home-contact-description .home-contact-title {
    color: #141414;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.home-contact-section .home-contact-area .home-contact-content .home-contact-description .home-contact-text {
    color: #141414;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    align-self: stretch;
    margin-top: 16px;
}

.home-contact-section .home-contact-area .home-contact-content .contactUs-btn {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    border-radius: 50px;
    background: #F3BB26;
    padding: 16px 36px;
}

/* Website Development CSS
  ======================*/
.serviceInside-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width:100%;
}

.serviceInside-hero .title {
    margin-top: 12px;
}

.serviceInside-body {
    padding: 0 80px;
    margin: 100px auto 0;
    max-width: 1440px;
    width:100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 100px;
}

.serviceInside-body .serviceInside-category .serviceInside-category-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 36px;
    border-bottom: 1px solid #ccc;
}

.serviceInside-body .serviceInside-category .serviceInside-category-items .websiteDev-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 0 16px;
    width: 302px;
}

.serviceInside-body .serviceInside-category .serviceInside-category-items .active {
    padding: 12px 16px;
    border-radius: 12px;
    background: #f5f5f5;
}

.serviceInside-body .serviceInside-category .have_project {
    margin-top: 36px;
    padding: 12px 36px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    background: #F3BB26;
    color: #141414;
}

/* Service CTA Buttons */
.service-cta-buttons {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hide mobile CTA on desktop */
.service-cta-buttons-mobile {
    display: none;
}

.service-cta-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-cta-buttons .cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.service-cta-buttons .cta-order {
    background: #F3BB26;
    color: #141414 !important;
}
.service-cta-buttons .cta-order span,
.service-cta-buttons .cta-order svg {
    color: #141414 !important;
}

.service-cta-buttons .cta-order:hover {
    background: #e0aa1e;
    color: #141414 !important;
}

.service-cta-buttons .cta-phone {
    background: #141414;
    color: #fff !important;
}
.service-cta-buttons .cta-phone span,
.service-cta-buttons .cta-phone svg {
    color: #fff !important;
}

.service-cta-buttons .cta-phone:hover {
    background: #333;
    color: #fff !important;
}

.service-cta-buttons .cta-whatsapp {
    background: #25D366;
    color: #fff !important;
}
.service-cta-buttons .cta-whatsapp span,
.service-cta-buttons .cta-whatsapp svg {
    color: #fff !important;
}

.service-cta-buttons .cta-whatsapp:hover {
    background: #128C7E;
    color: #fff !important;
}

.serviceInside-body .serviceInside-main .serviceInsideEntry-text {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.serviceInside-body .serviceInside-main p,.serviceInside-body .serviceInside-main span{
    color: #141414;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-left: 0 !important;
}
.serviceInside-body .serviceInside-main{
    h1,h2,h3,h4,h5,h6{
        margin-left: auto !important; 
    }
}
.serviceInside-body .serviceInside-main img{
    max-width:100%;
    height:auto !important;
    width:auto !important;
}
.serviceInside-body .serviceInside-main iframe{

    max-width:600px;
    width:100% !important;
}
.serviceInside-body .serviceInside-main .faq {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
}

.serviceInside-body .serviceInside-main .faq .faq-Title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Halvar Breitschrift";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.serviceInside-body .serviceInside-main .faq .faq-item {
    width: 100%;
}

.serviceInside-body .serviceInside-main .faq .faq-item .question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    border-radius: 20px;
    background: #f5f5f5;
}

.serviceInside-body .serviceInside-main .faq .faq-item .question .minus {
    display: none;
}

.serviceInside-body .serviceInside-main .faq .faq-item .answer {
    display: none;
    padding: 24px 32px;
    background: #f5f5f5;
    border-radius: 0 0 20px 20px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.serviceInside-body .serviceInside-main .faq .faq-item .active {
    padding: 24px 32px 0;
    border-radius: 20px 20px 0 0;
}

.serviceInside-body .serviceInside-main .faq .faq-item .active .plus {
    display: none;
}

.serviceInside-body .serviceInside-main .faq .faq-item .active .minus {
    display: block;
}

.serviceInside-body .serviceInside-main .serviceInsideFotter {
    margin-top: 40px;
}

.serviceInside-body .serviceInside-main .serviceInsideFotter .serviceInsideFotter-title {
    color: Black, #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.serviceInside-body .serviceInside-main .serviceInsideFotter .serviceInsideFotter-text {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.serviceInside-body .serviceInside-main .corperateEmail {
    margin-top: 50px;
}

.serviceInside-body .serviceInside-main .corperateEmail .corperateEmail-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.serviceInside-body .serviceInside-main .corperateEmail .corperateEmails {
    margin-top: 20px;
    list-style: disc !important;
}

.serviceInside-body .serviceInside-main .corperateEmail .corperateEmails .corperateEmail-item {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.serviceInside-body .serviceInside-main .supportERP {
    margin-top: 50px;
}

.serviceInside-body .serviceInside-main .supportERP .supportERP-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.serviceInside-body .serviceInside-main .supportERP .supportERPs {
    margin-top: 20px;
    list-style: disc !important;
}

.serviceInside-body .serviceInside-main .supportERP .supportERPs .supportERP-item {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.serviceInside-body .serviceInside-main .generalSupport {
    margin-top: 50px;
}

.serviceInside-body .serviceInside-main .generalSupport .generalSupport-title {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.serviceInside-body .serviceInside-main .generalSupport .generalSupports {
    margin-top: 20px;
    list-style: disc !important;
}

.serviceInside-body .serviceInside-main .generalSupport .generalSupports .generalSupport-item {
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/* BLOG CSS
  ======================*/
.blog-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width:100%;
}

.blog-hero .backToPage {
    display: none;
}

.allBlogs {
    margin: 100px auto 0;
    max-width: 1440px;
    width:100%;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 64px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.allBlogs .blog-item {
    border-radius: 24px;
    background: #f5f5f5;
}

.allBlogs .blog-item .blog-img {
    border-radius: 24px 24px 0 0;
    height: 260px;
}

.allBlogs .blog-item .blog-img img {
    border-radius: 24px 24px 0 0;
    width: 100%;
    height: 100%;
}

.allBlogs .blog-item .blog-body {
    padding: 32px 28px;
}

.allBlogs .blog-item .blog-body .blog-date {
    color: #757B7A;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    align-self: stretch;
}

.allBlogs .blog-item .blog-body .blog-name {
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    margin-top: 8px;
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.allBlogs .blog-item .blog-body .blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-top: 20px;
}

.allBlogs .blog-item .blog-body .blog-tags .blog-tag-item {
    padding: 8px 20px;
    background: #fff;
    border-radius: 20px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.pagination-area {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    padding: 0 80px;
    width: 100%;
}

.pagination-area .pagination {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    max-width: 50%;
    padding: 12px 24px;
    background: #f5f5f5;
    border-radius: 50px;
}

.pagination-area .pagination .pagination-pages {
    max-width: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination-area .pagination .pagination-pages .active {
    background: #F3BB26;
    border-radius: 50px;
    padding: 5px 13px;
}

.pagination-area .pagination a {
    color: #141414;
    font-weight: 600;
}

.pagination-area .pagination a i {
    font-size: 24px;
}

/* BLOG-INSIDE CSS
  ======================*/
.blog-inside-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width:100%;
}

.blog-Inside {
    padding: 0 80px;
    margin: 100px auto 0;
    max-width: 1440px;
    width:100%;
    display: flex;
    align-items: start;
    width: 100%;
    justify-content: start;
    gap: 74px;
}

.blog-Inside .blog-Inside-detail {
    width: 250px;
}

.blog-Inside .blog-Inside-detail span {
    align-self: stretch;
    color: #757B7A;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.blog-Inside .blog-Inside-detail p {
    margin-top: 8px;
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.blog-Inside .blog-Inside-detail .blogViews {
    margin-top: 24px;
}

.blog-Inside .blog-Inside-detail .blogShare {
    margin-top: 24px;
}

.blog-Inside .blog-Inside-detail .blogShare .shareWithSocials {
    margin-top: 12px;
    display: flex;
    gap: 24px;
}

.blog-Inside .blog-Inside-detail .blogShare .shareWithSocials a {
    width: 24px;
    height: 24px;
}

.blog-Inside .blog-Inside-detail .blogtags {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: wrap;
    gap: 12px;
}

.blog-Inside .blog-Inside-detail .blogtags .blog-tag-item {
    padding: 8px 20px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.blog-Inside .blog-Inside-detail .blogInsideDate {
    margin-top: 44px;
}

.blog-Inside .blog-Inside-Main .blog-Inside-img {
    max-width: 845px;
    height: 440px;
    width: 100%;
    border-radius: 24px;
}

.blog-Inside .blog-Inside-Main .blog-Inside-img img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.blog-Inside .blog-Inside-Main .blogtext {
    margin-top: 40px;
    max-width: 845px;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.blog-Inside .blog-Inside-Main p img{
    max-width: 100%;
    height: auto !important;
}
.blog-Inside .blog-Inside-Main h2 img{
    max-width: 100%;
    height: auto !important;
}


/* Contact CSS
  ======================*/
.contact-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width: 100%;
}

.contact-main {
    margin: 100px auto 0;
    max-width: 1440px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 130px;
}
.contact-main .contact-details {
    order: 1;
}
.contact-main .contact-form {
    order: 2;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 24px;
}
    
    .contact-form .form-title {
        align-self: stretch;
        color: #141414;
        font-feature-settings: "clig" off, "liga" off;
        font-family: "Halvar Breitschrift";
        font-size: 56px;
        font-style: normal;
        font-weight: 700;
        line-height: 66px;
    }
    
    .contact-form .formArea {
        margin-top: 52px;
        display: flex;
        flex-direction: column;
        row-gap: 32px;
    }
    
    .contact-form .formArea .formItems {
        display: flex;
        gap: 28px;
    }
    
    .contact-form .formArea input {
        width: 100%;
        border: none;
        border-bottom: 1px solid #141414;
        outline: none;
        padding-bottom: 16px;
        background: #f5f5f5 !important;
        border-radius: 0;
    }
    
    
    .contact-form .formArea input::placeholder {
        color: #757B7A;
        font-feature-settings: "clig" off, "liga" off;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
    }
    
    
    .contact-form .formArea .sendForm{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        padding: 16px 36px;
        border: 1px solid #141414;
        border-radius: 50px;
        color: #141414;
        font-feature-settings: "clig" off, "liga" off;
        font-family: "Lexend";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    
    .contact-form .success-box{
        max-width: 527px;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        background: #FFFFFF;
        border-radius: 20px;
        padding: 48px 60px;
    }
    .contact-form .success-box .icon{
        width: 120px;
        height: 120px;
        min-width: 120px;
    }
    .contact-form .success-box .icon img{
        width: 100%;
        height: 100%;
    }
    .contact-form .success-box h2{
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        text-align: center;
        color: #000;
        margin-top: 4px;
        margin-bottom: 0;
    }
    .contact-form .success-box .short-desc{
        max-width: 407px;
        width: 100%;
        margin: 8px auto 0;
    }
    .contact-form .success-box .short-desc p{
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
        color: rgba(0, 0, 0, 0.8);
    }
    .contact-form.active{
        display: flex;
        align-items: center;
        justify-content: center;
        .form-title{
            display: none;
        }
        .formArea{
            display: none;
        }
        .success-box{
            display: flex;
        }
    }
}

.contact-main .contact-details {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-main .contact-details span {
    align-self: stretch;
    color: #757B7A;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.contact-main .contact-details p {
    margin-top: 8px;
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}
.contact-main .contact-details .connect{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    .connect-item{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2px;
        .phoneNumber,.email {
            align-self: stretch;
            color: #141414;
            font-feature-settings: "clig" off, "liga" off;
            font-family: "Lexend";
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
        }
    }
}


.contact-main .contact-details .ourSocialMedia .ourSocialMedia-items {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    a{
        display: block;
        width: 20px;
        height: 20px;
        min-width: 20px;
        svg{
            width: 100%;
            height: 100%;
        }
    }
}
.map {
    margin-top: 48px;
    width: 100%;
    height: 700px;
}

 .map iframe {
    width: 100%;
    height: 100%;
}


.projectForm .sendForm {
    margin-top: 25px;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-bar .cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sticky-cta-bar .cta-call {
    background: linear-gradient(135deg, #141414 0%, #333 100%);
    color: #fff;
}

.sticky-cta-bar .cta-call:hover {
    background: linear-gradient(135deg, #333 0%, #141414 100%);
    color: #fff !important;
}

.sticky-cta-bar .cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.sticky-cta-bar .cta-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #fff !important;
}

.sticky-cta-bar .cta-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sticky-cta-bar .cta-btn span {
    white-space: nowrap;
}

/* Desktop WhatsApp Button */
.callUs {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 50px;
    z-index: 1;
}

.callUs img {
    width: 36px;
    height: 36px;
}

.whatsApp {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 1;
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    transition: 0.4s;
    animation: waAnimation 2s infinite;
}
@keyframes waAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
    100% {
      transform: scale(1);
    }
}

/* Have a Project CSS
  ======================*/
.have_a_project-hero {
    padding: 0 80px;
    margin: 80px auto 0;
    max-width: 1440px;
    width: 100%;
}

.have_a_project-main {
    margin: 70px auto 0;
    max-width: 1440px;
    padding: 0 80px;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    .projectForm .sendForm {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        padding: 16px 36px;
        border: 1px solid #141414;
        border-radius: 50px;
        color: #141414;
        font-feature-settings: "clig" off, "liga" off;
        font-family: "Lexend";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
} 

.have_a_project-main .projectForm {
    max-width: 55%;
    width: 100%;
}

.have_a_project-main .projectForm input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #141414;
    outline: none;
    padding-bottom: 16px;
    border-radius: 0;
}

.have_a_project-main .projectForm input::placeholder {
    color: #757B7A;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.have_a_project-main .projectForm .fullName {
    display: flex;
    gap: 40px;
}

.have_a_project-main .projectForm .connectForProject {
    margin-top: 30px;
    display: flex;
    gap: 40px;
}

.have_a_project-main .projectForm .aboutOFProject {
    margin-top: 30px;
}

.have_a_project-main .projectForm .projectPrice {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: end;
}

.have_a_project-main .projectForm .projectPrice #projectOfPrice {
    width: 60px;
}

.have_a_project-main .projectContact {
    max-width: 30%;
    width: 100%;
    display: flex;
    justify-content: start;
}

.have_a_project-main .projectContact .contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.have_a_project-main .projectContact .contact-details span {
    align-self: stretch;
    color: #757B7A;
    font-feature-settings: "clig" off, "liga" off;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.have_a_project-main .projectContact .contact-details .connect{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    .connect-item{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2px;
        .phoneNumber,.email {
            align-self: stretch;
            color: #141414;
            font-feature-settings: "clig" off, "liga" off;
            font-family: "Lexend";
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
        }
    }
}


.have_a_project-main .projectContact .contact-details .ourSocialMedia .ourSocialMedia-items {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    a{
        display: block;
        width: 20px;
        height: 20px;
        min-width: 20px;
        svg{
            width: 100%;
            height: 100%;
        }
    }
}
.have_a_project-main .success-box{
    max-width: 547px;
    width: 100%;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    display: none;
    align-items: center;
    gap: 20px;
    .icon{
        width: 80px;
        height: 80px;
        min-width: 80px;
        img{
            width: 100%;
            height: 100%;
        }
    }
    .success-body{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;
        h2{
            font-size: 20px;
            font-weight: 600;
            line-height: 28px;
            text-align: left;
            margin-bottom: 0;
        }
        .short-desc{
            width: 100%;
            p{
                font-size: 16px;
                font-weight: 400;
                line-height: 20px;
                color: rgba(0, 0, 0, 0.8);
            }
        }
    }
}
.have_a_project-main.active .projectForm{
    display: none;
}
.have_a_project-main.active .success-box{
    display: flex;
}
.advantages-section {
    padding: 0 80px;
    margin: 100px auto 0;
    width: 100%;
    max-width: 1440px;
}

.advantages-section .advantage-title {
    text-align: start;
    align-self: stretch;
    color: #141414;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Halvar Breitschrift;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
}

.advantages-section .advantages-slide {
    width: 100%;
    margin-top: 56px;
    padding-bottom: 10px;
}

.advantages-section .advantages-slide .advantage-item {
    border-radius: 24px;
    background: #F5F5F5;
    box-shadow: 2px 4px 4px 0px rgba(168, 168, 168, 0.25);
    border:2px solid #fff;
    min-width: 300px;
    width:300px !important;
        height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.advantages-section .advantages-slide .advantage-item .advantage-icon {
    width: 100%;
    height: 120px;
    position: relative;
}

.advantages-section .advantages-slide .advantage-item .advantage-icon img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -30px;
}
.advantages-section .advantages-slide .advantage-item .advantage-body{
    border-radius: 24px;
    background: #F5F5F5;
    border-top: 2px solid #fff;
    padding: 36px 24px;
}

.advantages-section .advantages-slide .advantage-item .advantage-item-title {
    color: #141414;
    font-family: Halvar Breitschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.advantages-section .advantages-slide .advantage-item .advantage-item-desc p {
    color: #141414;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.vacancy-container{
    padding: 0 80px;
    width: 100%;
    margin-top: 32px;
}
.vacancy-container .vacancy-searchForm{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
    border: 1px solid #EAEAEA;
    background: #FAFAFA;
    padding: 16px 38px;
    border-radius: 100px;
}
.vacancy-container .vacancy-searchForm input{
    width: 100%;
    border: 1px solid #EDEDF0;
    background: #FFFFFF;
    border-radius: 100px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding: 12px 18px;
    color: #000;
    &::placeholder{
        color: #C4C4C4;
    }
}
.vacancy-container .vacancy-searchForm .searchVacancy{
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 57px;
    border-radius: 100px;
    background: #F3BB26;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #141414;
    min-width: 191px;
}

.vacancy-container .vacancies{
    margin-top: 20px;
    border: 1px solid #EAEAEA;
    background: #FAFAFA;
    border-radius: 28px;
    padding: 50px 64px;

}
.vacancy-container .vacancies .all-vacancies{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px 24px;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart{
    border: 1px solid #EAEAEA;
    background: #fff;
    padding: 18px 26px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head{
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head h2{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #141414;
    text-wrap: wrap;
    margin: 0;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head .dot{
    width: 5px;
    min-width: 5px;
    height: 5px;
    border-radius: 10px;
    background: #6F7C92;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head p{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #919DAD;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary{
    display: flex;
    gap: 6px;
    margin-top: 14px;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary p{
    text-wrap: nowrap;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #141414;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary span{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #646464;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-situation{
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #F3BB26;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-desc{
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #141414;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-tags{
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-tags .vacancy-cart-tag{
    padding: 5px 20px;
    border-radius: 100px;
    background: #F5F5F5;
    color: #141414;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.vacancy-detail-container{
    padding: 0 80px;
    width: 100%;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.vacancy-detail-container .vacancy-detail{
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 28px;
    padding: 30px;
    width: 100%;
}
.vacancy-detail-container .vacancy-detail h1{
    font-size: 56px;
    font-weight: 600;
    line-height: 66px;
    text-align: left;
    color: #141414;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-main{
    margin-top: 36px;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-main h2{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #F3BB26;
    margin: 0;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-main .vacancy-detail-text{
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-main .vacancy-detail-text p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #141414;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-skills{
    margin-top: 42px;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-skills h2{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #F3BB26;
    margin: 0;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-skills .skills{
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-skills .skills p{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #141414;
    background: #F5F5F5;
    border-radius: 100px;
    padding: 5px 20px;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-salary{
    margin-top: 42px;
}
.vacancy-detail-container .vacancy-detail .vacancy-detail-salary h2{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #F3BB26;
    margin: 0;
}  
.vacancy-detail-container .vacancy-detail .vacancy-detail-salary p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #141414;
    margin-top: 16px;
}  
.vacancy-detail-container .vacancy-detail .vacancy-detail-apply{
    margin-top: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    gap: 4px;
    background: #F3BB26;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #141414;
    padding: 16px;
}
.vacancy-detail-container .vacancy-detail-img{
    width: 100%;
    border-radius: 28px;
}
.vacancy-detail-container .vacancy-detail-img img{
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.vacancy-apply-modal{
    position: fixed;
    top: 0;
    right: -100%;
    visibility: hidden;
    opacity: 0;
    max-width: 708px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.12);
    background: #fff;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 130px 50px;
    z-index: 12;
    transition: .4s ease-in-out;
    overflow-y: auto;
}
.vacancy-apply-modal::-webkit-scrollbar {
    width: 5px;
}
.vacancy-apply-modal::-webkit-scrollbar-thumb{
    background: #F3BB26;
    border-radius: 10px;
}
.show-vacancy-apply{
    right: 0;
    opacity: 1;
    visibility: visible;
}
.vacancy-apply-modal .close_apply_modal{
    position: absolute;
    width: 36px;
    height: 36px;
    min-width: 36px;
    left: 34px;
    top: 54px;
}
.vacancy-apply-modal .close_apply_modal svg{
    width: 100%;
    height: 100%;
}
.vacancy-apply-modal .vacancy-apply{
    width: 100%;
}
.vacancy-apply-modal .vacancy-apply h2{
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    color: #141414;
}
.vacancy-apply-modal .vacancy-apply form{
    width: 100%;
    margin-top: 28px;
}
.vacancy-apply-modal .vacancy-apply form .cv-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;

}
.vacancy-apply-modal .vacancy-apply form .cv-container h3{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #141414;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .cv-box{
    width: 100%;
    border: 1px dashed rgba(243, 187, 38, 0.3);
    background: #FFFEFC;
    border-radius: 20px;
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .cv-box img{
    width: 70px;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .cv-box h4{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center; 
    color: #0F0F0F;
    margin-top: 25px;
    margin-bottom: 0;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .cv-box p{
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: center; 
    color: #676767;
    margin-top: 5px;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .cv-box input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 20px;
    cursor: pointer;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .upload-result{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 10px;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .upload-result h4{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #676767;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .upload-result .upload-result-label{
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 0.5px solid #E3E3E3;
    border-radius: 100px;
    padding: 8px 10px;
    width: 100%;
    gap: 10px;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .upload-result .upload-result-label .cv-name{
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #0F0F0F;
    width: 100%;
    text-wrap: wrap;
}
.vacancy-apply-modal .vacancy-apply form .cv-container .upload-result .upload-result-label .remove_cv{
    width: 16px;
    min-width: 16px;
}
.vacancy-apply-modal .vacancy-apply form .form-items{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 17px;
    margin-top: 28px;
}
.vacancy-apply-modal .vacancy-apply form .form-items .form-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}
.vacancy-apply-modal .vacancy-apply form .form-items .form-item label{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #323238;
}
.vacancy-apply-modal .vacancy-apply form .form-items .form-item input{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 16px;
    text-align: left;
    color: #141414;
    background: #FFFFFF;
    border: 1px solid #E1E1E6;
    border-radius: 100px;
    width: 100%;
    outline: none;
}
.vacancy-apply-modal .vacancy-apply form .form-items .form-item input::placeholder{
    color: #8D8D99;
}
.vacancy-apply-modal .vacancy-apply form .form-items .form-item textarea{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 16px;
    text-align: left;
    color: #141414;
    background: #FFFFFF;
    border: 1px solid #E1E1E6;
    border-radius: 20px;
    height: 110px;
    resize: none;
    width: 100%;
    outline: none;
}
.vacancy-apply-modal .vacancy-apply form .form-items .form-item textarea::placeholder{
    color: #8D8D99;
}
.vacancy-apply-modal .vacancy-apply form .sendCv{
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #141414;
    background: #F3BB26;
}

@media only screen and (min-width: 1650px){
    .vacancy-container .vacancies .all-vacancies{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 1250px) {
.works-section .ourPortfolios {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 64px;
  margin-top: 56px;
}
.service-section .service-right-area .service-box-item .service-box-image{
    height: 100px;
}
.service-section .service-right-area .service-box-item .service-box-image img {
    position: absolute;
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
    top: 11px;
}


    .works-section .ourPortfolios .portfolio-item .portfolio-img{
        height: 220px;
    }
    .navbar-section .nav-main .navbar-items-area {
        z-index: 2;
        position: fixed;
        top: 0;
        right: -80%;
        height: 100%;
        width: 80%;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        background: #F3BB26;
        transition: 0.6s ease;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items{
        gap:16px;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items li .nav-item {
        font-weight:800;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items li a{
        font-weight:800;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu {
        display: flex;
        flex-direction: column;
        background:transparent;
            align-items: start;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .nav-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 5px;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items {
        margin-top:80px !important;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .sub-nav-area {
        display:none;
        position:initial;
        visibility:visible;
        opacity:1;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .sub-nav-area .sub-nav-menu{
        padding:0;
        background:transparent;
        
        
    }
    .navbar-section .nav-main .navbar-items-area .nav-items li {
        justify-content: start;
        padding:0; 
        padding-left:16px;
        background: #F3BB26;
        
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .sub-nav-area .sub-nav-menu .sub-nav-item{
        border-bottom:1px solid #000;
        padding:4px 0;
    }

    .navbar-section .nav-main .navbar-items-area .nav-items {
        padding: 0;
        flex-direction: column;
        overflow-y:auto;
    }



    .navbar-section .nav-main .navbar-items-area .closeMenu {
        display: block;
        position: absolute;
        top: 15px;
        right: 25px;
    }

    .navbar-section .nav-main .navbar-items-area .closeMenu i {
        font-size: 32px;
        color: #141414;
    }
    .navbar-section .nav-main .navbar-items-area .dropdown{
        margin-left:24px;
    }

    .navbar-section .nav-main .navbar-items-area .dropdown .dropdown-toggle {
        font-weight: 700;
    }

    .navbar-section .nav-main .navbar-items-area .dropdown .dropdown-menu {
        background: #F3BB26;
    }
        .navbar-section .nav-main .responsiveMenu {
        display: block;
    }
    
    .customer-comment-hero {
        padding: 0 40px;
        margin-top: 80px;
    }
    .all-comments{
        padding: 0 40px;
        margin-top: 70px;
    }
    
    nav {
        padding: 12px 40px;
    }

    .home-contact-section {
        padding: 0 40px;
    }
    
    .reference-hero {
        padding: 0 40px;
    }
    .all-reference {
        padding: 0 40px;
    }
    .home-faq-section {
        padding: 0 40px;
    }

    .advantages-section {
        padding: 0 40px;
    }

    .hero-section {
        padding: 0 40px;
        margin-top: 185px;
    }

    .service-section {
        padding: 0 40px;
    }

    .service-section .service-left {
        max-width: 480px;
    }

    .latestWork-section {
        padding: 0 40px;
    }

    .blog-section {
        padding: 0 40px;
    }

    footer {
        padding: 0 40px;
        margin-top: 130px;
    }

    .pageNavigate {
        padding: 0 40px;
        margin-top: 125px;
    }

    .about-hero {
        padding: 0 40px;
        .short-description{
            margin-top: 20px;
        }
        .who_we{
            margin-top: 40px;
            .content{
                padding: 20px;
                gap: 20px;
                h2{
                    font-size: 44px;
                    line-height: 68px;
                }
                .line{
                    width: 140px;
                }   
            }
            .who_we_img{
                min-height: 400px;
            }
        }
        .what_we_do{
            margin-top: 70px;
            h2{
                font-size: 44px;
                line-height: 68px;
            }
            .what_we_do_boxes{
                margin-top: 46px;
                gap: 20px;
                .what_we_do_box{
                    padding: 30px 22px;
                    h3{
                        font-size: 22px;
                        line-height: 32px;
                    }
                    .icon{
                        width: 50px;
                        height: 50px;
                        min-width: 50px;
                        img{
                            max-height: 24px;
                        }
                    }
                }
            }
        }
    }

    .portfolio-hero {
        padding: 0 40px;
    }
    .portfolio-tabs{
        padding: 0 40px;
        margin-top: 30px;
        gap:15px;
        
    }
    .works-section {
        padding: 0 40px;
    }

    .service-items {
        padding: 0 40px;
    }

    .serviceInside-hero {
        padding: 0 40px;
    }

    .serviceInside-body {
        padding: 0 40px;
    }

    .service-hero {
        padding: 0 40px;
    }

    .ourTeam {
        padding: 0 40px;
    }

    .customerFeedback-section {
        padding: 0 40px;
    }

    .blog-hero {
        padding: 0 40px;
        margin-top: 65px;
    }

    .blog-inside-hero {
        padding: 0 40px;
        margin-top: 65px;
    }

    .allBlogs {
        margin-top: 70px;
        padding: 0 40px;
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-Inside {
        padding: 0 40px;
        margin-top: 70px;
    }

    .contact-hero {
        padding: 0 40px;
        margin-top: 70px;
    }

    .contact-main {
        padding: 0 40px;
        margin-top: 70px;
        justify-content: space-between;
        gap: 40px;
        .contact-form {
            padding: 30px;
        }
        .contact-form .success-box{
            max-width: 457px;
            padding: 38px 50px;
        }
        .contact-form .success-box .icon{
            width: 100px;
            height: 100px;
            min-width: 100px;
        }
        .contact-form .success-box h2{
            font-size: 18px;
            line-height: 24px;
        }
        .contact-form .success-box .short-desc p{
            font-size: 14px;
        }
    }
    .map {
        margin-top: 40px;
        width: 100%;
        height: 600px;
    }
    .contact-main .contact-details {
        padding-left: 0;
    }

    

    .pagination-area {
        padding: 0px 40px;
    }

    .have_a_project-hero {
        padding: 0 40px;
        margin-top: 65px;
    }

    .have_a_project-main {
        padding: 0 40px;
    }
    .have_a_project-main .success-box{
        max-width: 407px;
        gap: 16px;
        .icon{
            width: 60px;
            height: 60px;
            min-width: 60px;
        }
        .success-body{
            gap: 6px;
            h2{
                font-size: 18px;
                line-height: 24px;
            }
            .short-desc{
                p{
                    font-size: 14px;
                }
            }
        }
    }
    .vacancy-container{
        padding: 0 40px;
        margin-top: 26px;
    }
    .vacancy-container .vacancy-searchForm{
        gap: 30px;
        padding: 14px 30px;
    }
    .vacancy-container .vacancy-searchForm input{
        padding: 10px 16px;
    }
    .vacancy-container .vacancy-searchForm .searchVacancy{
        gap: 10px;
        padding: 10px 50px;
        min-width: 174px;
    }
    .vacancy-container .vacancies{
        padding: 40px 54px;
    
    }
    .vacancy-container .vacancies .all-vacancies{
        grid-template-columns: repeat(2,1fr);
        gap: 35px 20px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart{
        padding: 16px 24px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head{
        gap: 4px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head h2{
        font-size: 18px;
        line-height: 22px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head p{
        font-size: 14px;
        line-height: 20px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary{
        gap: 4px;
        margin-top: 10px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary p{
        font-size: 16px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary span{
        font-size: 16px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-situation{
        margin-top: 6px;
        font-size: 16px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-desc{
        margin-top: 12px;
        font-size: 14px;
        line-height: 20px;
        gap: 6px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-tags{
        margin-top: 24px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-tags .vacancy-cart-tag{
        padding: 5px 18px;
    }
    .vacancy-detail-container{
        padding: 0 40px;
        width: 100%;
        margin-top: 26px;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
    .vacancy-detail-container .vacancy-detail{
        padding: 25px;
    }
    .vacancy-detail-container .vacancy-detail h1{
        font-size: 48px;
        line-height: 56px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-main{
        margin-top: 30px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-main h2{
        font-size: 18px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-main .vacancy-detail-text{
        margin-top: 14px;
        gap: 8px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills{
        margin-top: 36px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills h2{
        font-size: 18px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills .skills{
        margin-top: 14px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills .skills p{
        font-size: 14px;
        line-height: 20px;
        padding: 5px 15px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-salary{
        margin-top: 36px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-salary h2{
        font-size: 18px;
    }  
    .vacancy-detail-container .vacancy-detail .vacancy-detail-salary p{
        margin-top: 14px;
    }  
    .vacancy-detail-container .vacancy-detail .vacancy-detail-apply{
        margin-top: 35px;
        font-size: 16px;
        line-height: 24px;
        padding: 14px;
    }
    .vacancy-apply-modal{
        max-width: 608px;
        padding: 30px 100px 40px;
    }
    .vacancy-apply-modal .close_apply_modal{
        width: 30px;
        height: 30px;
        min-width: 30px;
        left: 16px;
        top: 26px;
    }
    .vacancy-apply-modal .vacancy-apply h2{
        font-size: 28px;
        line-height: 36px;
    }
    .vacancy-apply-modal .vacancy-apply form{
        margin-top: 24px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container{
        gap: 16px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .cv-box{
        padding: 20px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .cv-box img{
        width: 60px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .cv-box h4{
        margin-top: 20px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .upload-result .upload-result-label{
        padding: 6px 8px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .upload-result .upload-result-label .remove_cv{
        width: 15px;
        min-width: 15px;
    }
    .vacancy-apply-modal .vacancy-apply form .form-items{
        gap: 15px;
        margin-top: 24px;
    }
    .vacancy-apply-modal .vacancy-apply form .form-items .form-item label{
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-align: left;
        color: #323238;
    }
    .vacancy-apply-modal .vacancy-apply form .form-items .form-item input{
        padding: 8px 14px;
    }
    .vacancy-apply-modal .vacancy-apply form .form-items .form-item textarea{
        padding: 8px 14px;
        height: 100px;
    }
    .vacancy-apply-modal .vacancy-apply form .sendCv{
        margin-top: 28px;
        padding: 8px 14px;
        font-size: 16px;
        line-height: 24px;
    }



}

@media screen and (min-width: 1000px) {
    .faq-tabs .swiper-wrapper {
        justify-content: center;
    }
}

@media only screen and (max-width: 1080px) {
    
    .customer-comment-hero {
        padding: 0 40px;
        margin-top: 65px;
    }
    


    .advantages-section {
        margin-top: 50px;
    }
    .reference-hero{
        margin-top:65px;
    }
    .all-reference {
       margin-top: 70px;
    }

    .home-faq-section {
        margin-top: 50px;
    }

    .home-faq-section .home-faq-title {
        font-size: 42px;
        line-height: 52px;

    }

    .advantages-section .advantage-title {
        font-size: 42px;
        line-height: 52px;
    }


    .hero-section {
        margin-top: 165px;
    }

    .hero-section .hero-main .hero-title {
        font-size: 42px;
        line-height: 52px;
        max-width: 450px;
    }

    .service-items {
        margin-top: 50px;
    }

    .service-items .service-item {
        flex-direction: column !important;
        align-items: start;
        padding: 34px 42px;
    }
    
    .service-section .home-mobile-service{
        width: 100%;
        display: block;
    }
    .service-items .service-item .service-item-left {
        flex-direction: column;
        align-items: start;
        gap: 38px;
    }

    .service-items .service-item .service-item-left .service-item-title {
        max-width: 400px;
    }

    .service-items .service-item .service-item-text {
        margin-top: 12px;
        max-width: 100%;
    }

    .service-items .service-item .service-item-moreBtn {
        margin-top: 40px;
        width: 100%;
    }

    .service-section {
        margin-top: 50px;
        flex-direction: column;
    }

    .service-section .service-left {
        max-width: 100%;
    }

    .service-section .service-left .service-title {
        font-size: 30px;
    }

    .service-section .service-right-area {
        display: none;
    }


    .footer-section {
        position: relative;
        padding: 52px 60px 60px;
    }

    .footer-section .footer-head {
        width: 100%;
        justify-content: start;
        margin-top: 240px;
        padding: 0;
        border: none;
    }

    .footer-section .footer-head .footer-logo {
        display: none;
    }

    .footer-section .footer-head .footer-links {
        flex-direction: column;
        align-items: start;
        gap: 15px;
        width: 100%;
    }

    .footer-section .footer-head .footer-links a {
        width: 100%;
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
    }

    .footer-section .footer-content .footer-WriteUS {
        position: absolute;
        top: 52px;
        left: 60px;
    }

    .footer-section .footer-content .footer-WriteUS .writeUs-btn {
        max-width: 416px;
    }

    .about-hero {
        margin-top: 65px;
        .what_we_do{
            .what_we_do_boxes{
                grid-template-columns: repeat(2,1fr);
            }
        }
    }

    .about-hero .hero-content {
        margin-top: 50px;
    }

    .about-hero .hero-content .hero-content-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .about-hero .hero-content .hero-content-text {
        font-size: 17px !important;
        line-height: 26px !important;
    }

    .portfolio-hero {
        margin-top: 65px;
    }

    .service-hero {
        margin-top: 65px;
    }

    .title {
        font-size: 48px;
        line-height: 64px;
    }

    .ourTeam {
        margin-top: 98px;
    }

    .ourTeam .ourTeam-title {
        font-size: 42px;
        line-height: 52px;
    }

    .ourTeam .team-members {
        margin-top: 42px;
    }

    .ourTeam .team-members .swiper-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .works-section {
        margin-top: 70px;
    }

    .works-section .works-title {
        font-size: 42px;
        line-height: 52px;
    }

    .works-section .ourPortfolios {
        margin-top: 42px;
    }



    .works-section .ourPortfolios .portfolio-item .portfolio-body .portfolio-name {
        font-size: 28px;
        line-height: 36px;
    }

    .serviceInside-body {
        gap: 80px;
        margin-top: 70px;
    }

    .allBlogs {
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main{
        .contact-form .form-title {
            font-size: 42px;
            line-height: 52px;
        }
    }

    .pagination-area .pagination {
        max-width: 70%;
    }
    .vacancy-container .vacancies .all-vacancies{
        grid-template-columns: repeat(1,1fr);
        gap: 35px 20px;
    }
    .vacancy-detail-container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
}

@media only screen and (max-width: 850px) {

    .blog-section .blog-sliders .swiper-button-next,
    .blog-section .blog-sliders .swiper-button-prev,
    .blog-section .blog-sliders .swiper-pagination {
        display: none;
    }

    .blog-section .blog-sliders .blog-slide-box {
        height: -moz-max-content !important;
        height: max-content !important;
        flex-direction: column-reverse;
        gap: 0 !important;
    }

    .blog-section .blog-sliders .blog-slide-box .blog-slide-content {
        max-width: none !important;
        width: 100% !important;
        border-radius: 0 0 24px 24px !important;
        padding: 24px !important;
    }

    .blog-section .blog-sliders .blog-slide-box .blog-slide-content .slide-content-head .slide-blog-date {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .blog-section .blog-sliders .blog-slide-box .blog-slide-content .slide-content-head .slide-blog-title {
        font-size: 22px !important;
        line-height: 26px !important;
    }

    .blog-section .blog-sliders .blog-slide-box .blog-slide-content .slide-more-detail {
        display: none !important;
    }

    .blog-section .blog-sliders .blog-slide-box .blog-slide-img {
        max-width: none !important;
        height: 240px !important;
        width: 100% !important;
        border-radius: 24px 24px 0 0 !important;
    }

    .blog-section .blog-sliders .blog-slide-box .blog-slide-img img {
        border-radius: 24px 24px 0 0 !important;
    }

    .about-hero .hero-content {
        flex-direction: column;
    }

    .customerFeedback-section .customerFeedback-title {
        font-size: 43px;
        line-height: 53px;
    }

    .customerFeedback-section .customer_Feedbacks {
        margin-top: 42px;
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media only screen and (max-width: 768px) {
    /* Sticky CTA Bar - Mobile */
    .sticky-cta-bar {
        display: flex;
    }

    /* Hide desktop WhatsApp on mobile */
    .whatsApp {
        display: none !important;
    }

    .title {
        font-size: 36px;
        line-height: 48px;
    }
    .customer-comment-hero {
        padding: 0 16px;
        margin-top: 50px;
    }
    .all-comments{
        padding: 0 16px;
        margin-top: 40px;
        grid-template-columns: repeat(1,1fr);
    }
    .all-comments .comment-item {
        padding: 24px;
    }

    nav {
        padding: 12px 16px;
    }

    .hero-section {
        padding: 0 16px;
    }

    .hero-section .hero-main {
        flex-direction: column;
        align-items:start;
    }

    .hero-section .hero-main .hero-title {
        min-width: 0;
        font-size: 28px;
        line-height: 34px;
        max-width: 100%;
    }

    .hero-section .hero-main .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        margin-bottom: 32px;
        width: 100%;
    }

    .hero-section .hero-main .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-section .hero-main .hero_main_swiper {
        max-width: 100%;
    }
    .reference-hero{
        margin-top:50px;
        padding: 0 16px;
    }
    .all-reference {
        padding: 0 16px;
       margin-top: 40px;
    }
    .service-section {
        padding: 0 16px;
    }

    .service-items {
        padding: 0 16px;
    }

    .service-items .service-item {
        padding: 24px;
    }

    .service-items .service-item .service-item-left {
        gap: 24px;
    }

    .service-items .service-item .service-item-left .service-item-title {
        max-width: 275px;
    }

    .service-items .service-item .service-item-text {
        margin-top: 12px;
        max-width: 100%;
    }

    .service-items .service-item .service-item-moreBtn {
        margin-top: 40px;
        width: 100%;
    }

    .serviceInside-hero {
        padding: 0 16px;
        margin-top: 50px;
    }

    .serviceInside-body {
        padding: 0 16px;
    }
    .portfolio-tabs {
        padding: 0 16px;
        gap: 10px;
    }
    .works-section {
        padding: 0 16px;
        margin-top: 40px;
    }

    .works-section .works-title {
        font-size: 30px;
        line-height: 40px;
    }

    .works-section .ourPortfolios {
        margin-top: 28px;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 48px;
    }

    .works-section .ourPortfolios .portfolio-item .portfolio-img {
        padding: 30px;
        width:100%;
        height:auto;
    }
    .works-section .ourPortfolios .portfolio-item .portfolio-img img{
        height:auto;
    }


    .works-section .ourPortfolios .portfolio-item .portfolio-body .portfolio-name {
        font-size: 24px;
        line-height: 32px;
    }

    .works-section .more-work {
        margin-top: 48px;
    }

    .blog-section {
        padding: 0 16px;
    }
    footer{
        margin-top: 100px;
        padding: 0 16px;
    }

    .footer-section {
        padding: 40px 16px 80px;
        border-radius: 28px 28px 0px 0px;
    }


    .footer-section .footer-content .footer-WriteUS {
        width: 95%;
        top: 38px;
        left: 16px;
    }

    .footer-section .footer-content .footer-WriteUS .writeUs-btn {
        width: 100%;
        max-width: none;
    }
    .footer-section .footer-content .footer-right{
        .google_partner{
            margin-left: 0;
            width: 90px;
        }
    }


    .pageNavigate {
        padding: 0 16px;
        margin-top: 115px;
    }

    .about-hero {
        padding: 0 16px;
        margin-top: 50px;
        .who_we{
            grid-template-columns: repeat(1,1fr);
            .content{
                border-radius: 24px 24px 0 0;
                padding: 40px 20px;
                h2{
                    font-size: 40px;
                    line-height: 58px;
                }
                .line{
                    width: 120px;
                }   
            }
            .who_we_img{
                min-height: 0;
                border-radius: 0 0 24px 24px;
                img{
                    border-radius: 0 0 24px 24px;
                }
            }
        }
        .what_we_do{
            margin-top: 40px;
            h2{
                font-size: 40px;
                line-height: 58px;
            }
            .what_we_do_boxes{
                margin-top: 36px;
                .what_we_do_box{
                    gap: 16px;
                    padding: 24px 16px;
                    h3{
                        font-size: 20px;
                        line-height: 28px;
                    }
                }
            }
        }
    }

    .about-hero .hero-content {
        margin-top: 40px;
    }

    .about-hero .hero-content .ourMission,
    .about-hero .hero-content .ourVision {
        padding: 24px;
    }

    .about-hero .hero-content .hero-content-title {
        margin-top: 24px !important;
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .about-hero .hero-content .hero-content-text {
        margin-top: 12px !important;
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .portfolio-hero {
        padding: 0 16px;
        margin-top: 50px;
    }

    .service-hero {
        padding: 0 16px;
        margin-top: 50px;
    }

    .ourTeam {
        padding: 0 16px;
        margin-top: 68px;
    }

    .ourTeam .ourTeam-title {
        font-size: 30px;
        line-height: 40px;
    }

    .ourTeam .team-members {
        margin-top: 28px;
    }

    .ourTeam .team-members .swiper-wrapper {
        display: flex !important;
    }

    .customerFeedback-section {
        padding: 0 16px;
        margin-top: 68px;
    }

    .customerFeedback-section .customerFeedback-title {
        font-size: 30px;
        line-height: 40px;
        font-weight: 700;
    }

    .customerFeedback-section .customer_Feedbacks {
        margin-top: 28px;
    }

    .customerFeedback-section .customer_Feedbacks .customer_Feedback-item {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .customerFeedback-section .customer_Feedbacks .customer_Feedback-item .company-logo {
        width: 52px;
        height: 52px;
    }

    .customerFeedback-section .customer_Feedbacks .customer_Feedback-item .company-logo img {
        width: 52px;
        height: 52px;
    }

    .customerFeedback-section .customer_Feedbacks .customer_Feedback-item .customer_feedback-detail .customer_review {
        margin-top: 28px;
    }

    .serviceInside-body {
        margin-top: 40px;
    }

    .serviceInside-body .serviceInside-category {
        display: none;
    }

    /* Show CTA buttons on mobile - moved to main content */
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 32px;
        margin-bottom: 24px;
    }

    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-button {
        flex: 1;
        min-width: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-button svg {
        width: 18px;
        height: 18px;
    }

    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-order {
        background: #F3BB26;
        color: #141414 !important;
    }
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-order span,
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-order svg {
        color: #141414 !important;
    }

    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-phone {
        background: #141414;
        color: #fff !important;
    }
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-phone span,
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-phone svg {
        color: #fff !important;
    }

    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-whatsapp {
        background: #25D366;
        color: #fff !important;
    }
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-whatsapp span,
    .serviceInside-body .serviceInside-main .service-cta-buttons-mobile .cta-whatsapp svg {
        color: #fff !important;
    }

    .serviceInside-body .serviceInside-main .serviceInsideEntry-text {
        font-size: 16px;
        line-height: 24px;
    }

    .serviceInside-body .serviceInside-main .faq {
        margin-top: 36px;
        gap: 16px;
    }

    .serviceInside-body .serviceInside-main .faq .faq-item .question {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        padding: 20px;
    }

    .serviceInside-body .serviceInside-main .faq .faq-item .question p {
        text-align: start;
        width: 250px;
    }

    .serviceInside-body .serviceInside-main .faq .faq-item .answer {
        padding: 20px;
    }

    .serviceInside-body .serviceInside-main .faq .faq-item .active {
        padding: 20px 20px 0;
    }

    .blog-hero {
        padding: 0 16px;
        margin-top: 50px;
    }

    .blog-hero .backToPage {
        display: block;
    }

    .blog-inside-hero {
        padding: 0 16px;
        margin-top: 50px;
    }

    .allBlogs {
        margin-top: 50px;
        padding: 0 16px;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .blog-Inside {
        padding: 0 16px;
        margin-top: 40px;
        flex-direction: column;
        gap: 0;
    }

    .blog-Inside .blog-Inside-detail .blogInsideDate {
        margin-top: 32px;
    }

    .blog-Inside .blog-Inside-Main {
        margin-top: 60px;
    }

    .blog-Inside .blog-Inside-Main .blog-Inside-img {
        height: auto;
    }

    .blog-Inside .blog-Inside-Main .blogtext {
        margin-top: 20px;
        font-size: 16px;
        line-height: 24px;
    }

    .contact-hero {
        padding: 0 16px;
        margin-top: 32px;
    }
    .map{
        height: 400px;
    }
    .contact-main {
        margin-top: 24px;
        padding: 0 16px;
        gap: 32px;
        display: flex;
        flex-direction: column;
    }
    .contact-main .contact-details {
        order: unset;
    }
    .contact-main .contact-form {
        order: unset;
        padding: 30px;
        margin: 0;
        background: #f5f5f5;
        border-radius: 24px;
        width: 100%;
    }
    .contact-main .contact-form .form-title {
        font-size: 30px;
        line-height: 40px;
    }
    .contact-main .formArea input {
        background: #f5f5f5 !important;
    }
    .contact-main .contact-form .formArea {
        margin-top: 28px;
        row-gap: 24px;
    }
    .contact-main .contact-form .formArea .formItems {
        flex-direction: column;
        gap: 24px;
    }
    .contact-main .contact-form .formArea input {
        font-size: 16px;
        padding: 12px 0;
    }
    .contact-main .contact-form .success-box {
        max-width: 457px;
        padding: 28px;
        box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
    }
    .contact-main .contact-form .success-box .icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .have_a_project-hero {
        padding: 0 16px;
        margin-top: 50px;
    }

    .have_a_project-main {
        padding: 0 16px;
        margin-top: 30px;
        flex-direction: column;
        gap: 40px;
    }

    .have_a_project-main .projectForm,
    .have_a_project-main .projectContact {
        max-width: 100%;
    }
    .have_a_project-main .success-box{
        max-width: 100%;
    }
    .advantages-section {
        padding: 0 16px;
    }

    .advantages-section .advantage-title {
        font-size: 30px;
        line-height: 40px;
    }

    .advantages-section .advantages-slide {
        margin-top: 26px;
    }

    .home-contact-section {
        padding: 0;
    }

    .home-contact-section .home-contact-area {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
    }

    .home-contact-section .home-contact-area .home-contact-content {
        width: 100%;
        text-align: start;
    }

    .home-contact-section .home-contact-area .home-contact-content .home-contact-text {
        max-width: 100%;
    }

    .home-faq-section {
        padding: 0 16px;
    }

    .home-faq-section .home-faq-title {
        font-size: 30px;
        line-height: 40px;
    }

    .home-faq-section .faq-tabs {
        margin-top: 36px;
    }

    .home-faq-section .home-faq-area .acardion__item .acardion__label {
        padding: 20px 40px 20px 20px;
    }
    .vacancy-container {
        padding: 0 16px;
        margin-top: 20px;
    }
    .vacancy-container .vacancy-searchForm{
        gap: 20px;
        padding: 12px 20px;
    }
    .vacancy-container .vacancy-searchForm input{
        padding: 8px 14px;
    }
    .vacancy-container .vacancy-searchForm .searchVacancy{
        gap: 8px;
        padding: 8px 40px;
        min-width: 154px;
    }
    .vacancy-container .vacancies{
        padding: 20px 30px;
    
    }
    .vacancy-container .vacancies .all-vacancies{
        gap: 20px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart{
        padding: 16px 20px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head{
        flex-direction: column;
        align-items: start;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-head .dot{
        display: none;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-salary{
        gap: 2px;
        margin-top: 10px;
        flex-direction: column;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-desc{
        margin-top: 10px;
        gap: 4px;
    }
    .vacancy-container .vacancies .all-vacancies .vacancy-cart .vacancy-cart-tags{
        margin-top: 20px;
    }
    .vacancy-detail-container{
        padding: 0 16px;
        margin-top: 20px;
    }
    .vacancy-detail-container .vacancy-detail{
        padding: 20px;
    }
    .vacancy-detail-container .vacancy-detail h1{
        font-size: 36px;
        line-height: 48px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-main{
        margin-top: 24px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-main .vacancy-detail-text{
        margin-top: 10px;
        gap: 6px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills{
        margin-top: 30px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills .skills{
        margin-top: 10px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-skills .skills p{
        padding: 5px 12px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-salary{
        margin-top: 30px;
    }
    .vacancy-detail-container .vacancy-detail .vacancy-detail-salary p{
        margin-top: 10px;
    }  
    .vacancy-detail-container .vacancy-detail .vacancy-detail-apply{
        margin-top: 30px;
    }


    .vacancy-apply-modal{
        max-width: 100%;
        padding: 50px 20px 60px;
        border-radius: 0;

    }
    .vacancy-apply-modal .close_apply_modal{
        width: 28px;
        height: 28px;
        min-width: 28px;
        left: 16px;
        top: 16px;
    }
    .vacancy-apply-modal .vacancy-apply h2{
        font-size: 24px;
        line-height: 32px;
    }
    .vacancy-apply-modal .vacancy-apply form{
        margin-top: 20px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container{
        gap: 12px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .cv-box{
        padding: 16px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .cv-box img{
        width: 50px;
    }
    .vacancy-apply-modal .vacancy-apply form .cv-container .cv-box h4{
        margin-top: 16px;
    }
    .vacancy-apply-modal .vacancy-apply form .form-items{
        gap: 12px;
        margin-top: 20px;
    }
    .vacancy-apply-modal .vacancy-apply form .sendCv{
        margin-top: 24px;
    }
    .pagination-area {
        padding: 0 16px;
        .pagination {
            padding: 12px;
            max-width: 100%;
            gap: 8px;
            a{
                display: flex;
                align-items: center;
                justify-content: center;
                height: 28px;
                i{
                    font-size: 22px;
                    height: 22px;
                }
            }
            .pagination-pages{
                a{
                    height: auto;
                }
            }
        }   
    }

}

@media only screen and (max-width: 600px) {
    .about-hero{
        .what_we_do{
            .what_we_do_boxes{
                grid-template-columns: repeat(1,1fr);
            }
        }
    }
    .footer-section .footer-content .footer-WriteUS {
        width: 94%;
    }
}

@media only screen and (max-width: 500px) {
    .navbar-section .nav-main .navbar-items-area{
        width:100%;
        right:-100%;
    }
    .navbar-section .nav-main .navbar-items-area .nav-items .dropdown-nav_menu .sub-nav-area .sub-nav-menu{
        max-width:250px;
    }

    .pageNavigate a,
    .pageNavigate span {
        font-size: 14px;
    }

    .footer-section .footer-head {
        margin-top: 275px;
    }

    .footer-section .footer-content .footer-WriteUS {
        width: 93%;
    }
    .footer-section .footer-content{
        flex-direction: column;
        gap: 20px;
        .footer-right{
            .footer-social-medias {
                gap: 10px;
            }
        }
    }
    
    .about-hero .hero-content .ourMission,
    .about-hero .hero-content .ourVision {
        padding: 24px !important;
    }

    /* Sticky CTA Bar - Small Mobile */
    .sticky-cta-bar .cta-btn {
        padding: 14px 16px;
        font-size: 14px;
        gap: 8px;
    }
    .sticky-cta-bar .cta-btn svg {
        width: 20px;
        height: 20px;
    }
    .vacancy-container .vacancy-searchForm{
        flex-direction: column;
        align-items: start;
        gap: 12px;
        border-radius: 20px;
        padding: 16px;
    }
    .vacancy-container .vacancy-searchForm .searchVacancy{
        padding: 8px 20px;
        min-width: 0;
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 450px) {
    .navbar-section .logo {
        width: 80px;
    }
    .hero-section {
        margin-top: 150px;
    }
    .all-comments .comment-item .comment-item-top {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
        .all-reference{
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }
    .all-reference .reference-item{
        width:auto;
    }
    .pageNavigate {
        margin-top: 105px;
    }
    .pageNavigate a,
    .pageNavigate span {
        font-size: 12px;
    }



    .works-section .ourPortfolios .portfolio-item .portfolio-img {
        padding: 20px;
    }


    .blog-section .blog-sliders .blog-slide-box .blog-slide-img {
        height: 200px !important;
    }
}

@media only screen and (max-width: 400px) {

    .pageNavigate a,
    .pageNavigate span {
        font-size: 11px;
    }

    .footer-section .footer-content .footer-WriteUS {
        width: 90.5%;
    }
}

/*# sourceMappingURL=style.css.map */
