/*

Theme Name: My Theme

Theme URI: https://Technology-Brainz.com

Author: Jack

Description: Custom theme with SCF flexible content

Version: 1.0

*/



:root {

    --accent-rgb: hsla(0, 0%, 96%, 0.729);

    --primary: #FFCC00;

    --secondary: #0B63A8;

    --text: #1D1D1B;

    --black: #1D1D1B;

    --white: #FFFFFF;

    --accent: #F5F5F5;

    --gray: #1D1D1B4D;

    --body-text: #6B7280;



    /* Typography */

    --font-body: 'Inter', sans-serif;

    --font-heading: 'Inter', sans-serif;



    /* Spacing */

    --container: 1220px;

    /* --container-padding: 40px 20px; */



    --container-margin: 0 auto;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: var(--font-body);

    background-color: var(--accent);

    color: var(--text);

    line-height: 1.6;

}



.page-wrapper {

    margin-top: -86px;

}





.container {

    max-width: var(--container);

    margin: 0 auto;

    padding: 40px 20px;

    width: 100%;

}



/* section{

    padding: 0;

    margin: 0;

} */



h1,

h2,

h3,

h4,

h5,

h6 {

    font-family: var(--font-heading);

}



h1 {

    font-size: 94px;

}



h2 {

    font-size: 42px;

}



h3 {

    font-size: 28px;

}



.partial-heading {

    color: var(--primary);



}



.sub-heading {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 500;

}





.btn-primary {

    background: var(--primary);

    color: var(--text);

    padding: 15px 25px;

    border: none;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    line-height: 100%;

    text-transform: uppercase;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: all 0.3s ease;

}



.btn-primary::after {

    content: "";

    display: inline-block;

    width: 20px;

    height: 20px;

    background-image: url("../images/primary-btn.svg");

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    transition: transform 0.3s ease;

}





.btn-primary:hover {

    background: var(--primary);

    transform: translateY(-2px);

    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.btn-primary:hover::after {

    transform: translateX(8px);

    transition: transform 0.3s ease;

}







.btn-primary:active {

    transform: translateY(1px);

    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.2);

}



.btn-secondary {

    background: var(--primary);

    color: var(--text);

    padding: 15.5px 25px;

    border: none;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    line-height: 100%;

    text-transform: uppercase;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: all 0.3s ease;

}



.btn-secondary:hover {

    background: var(--primary);

    transform: translateY(-2px);

    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



/*black btn*/

.btn-black {

    background: var(--text);

    color: var(--white);

    padding: 15.5px 25px;

    border: none;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    line-height: 100%;

    text-transform: uppercase;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: all 0.3s ease;

}



.btn-black::after {

    content: "";

    display: inline-block;

    width: 20px;

    height: 20px;

    background-image: url("../images/black-btn.svg");

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    transition: transform 0.3s ease;

}





.btn-black:hover {

    background: var(--text);

    transform: translateY(-2px);

    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.btn-black:hover::after {

    transform: translateX(8px);

    transition: transform 0.3s ease;

}





/*black btn*/



/* Sections */

section {

    padding: var(--section-padding);

}



.section-title {

    font-size: 42px;

}



.section-subtitle {

    color: var(--gray);

    margin-bottom: 50px;

}



/* Utilities */

.text-center {

    text-align: center;

}



.text-primary {

    color: var(--primary);

}



.text-secondary {

    color: var(--secondary);

}



.site-header {

    /* margin-bottom: -80px; */

    border-bottom: 1px solid #b7b7b74d;

    position: relative;

    top: 0;

    width: 100%;

    z-index: 999;

    /* height: 86px; */

}



/* .site-header {

    margin-bottom: -80px;

    border-bottom: 1px solid #b7b7b74d;

    position: absolute;

    top: 0;

    width: 100%;

    z-index: 999;



} */



.header-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 19px 0;

}



/* Logo */

.logo img {

    height: 40px;



}



.logo {

    display: inline-flex;

}



/* Nav */

.nav .nav-item {

    display: flex;

    font-size: 14px;

    font-weight: 500;

    list-style: none;

    gap: 25px;

    text-transform: uppercase;

}



.nav a {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: var(--white);

    text-decoration: none;

    font-size: 14px;

    transition: color 0.3s ease;

}



.nav a svg {

    vertical-align: middle;

    margin-left: 4px;

    transition: transform 0.3s ease;

}



.dropdown:hover a svg {

    transform: rotate(180deg);

}



.nav a:hover {

    color: var(--primary);

}

.nav a:hover svg path {

    fill: var(--primary);

    stroke: var(--primary);

}



.nav a.active {

    color: var(--primary) !important;

}

.nav a.active svg path {

    fill: var(--primary);

    stroke: var(--primary);

}

.dropdown {

    position: relative;

}



.dropdown::after {

    content: '';

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    height: 20px;

    background: transparent;

}



.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    background: var(--white);

    min-width: 180px;

    border-radius: 4px;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;

    margin-top: 5px; 

    pointer-events: none;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    z-index: 100;

}



.dropdown:hover .dropdown-menu,

.dropdown-menu:hover {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;

}



.dropdown-menu li {

    list-style: none;

}



.dropdown-menu li a {

    color: var(--text);

    padding: 12px 16px;

    display: block;

    transition: all 0.3s ease;

    font-size: 14px;

    white-space: nowrap;

}



.dropdown-menu li a:hover {

    background: rgba(0,0,0,0.05);

    color: var(--primary);

    padding-left: 20px;

}



.header-right {

    display: flex;

    align-items: center;

    gap: 15px;

}



.lang {

    color: var(--white);

    font-size: 14px;

}



/* Mobile */

.menu-toggle {

    display: none;

    font-size: 22px;

    color: var(--white);

    cursor: pointer;

}





.hero-section {

    position: relative;

    background: url('../images/hero-bg.webp') no-repeat center center / cover;

    background-size: cover;

    min-height: 110vh;

    display: flex;

    align-items: center;

    z-index: 1;

}



.hero-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(315deg, rgba(11, 99, 168, 0.25) 0%, rgba(3, 30, 53, 0.85) 100%);

    z-index: 1;

}



.hero-content {

    margin-top: 50px;

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    min-height: 500px;

}



.hero-text {

    display: flex;

    max-width: fit-content;

    flex-wrap: nowrap;

    flex-direction: column;

    align-content: flex-start;

    justify-content: center;

    align-items: flex-start;

    gap: 34px;

}



.hero-idea {

    color: var(--primary);

    font-size: 96px;

    font-weight: 700;

    text-decoration: underline;

    text-decoration-color: var(--primary);

    text-decoration-thickness: 4px;

    text-underline-offset: 12px;

}



.hero-text h1 {

    color: var(--white);

    font-size: 94px;

    font-weight: 700;

    line-height: 1.1;

    margin: 0;

}



.hero-highlight {

    color: var(--white);

    font-weight: 400;

}



.hero-description {

    color: rgba(255, 255, 255, 0.9);

    font-size: 18px;

    line-height: 1.8;



    max-width: 570px;

}



/* .about-section {

    padding-top: 49px;

    overflow: hidden;

} */



/* ===== MARQUEE TOP TEXT ===== */

.marquee {

    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    position: relative;

}



.marquee-track {

    display: inline-block;

    padding-left: 100%;

    animation: scroll-left 28s linear infinite;

    font-size: 48px;

    font-weight: 600;

    position: outside;

    color: transparent;

    -webkit-text-stroke: 1px var(--text);

}



@keyframes scroll-left {

    0% {

        transform: translateX(0);

    }



    100% {

        transform: translateX(-100%);

    }

}



/* ===== CONTAINER ===== */





.inner-content {

    display: flex;

    gap: 50px;

    align-items: center;

}



/* LEFT */

.left-image img {

    object-fit: cover;

    width: 586px;

    height: 560px;

    border-radius: 12px;

}



.right-content .tag {

    border: none;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    padding: 0;

}



.right-content h2 {

    line-height: 110%;

    font-size: 42px;

    margin: 10px 0;

}



.right-content .btn-primary {

    margin-top: 40px;

}



.bold-text {

    font-weight: 600;

    font-weight: 600;

    margin-bottom: 10px;

}



.desc {

    color: var(--body-text);

    line-height: 1.6;

}



/* .services {

    padding: 40px 0;

} */





.services-inner {

    max-width: var(--container);

}



.services-inner h5 {

    font-size: 16px;

    margin-bottom: 14px;

    font-weight: 500;

    text-align: center;

    color: var(--secondary);

    text-transform: capitalize;

}



.services-inner .section-title {

    margin-bottom: 60px;

}





.tabs {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 17px;

}



.tab {

    flex: 1;

    max-width: 185px;

    min-width: 182px;

    width: 100%;

    padding: 19px 50px;

    background: var(--white);

    border: 1px solid var(--gray);

    border-radius: 8px;

    font-size: 14px;

    text-align: center;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    /* 12px gap between icon and text */

}



.tab svg {

    width: 45px;

    height: 46px;

    display: block;

}



.tab:hover svg path,

.tab.active svg path {

    fill: var(--accent);

    stroke: var(--accent);

    stroke-width: 0.2px;

}



.tab:hover {

    background: var(--secondary);

    color: var(--white);

    transform: translateY(-2px);

}



.tab.active {

    background: var(--secondary);

    color: var(--white);

    border-color: var(--secondary);

}



.tab-content {

    display: none;

    background: var(--secondary);

    padding: 53px 48px;

    border-radius: 16px;

}



.tab-content.active {

    display: block;

}



.uiux-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 62px;

    flex-wrap: wrap;

}



.uiux-text {

    flex: 1 1 50%;

}



.uiux-text h3 {
    line-height: 110%;
    font-size: 42px;

    font-weight: 700;

    margin-bottom: 26px;

    color: var(--primary);

}



.uiux-text p {

    font-size: 18px;

    line-height: 1.2;

    margin-bottom: 40px;

    color: var(--white);

}



.tools {

    border-radius: 8px;

    background-color: var(--white);

    display: flex;

    align-items: flex-end;

    flex-wrap: wrap;

    padding: 32px 24px;

    gap: 36px;

    margin-top: 50px;

    align-content: center;

    justify-content: center;

    /* align-items: center; */

}





.tools span {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    font-size: 11px;

    font-weight: 600;

    color: var(--text);

    transition: 0.3s;

    cursor: pointer;

}





.uiux-illustration {

    flex: 1 1 400px;

    text-align: center;

}



.uiux-illustration img {

    max-width: 100%;

    height: auto;

}







.startup-inner {

    display: flex;

    gap: 40px;

    flex-wrap: wrap;

    align-items: flex-start;

}



.startup-options {

    flex: 1 1 640px;

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.startup-option {

    height: 113px;

    display: flex;

    gap: 18px;

    background: var(--white);

    padding: 20px;

    border: 1px solid #00000014;

    border-radius: 6px;

    cursor: pointer;

    position: relative;

    transition: all 0.3s ease;

    align-content: center;

    align-items: center;

    transition: all 0.3s ease;

}



.startup-icon {

    width: 52px;

    height: 52px;

    background: #FFCC0026;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;

}



.startup-option h3 {

    margin: 0;

    font-size: 15px;

    max-width: 150px;

    color: var(--text);

    transition: all 0.3s ease;

}



.startup-option p {

    font-size: 14px;

    max-width: 370px;

    color: var(--body-text);

    transition: all 0.3s ease;

}



.startup-arrow {

    position: absolute;

    RIGHT: 42px;

    top: 53%;

    transform: translateY(-50%) translateX(-20px);

    opacity: 0;

    transition: all 0.3s ease;

    font-size: 20px;

    color: var(--primary);

}



.startup-option:hover {

    border-left: 4px solid var(--primary);

    border-radius: 8px;



}



.startup-option:hover h3 {

    color: var(--secondary);

}



.startup-option:hover svg path {

    fill: var(--accent);

    stroke: var(--accent);

    stroke-width: 0.2px;

}



.startup-option:hover .startup-icon {

    background-color: var(--secondary);

}



.startup-option:hover .startup-arrow {

    opacity: 1;

    transform: translateY(-50%) translateX(0);

}



.startup-visual {

    flex: 1 1 400px;

    text-align: center;

}



.startup-visual img {

    max-width: 100%;

    border-radius: 10px;

    transition: opacity 0.3s ease;

}



/* startup section for tablet and mobile */

/* Hide mobile section on desktop */

.startup-section-mobile {

    display: none;

}



/* Show mobile section on tablet/mobile, hide original */

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

    .startup-section {

        display: none;

    }



    .startup-section-mobile {

        display: block;

        padding: 40px 0;

        position: relative;

    }

}



.startup-mobile-inner {

    display: flex;

    flex-direction: column;

    gap: 30px;

    position: relative;

}



.slider-nav {

    position: absolute;

    top: 33%;

    left: 0;

    right: 0;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

    z-index: 10;

    pointer-events: none;

    padding: 0 10px;

}



.slider-prev,

.slider-next {

    width: 40px;

    height: 40px;

    background: var(--primary);

    border: none;

    border-radius: 50%;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;

    pointer-events: auto;

    color: white;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

}



.slider-prev:hover,

.slider-next:hover {

    background: var(--secondary);

    transform: scale(1.05);

}



.slider-prev:active,

.slider-next:active {

    transform: scale(0.95);

}



.slider-prev.disabled,

.slider-next.disabled {

    opacity: 0.4;

    cursor: not-allowed;

    pointer-events: none;

}



.startup-mobile-visual {

    text-align: center;

    width: 100%;

}



.startup-mobile-visual img {

    max-width: 80%;

    height: auto;

    border-radius: 10px;

    transition: opacity 0.3s ease;

}



.startup-mobile-slider {

    display: flex;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    gap: 20px;

    padding: 10px 0 20px;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;

    scroll-behavior: smooth;

}



.startup-mobile-slider::-webkit-scrollbar {

    height: 5px;

}





.startup-mobile-slider::-webkit-scrollbar-track {

    background: var(--white);

    border-radius: 10px;

}



.startup-mobile-slider::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 10px;

}



.startup-mobile-slider::-webkit-scrollbar-thumb:hover {

    background: var(--primary);

}



.startup-mobile-slider {

    scrollbar-color: var(--primary) var(--white);

}



.startup-mobile-option {

    flex: 0 0 85%;

    scroll-snap-align: start;

    background: var(--white);

    padding: 20px;

    border-radius: 12px;

    border: 1px solid #00000014;

    display: flex;

    gap: 15px;

    align-items: center;

    cursor: pointer;

    transition: all 0.3s ease;

}



.startup-mobile-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    background: #FFCC0026;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;

}



.startup-mobile-icon svg {

    width: 28px;

    height: 28px;

}



.startup-mobile-content {

    flex: 1;

}



.startup-mobile-content h3 {

    margin: 0 0 5px 0;

    font-size: 15px;

    font-weight: 600;

    color: var(--text);

    transition: all 0.3s ease;

}



.startup-mobile-content p {

    margin: 0;

    font-size: 12px;

    color: var(--body-text);

    line-height: 1.4;

}



.startup-mobile-option:hover {

    border-left: 3px solid var(--primary);

    background: var(--white);

}



.startup-mobile-option:hover .startup-mobile-icon {

    background: var(--secondary);

}



.startup-mobile-option:hover .startup-mobile-icon svg path {

    fill: var(--accent);

    stroke: var(--accent);

}



.startup-mobile-option:active {

    border-left: 3px solid var(--primary);

    background: var(--white);

}



.startup-mobile-option:active .startup-mobile-icon {

    background: var(--secondary);

}



.startup-mobile-option:active .startup-mobile-icon svg path {

    fill: var(--accent);

    stroke: var(--accent);

}



.startup-mobile-option.active {

    border-left: 3px solid var(--primary);

    background: var(--white);

}



.startup-mobile-option.active .startup-mobile-icon {

    background: var(--secondary);

}



.startup-mobile-option.active .startup-mobile-icon svg path {

    fill: var(--accent);

    stroke: var(--accent);

}



/* Tablet */

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

    .startup-mobile-option {

        flex: 0 0 70%;

    }



    .startup-mobile-content h3 {

        font-size: 16px;

    }



    .startup-mobile-content p {

        font-size: 13px;

    }



    .startup-mobile-visual img {

        max-width: 60%;

    }



    .slider-prev,

    .slider-next {

        width: 45px;

        height: 45px;

    }



    .startup-mobile-option:hover {

        border-left: 3px solid var(--primary);

        background: #f9f9f9;

    }



    .startup-mobile-option:hover .startup-mobile-icon {

        background: var(--secondary);

    }



    .startup-mobile-option:hover .startup-mobile-icon svg path {

        fill: var(--accent);

        stroke: var(--accent);

    }

}



/* Mobile */

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



.home-about .container{

    padding-top: 20px!important;

}

.rw-footer .slick-dots{
        margin: unset !important;

}

.uiux-illustration img{

height:280px!important;
width:280px!important;
}
    .startup-mobile-option {

        flex: 0 0 90%;

        padding: 15px;

        gap: 12px;

    }



    .startup-mobile-icon {

        width: 48px;

        height: 48px;

        min-width: 48px;

    }



    .startup-mobile-icon svg {

        width: 24px;

        height: 24px;

    }



    .startup-mobile-content h3 {

        font-size: 14px;

    }



    .startup-mobile-content p {

        font-size: 11px;

    }



    .startup-mobile-visual img {

        max-width: 90%;

    }



    .slider-prev,

    .slider-next {

        width: 35px;

        height: 35px;

    }



    .slider-nav {

        padding: 0 5px;

    }



    .startup-mobile-option:hover {

        border-left: 3px solid var(--primary);

        background: #f9f9f9;

    }



    .startup-mobile-option:hover .startup-mobile-icon {

        background: var(--secondary);

    }



    .startup-mobile-option:hover .startup-mobile-icon svg path {

        fill: var(--accent);

        stroke: var(--accent);

    }

}



/* Small Mobile */

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

    .startup-mobile-option {

        flex: 0 0 95%;

        padding: 12px;

        gap: 10px;

    }



    .startup-mobile-icon {

        width: 42px;

        height: 42px;

        min-width: 42px;

    }



    .startup-mobile-icon svg {

        width: 20px;

        height: 20px;

    }



    .startup-mobile-content h3 {

        font-size: 13px;

    }



    .startup-mobile-content p {

        font-size: 10px;

    }



    .slider-prev,

    .slider-next {

        width: 30px;

        height: 30px;

    }

}



/* startup section for tablet and mobile end*/

.tech-banner {

    background: url('../images/tech-bg.png') no-repeat center center/cover;

    position: relative;

    padding: 130px;

    margin: 40px 0px;

    color: var(--white);

}



.tech-banner::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.4);

    /* overlay for readability */

}



.tech-banner-inner {

    display: flex;

    position: relative;

    max-width: var(--container);

    margin: var(--container-margin);

    z-index: 2;

    align-items: center;

    flex-direction: column;

}



.tech-banner-text {

    gap: 10px;

    display: flex;

    max-width: 890px;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: center;

    align-items: center;

    flex-direction: column;

}



.tech-banner-text h2 {

    font-size: 52px;

    font-weight: 700;

}



.tech-banner-text h3 {

    font-size: 16px;

    font-weight: 500;

    text-align: center;

    /* margin-bottom: 10px; */

    color: var(--white);

}



.tech-banner-text p {

    font-size: 18px;

    line-height: 1.6;

    font-weight: 400;

    text-align: center;

    color: var(--white);

}





/* Recent Work Section */

/* .recent-work {

    padding-top: 40px;

} */



.rw {

    background: var(--secondary);

    padding: 33px;

    border-radius: 20px;

}



.rw-top-label {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 500;

}



.rw-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 24px;

    flex-wrap: wrap;

    gap: 20px;

}



.rw-h2 {

    color: var(--text);

    font-size: 42px;

    font-weight: 700;

}



/* Slick Slider Container */

.feedback-slider {

    margin: 0 -7px;

}



.feedback-slider .slide {

    padding: 0 7px;

}



.feedback-footer {

    display: flex;

    align-items: center;

    align-content: center;

    justify-content: center;

}



/* Card Styles */

.card {

    border-radius: 12px;

    margin: 12px;

    overflow: hidden;

    background: transparent;

}



.card-top {

    height: 350px;

    position: relative;

    overflow: hidden;

    border-radius: 12px 12px 0 0;

}



.img-y {

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, #f9c200, #e6a800);

    display: flex;

    align-items: center;

    justify-content: center;

}



.img-b {

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, #b0c8e8, #d8e8f8);

    display: flex;

    align-items: center;

    justify-content: center;

}



.img-d {

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, #1a5fa8, #2575c4);

    display: flex;

    align-items: center;

    justify-content: center;

}



.img-y img,

.img-b img,

.img-d img {

    /* width: 80%; */

    height: 100%;

    width: auto;

    object-fit: fill;

}



.ov {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.75);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.3s ease;

}



.card-top:hover .ov {

    opacity: 1;

}



.ov-btn {

    background: #fdd835;

    color: #000;

    border: none;

    padding: 10px 20px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: transform 0.2s ease;

}



.ov-btn:hover {

    transform: scale(1.05);

}



.card-body {

    padding: 16px 0;

}



.tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 10px;

}



.tag {

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(60px);

    -webkit-backdrop-filter: blur(60px);

    border: 0.5px solid var(--accent);

    color: var(--white);

    font-size: 9px;

    font-weight: 500;

    padding: 4px 10px;

    border-radius: 20px;

    letter-spacing: 0.5px;

}



.card-title {

    color: var(--primary);

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;

    line-height: 1.3;

}



.card-desc {

    color: var(--white);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    opacity: 0.9;

}



.rw-footer {

    display: flex;

    justify-content: space-between;

    flex-direction: row-reverse;

    align-items: center;

    margin: 10px;

}



/* Slick Slider Dots Override */

.slick-dots {

    position: static !important;

    display: flex !important;

    gap: 8px;

    padding: 12px 24px !important;

    background-color: var(--accent);

    border-radius: 6px;

    width: auto !important;

    bottom: auto !important;

    margin: 0 !important;

    order: 1;

    /* Dots left side */

}



.slick-dots li {

    width: auto !important;

    height: auto !important;

    margin: 0 !important;

    padding: 0 !important;

}



.slick-dots li button {

    width: 8px !important;

    height: 8px !important;

    padding: 0 !important;

    background-color: var(--body-text) !important;

    transition: all 0.3s ease !important;

}



.slick-dots li button::before {

    display: none !important;

    content: none !important;

}



.slick-dots li.slick-active button {

    background: #fdd835 !important;

    transform: scale(1.25);

}



/* Remove default slick focus outline */

.slick-dots li button:focus {

    outline: none;

}







/* section styling – clean, spacious */

/* .outsourcing-section {

    padding-bottom: 40px;
   

} */


.outsourcing-section{

	 overflow: visible !important;

}
.outsourcing-header {

    display: flex;

    text-align: center;

    margin-bottom: 56px;

    flex-direction: column;

    flex-wrap: nowrap;

    gap: 18px;

    align-content: center;

    justify-content: center;

    align-items: center;

}



.outsourcing-header h5 {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 500;

}





.section-subtitle {

    max-width: 790px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.5;

    color: var(--body-text);

    font-weight: 400;

    opacity: 0.85;

}



/* cards grid */

.outsourcing-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
	 [data-aos] {     visibility: visible !important; }
 
}



/* card styling */

.outsourcing-card {

    display: flex;

    background: #FFFFFF;

    border-radius: 8px;

    padding: 25px 20px;

    box-shadow: var(--card-shadow);

    transition: transform 0.25s ease, box-shadow 0.3s ease;

    flex-direction: column;

}



.outsourcing-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);

}



.outsourcing-card .icon {

    max-width: 52px;

    max-height: 52px;

    font-size: 48px;

    margin-bottom: 20px;

    display: inline-block;

    color: #2c7da0;

}



.outsourcing-card h3 {

    width: fit-content;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 12px;

    color: var(--text);

    letter-spacing: -0.2px;

    position: relative;

    display: inline-block;

}



.outsourcing-card h3::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    height: 3px;

    width: 100%;

    background: var(--black);

    /* black underline initially */

    transform: scaleX(1);

    transform-origin: left;



    background-size: 200% 100%;

    background-position: 100% 0%;

    border-radius: 2px;

}



.outsourcing-card:hover h3::after {

    background: linear-gradient(90deg, #000000, #facc15, #facc15, #000000);

    background-size: 300% 100%;

    background-position: 100% 0%;

    animation: slideYellow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}



@keyframes slideYellow {

    0% {

        background-position: 100% 0%;

    }



    100% {

        background-position: 0% 0%;

    }

}



.outsourcing-card h3::after {

    transition: background 0.3s ease, background-position 0s;

}







.outsourcing-card h3 {

    transition: color 0.2s;

}



/* card paragraph & list */

.outsourcing-card p {

    font-size: 16px;

    font-weight: 400;

    color: var(--body-text);

    margin-bottom: 12px;

    line-height: 1.45;

}



.outsourcing-card ul {

    list-style: none;

    padding: 0;

    margin-top: 8px;

}



.outsourcing-card ul li {

    font-size: 14px;

    font-weight: 400;

    margin-bottom: 8px;

    position: relative;

    padding-left: 28px;

    color: #2c3e50;

    font-weight: 450;

}



.outsourcing-card ul li::before {

    content: "";

    width: 6px;

    height: 6px;

    background-color: var(--secondary);

    border: none;

    position: absolute;

    left: 4px;

    top: 9px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    line-height: 1;

    align-content: space-around;

    flex-direction: row;

}



.outsourcing-card .icon {

    transition: transform 0.2s;

    display: inline-block;

}



.outsourcing-card:hover .icon {

    transform: scale(1.02);

}





/* Impact section */

.impact-section {

    background: var(--primary);

    padding: 40px 0;

    margin: 40px 0;

    color: var(--text);

}



.impact-inner {

    display: flex;

    flex-wrap: wrap;

    gap: 45px;

    align-items: center;

}



.impact-text {

    flex: 1 1 550px;

}



.impact-text h1 {

    line-height: 110%;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 20px;

}



.impact-text p {

    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 17px;

    color: var(--text);

}



.impact-stats {

    flex: 1 1 585px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

}



.stat {

    padding: 48px 16px 48px 42px;

    display: flex;

    transition: transform 0.3s ease;

    flex-direction: column;

    flex-wrap: nowrap;

    align-content: flex-start;

    align-items: flex-start;

}



/* .stat:hover {

  transform: translateY(-5px);

} */



.stat h2 {

    font-size: 64px;

    color: var(--text);

}



.stat p {

    font-size: 16px;

    color: var(--text);

}



/* feeback section  */



.feedback-header {

    text-align: center;

    margin-bottom: 50px;

}



.feedback-header h5 {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 500;

}



.section-title {

    font-size: 42px;

    font-weight: 700;

    color: var(--text);

    margin-bottom: 15px;

}



.section-subtitle {

    max-width: 700px;

    margin: 0 auto;

    font-size: 16px;

    color: var(--body-text);

    line-height: 1.5;

}



/* Card Style */

.feedback-card {

    background: white;

    border-radius: 16px;

    padding: 36px;

    margin: 10px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s;

}



.feedback-card:hover {

    transform: translateY(-5px);

}



.feedback-content p {

    font-size: 15px;

    line-height: 1.6;

    color: #334155;

    margin-bottom: 20px;

    font-style: italic;

}



.feedback-author {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;

}



.feedback-author img {
    object-position: center top;

    width: 45px;

    height: 45px;

    object-fit: cover !important;

    border-radius: 50%;

    background: #cbd5e1;

}



.feedback-author h4 {

    font-size: 16px;

    font-weight: 600;

    color: #1e293b;

}



.feedback-author span {

    font-size: 13px;

    color: #64748b;

}



.company {

    display: flex;

    gap: 5px;

    align-items: center;

}



.feedbak-info {

    display: flex;

    flex-direction: row;

    justify-content: space-between;

}



.stars {

    color: #facc15;

    font-size: 16px;

}



/* Dots Styling */

.slick-dots {

    bottom: -40px;

}



.slick-dots li button:before {

    display: none;

}



.slick-dots li.slick-active button {

    width: 28px;

    background: var(--primary);

}



/* Square Dots - 8px by 8px, no radius */

/* .feedback-section {

    padding: 40px 0px;

} */



.feedback-section .slick-dots {

    position: relative;

    margin: auto;

    width: fit-content !important;

    padding: 12px 24px;

    background-color: var(--white);

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

    bottom: -30px;

    display: flex !important;

    gap: 12px;

    margin-top: auto !important;

    align-content: center;

    flex-direction: row;

    border-radius: 6px;

    flex-wrap: nowrap;

    justify-content: center !important;

}



.feedback-section .slick-dots li {

    margin: 0;

    width: auto;

    height: auto;

}



.feedback-section .slick-dots li button {

    width: 8px;

    height: 8px;

    background: #cbd5e1;

    border-radius: 0px;

    padding: 0;

    transition: all 0.3s ease;

}



.feedback-section .slick-dots li button::before {

    display: none;

}



.feedback-section .slick-dots li.slick-active button {

    width: 8px;

    height: 8px;

    background: var(--primary);

    border-radius: 0px;

}



.feedback-section .slick-dots li button:hover {

    background: #94a3b8;

}



/* footer section */

.footer-consult-container {

    width: 100%;

    max-width: var(--container);

    margin: 0 auto;

    padding: 0 20px;

}



.footer-consult-box {

    padding: 40px 40px 130px 40px;

    text-align: center;

}



.consult-sub {

    color: var(--white);

    font-weight: 600;

    margin-bottom: 10px;

}



.consult-title {

    font-size: 52px;

    margin-bottom: 10px;

    color: var(--primary);

}



.consult-desc {

    color: var(--white);

    margin-bottom: 20px;

    font-size: 16px;

    line-height: 1.6;

}









.main-footer {

    background: var(--text);

    color: var(--white);

    padding: 50px 0 0 0;

}



.footer-inner {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

}



.footer-title {

    color: var(--primary);

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 15px;

    position: relative;

    display: inline-block;

}



.underline-footer::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -4px;

    width: 100%;

    height: 3px;

    background: linear-gradient(to right, var(--secondary), var(--primary));

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.4s ease;

}



.underline-footer:hover::after {

    transform: scaleX(1);

}



.footer-col p {

    color: var(--white);

    line-height: 1.6;

}



.footer-links,

.footer-contact {

    list-style: none;

    padding: 0;

}



.footer-links li,

.footer-contact li {

    margin-bottom: 10px;

}

.footer-contact a{

    color: var(--accent);

}



.footer-links a {

    color: var(--white);

    text-decoration: none;

    transition: 0.3s ease;

}



.footer-links a:hover {

    color: var(--primary);

}



.footer-subscribe {

    display: flex;

    gap: 10px;

    margin-top: 10px;

}



.footer-subscribe input {

    flex: 1;

    padding: 12px;

    border-radius: 6px;

    border: none;

    outline: none;

}



.footer-social {

    display: flex;

    gap: 15px;

    margin-top: 20px;

}



.footer-social a {

    width: 35px;

    height: 35px;

    /* background: var(--primary); */

    color: var(--text);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    font-weight: bold;

    transition: 0.3s ease;

}



.footer-social a:hover {

    transform: scale(1.05);

}



.footer-bottom {

    display: flex;

    justify-content: space-evenly;

    border-top: 1px solid var(--body-text);

    text-align: center;

    padding: 21px;

    margin-top: 40px;

}



.footer-bottom p {

    margin: 0;

    color: var(--white);

}



/* about page  */

.about-hero {

    padding-top: 86px;

    position: relative;

    max-height: 565px;

    background: url('../images/about-hero.png') no-repeat center center/cover;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

}



.about-hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(11, 37, 69, 0.7);

}



.about-hero-content {

    position: relative;

    max-width: 730px;

    min-height: 565px;

    text-align: center;

    display: flex;

    z-index: 2;

    flex-direction: column;

    justify-content: center;

    align-content: center;

    align-items: center;

}



.about-hero-title {

    font-size: 64px;

    line-height: 112%;

    margin-bottom: 20px;

}



.about-hero-subtitle {

    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

    color: var(--accent);

}



/* who we are section  */

.who-inner {

    display: flex;

    flex-direction: row;

    justify-content: space-between;

    gap: 40px;

    align-items: center;

    flex-wrap: wrap;

    padding: 70px 0;

}



.who-head {

    width: 25%;

}



.who-head h2 {



    font-size: 44px !important;

    line-height: 120%;

    color: var(--text);

    font-weight: 700;

}



.who-p {

    width: 70%;

}



.who-p p {

    font-size: 16px;

    line-height: 33px;

    color: var(--body-text);

}



/* who we are section END */



/* about section  */

.about-section {

    padding: 40px 0px 40px 0px;

    background: var(--white);

}

.home-about .container{

    padding-top: 80px;

}



.about-inner {

    display: flex;

    gap: 60px;

    align-items: flex-start;

}



.about-image {

    flex: 1 1 50%;

}



.about-image img {

    width: 100%;

    border-radius: 10px;

    object-fit: cover;

    height:555px;

}



.about-content {

    flex: 1 1 50%;

}



.about-subtitle {

    color: var(--secondary);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

}



.about-title {

    font-size: 44px;

    margin-bottom: 20px;

    color: var(--text);

}



.about-desc {

    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 30px;

    color: var(--body-text);

}



.about-block {

    padding-left: 20px;

    display: flex;

    margin-bottom: 39px;

    gap: 16px;

    flex-direction: row;

    flex-wrap: nowrap;

    align-items: flex-start;

}



.about-bl-icon img {

    width: 24px;

    height: 24px;

    margin-top: 12px;

}



.about-block h3 {

    font-size: 20px;

    margin-bottom: 8px;

    color: var(--text);

}



.about-block p {

    font-size: 15px;

    color: var(--body-text);

}



/* about section  END*/



/* project section */

.project {

    margin: 40px 0px;

    position: relative;

    background-image: url('../images/project-bg.jpg');

    background-size: cover;

    background-position: center;

    overflow: hidden;

}



.project-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.52);

    /* black overlay with 52% opacity */

    z-index: 1;

}



.project-inner {

    display: flex;

    height: 714px;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    position: relative;

    z-index: 2;

    /* content above overlay */

}



.project-content {

    display: flex;

    flex-direction: column;

    gap: 16px;

    align-items: center;

    text-align: center;

}



.project-content h2 {

    line-height: 100%;

    font-size: 44px;

    color: var(--white);

    font-weight: 700;



}



.project-content p {

    font-size: 16px;

    color: var(--white);

    line-height: 1.6;

    max-width: 600px;

}



/* project section END */



/* about page end */



/*--------------------------------------------------- Digital Solutions page ----------------------------------------------*/





/* Solutions Section */

.solutions-section {

    padding-top: 40px;

}



.top-line {

    background-color: var(--secondary);

    width: 100%;

    height: 4px;

}



.solutions-header {

    display: flex;

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px auto;

    flex-direction: column;

    gap: 8px;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: center;

    align-items: center;

}



.solutions-header h5 {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 500;

}



.solutions-header h2 {

    font-size: 42px;

    color: var(--text);

}



.solutions-header p {

    font-size: 16px;

    color: var(--body-text);

}



/* Grid */

.solutions-grid {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 35px;

}



/* Cards */

.solution-card {

    width: 370px;

    background: var(--white);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;

}



.solution-card:hover {

    transform: translateY(-6px);

}



.solution-card-in {

    padding: 20px;

}



.solution-card img {

    width: 100%;

    height: 190px;

    object-fit: cover;

    border-radius: 12px;

}



.solution-card h3 {

    font-size: 22px;

    padding: 15px 0px;

    color: var(--text);

}



.solution-card p {

    font-size: 15px;

    color: var(--body-text);

    padding: 0 0 35px 0px;

    line-height: 1.6;

}



.learn-more {

    color: var(--secondary);

    text-decoration: none;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    line-height: 100%;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: all 0.3s ease;

}



.learn-more:hover {

    transform: scale(1.05);

}





.more-box {



    display: flex;

    flex-direction: row;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: space-between;

    align-items: center;

}



.img-box {

    display: flex;

    justify-content: center;

    align-items: center;

    background-color: #F0F5FF;

    height: 56px;

    width: 56px;

    border-radius: 8px;

}



.more-box img {

    width: 28px;

    height: 28px;

    object-fit: contain;

}



/* Why section css */

/* Why Choose Us Section */

.why-section {

    margin: 40px 0px;

    padding: 40px 0;

    background: var(--secondary);

    /* blue background */

}



.why-inner {

    display: flex;

    gap: 60px;

    align-items: center;

}



.why-content {

    flex: 1 1 50%;

    color: var(--white);

}



.why-subtitle {

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 10px;

    color: var(--white);

}



.why-title {

    line-height: 110%;

    font-size: 42px;

    margin-bottom: 20px;

    color: var(--white);

}



.why-desc {

    font-size: 18px;

    line-height: 1.6;

    margin-bottom: 30px;

    color: var(--white);

}



.why-block {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 24px;

}



.why-block h3 {

    font-size: 18px;

    font-weight: 700;

    /* margin-bottom: 8px; */

    color: var(--white);

}



.why-block p {

    font-size: 15px;

    color: var(--white);

    line-height: 1.6;

}



.why-block .icon {

    height: 48px;

    width: 48px;

    background-color: var(--primary);

    border-radius: 4px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}



.why-image {

    flex: 1 1 50%;

}



.why-image img {

    width: 100%;

    border-radius: 10px;

    object-fit: cover;

}



/* Why section css END */



/* our process section css  */



    /* .process-section {

        padding-top: 40px;

    } */



.process-header {

    text-align: center;

    max-width: 600px;

    margin: 0 auto 50px auto;

}



.process-subtitle {

    font-size: 16px;

    font-weight: 600;

    color: var(--secondary);

    margin-bottom: 10px;

}



.process-title {

    font-size: 36px;

    margin-bottom: 15px;

    color: var(--text-color);

}



.process-desc {

    font-size: 16px;

    color: var(--body-text);

    line-height: 1.6;

}



/* Flex Row */

.process-row {

    display: flex;

    gap: 25px;

    justify-content: center;

}



.process-card {

    flex: 1;

    display: flex;

    gap: 20px;

    /* justify-content: center; */

    background: var(--white);

    border-radius: 12px;

    padding: 33px 25px;

    text-align: center;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;

    flex-direction: column;

    flex-wrap: nowrap;

    align-items: flex-start;

}



.process-card:hover {

    transform: translateY(-6px);

}



.process-number {

    background: var(--primary);

    /* yellow background */

    color: var(--white);

    font-weight: 700;

    font-size: 20px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.process-card h3 {

    font-size: 20px;

    color: var(--text-color);

}



.process-card p {

    text-align: left;

    font-size: 15px;

    color: var(--body-text);

    line-height: 1.6;

}



/* our process section css END*/





/* our portfolio page css   */

/* Tech Portfolio Section */

.tech-portfolio-section {

    padding-top: 40px;

}



.tech-portfolio-header {

    text-align: center;

    display: flex;

    margin-bottom: 70px;

    flex-direction: column;

    align-items: center;

}



.tech-portfolio-subtitle {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 10px;

}



.tech-portfolio-title {

    font-size: 36px;

    margin-bottom: 20px;

    font-weight: 700;

    color: var(--text);

}



/* Tabs */

.tech-portfolio-tabs {

    border: 1px solid var(--body-text);

    padding: 10px;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

    /* margin-bottom: 70px; */

    border-radius: 50px;

    background-color: var(--accent);

    width: fit-content;

    align-items: center;

}



.tech-tab {

    font-family: 'inter';

    display: inline-flex;

    gap: 5px;

    background: none;

    padding: 12px 28px;

    border: none;

    border-radius: 40px;

    font-size: 16px;

    font-weight: 600;

    color: var(--text);

    cursor: pointer;

    transition: all 0.5s ease;

}



.tech-tab img {

    opacity: 0;

    transition: opacity 0.3s ease;

}



.tech-tab:hover {

    background: var(--primary);

}



.tech-tab.active {

    background: var(--primary);



}



.tech-tab.active img,

.tech-tab:hover img {

    opacity: 1;

}





/* Tab Content */

.tech-tab-content {

    display: none;

}



.tech-tab-content.active {

    display: block;

}



.tech-portfolio-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}



.tech-portfolio-card {

    display: flex;

    position: relative;

    padding: 10px;

    height: 300px!important;

    border-radius: 15px;

    background-size: cover;

    background-position: center;

    overflow: hidden;

    transition: transform 0.3s ease;

    flex-direction: column;

	background-repeat: no-repeat;

    justify-content: flex-end;

	border:0.5px solid gray!important;

}



.tech-portfolio-card:hover {

    transform: translateY(-8px);

}



/* Overlay */

.tech-card-overlay {

    position: absolute;

    inset: 0;


}



.tech-card-body {
	
	display:none!important;
    background: var(--accent);

    /* position: absolute; */

    padding: 20px;

    border-radius: 5px;


	border:1px solid black!important;

    z-index: 2;

    color: var(--white);

}



.tech-card-title {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 12px;

    line-height: 1.3;

    color: var(--text);

}



.tech-card-text {

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 20px;

    color: var(--body-text);

    max-width: 70%;

}



.tech-card-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 20px;

}



.tech-card-logo .tools {

    background: none;

    padding: 0;

    margin: 0;

    border-radius: 8px;

    display: flex;

    align-items: flex-end;

    flex-wrap: wrap;

    gap: 36px;

    align-content: center;

}



.tech-card-logo {

    display: flex;

    justify-content: space-between;

    flex-wrap: nowrap;

    align-items: flex-end;

}







.tech-card-tags span {

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(4px);

    padding: 6px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 500;

    color: white;

    border: 0.5px solid rgba(255, 255, 255, 0.3);

}



.tech-case-study {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #f9c200;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: gap 0.3s ease;

}



.tech-case-study:hover {

    gap: 12px;

    color: #f9c200;

}



.tech-download-btn {

    display: inline-flex;

    height: fit-content;

    border-radius: 5px;

    align-items: center;

    color: var(--white);

    padding: 10px 20px;

    background-color: #0B63A8;

    text-decoration: none;

    transition: all 0.3s ease;

}



.tech-download-btn:hover {

    background: #e6a800;

    gap: 12px;

}



/* our portfolio page css  END */



/* Digital Solutions page END */



/* Our Services page css */

.our-services-section .solutions-header {

    max-width: 100%;

}



.solution-card-body {

    padding: 0 17px;

}



.solution-logo {

    width: 61px;

    margin-top: -60px;

    background-color: var(--secondary);

    border-radius: 53%;

    display: inline-flex;

    height: 61px;

    align-items: center;

    justify-content: center;

    position: relative;

    /* required for pseudo-element */

    transition: all 0.3s ease;

    border: none;

}



.solution-logo img {

    width: 35px;

    height: 35px;

    object-fit: contain;

    position: relative;

    z-index: 2;

}



.solution-logo::before {

    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 53%;

    padding: 4px;

    background: transparent;

    border: 4px solid var(--white);

    pointer-events: none;

    transition: all 0.3s ease;

    opacity: 1;

}



.service-card:hover .solution-logo::before {

    animation: rotateBorder 0.8s linear forwards;

    border-color: var(--primary);

}



.service-card p {

    color: var(--text);

}



.service-card:hover {

    background-color: var(--primary);

}



.service-card:hover .solution-logo {

    border-color: var(--primary);

    animation: rotateBorder 0.5s linear forwards;

}



.service-card:hover .learn-more {

    color: var(--white);

}



.learn-more svg {

    transition: all 0.3s ease;

}



.service-card:hover .learn-more svg {

    background-color: var(--white);

    border-radius: 50%

}



@keyframes rotateBorder {

    from {

        transform: rotate(0deg);

    }



    to {

        transform: rotate(360deg);

    }

}



.consulting-flow {

    margin: 40px 0px;

    padding: 40px 0;

    background: var(--secondary);

    /* global blue */

}



.flow-header {

    text-align: center;

    margin-bottom: 50px;

}



.flow-subtitle {

    font-size: 16px;

    font-weight: 600;

    color: var(--white);

    margin-bottom: 10px;

}



.flow-title {

    font-size: 42px;

    color: var(--white);

}



.flow-row {

    display: flex;

    gap: 58px;

    justify-content: center;

}



.flow-card {

    flex: 1;

    text-align: left;

    transition: 0.3s ease; 

    padding:15px;

}



.flow-card:hover {

    transform: translateY(-6px);
	background-color:#FFCC00;
	transition:0.3s ease-in-out!important;
	border-radius:10px;
	

}

.flow-icon:hover {



}



.flow-icon {

    width: 56px;

    height: 56px;

    background-color: var(--primary);

    border-radius: 50%;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 24px;


transition:0.3s ease-in-out!important;

}



.flow-card h3 {

    font-size: 18px;

    margin-bottom: 10px;

    color: var(--white);

}



.flow-card p {

    font-size: 14px;

    color: var(--white);

    line-height: 1.6;

}



/* .stats-flow {

    padding: 40px 0;

} */



.stats-inner {

    display: flex;

    align-items: center;

    gap: 30px;

}





.stats-side img {

    width: 100%;

    border-radius: 12px;

    object-fit: cover;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

}



.stats-center {

    /* flex: 2; */

    max-width: 500px;

    display: flex;

    flex-direction: column;

    gap: 25px;

}



.stats-grid {

    display: flex;

    gap: 40px;

}



.stats-card {

    flex: 1;



}



.stats-card h2 {

    font-size: 56px;

    font-weight: 800;

    color: var(--primary);

}



.stats-card h3 {

    font-size: 18px;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 8px;

}



.stats-card p {

    font-size: 14px;

    color: var(--body-text);

    line-height: 1.6;

}





/* Our Services page css END */

/* Contact us page css  */

.business-hours {

    padding: 40px 0;

}



.hours-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    background: url("../images/business-hours.png") center/cover no-repeat;

    border-radius: 20px;

    padding: 30px;

}



.hours-content {

    color: var(--white);

}



.hours-subtitle {

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--white);

}



.hours-text {

    font-size: 20px;

    color: var(--white);

    margin-bottom: 8px;

}



.hours-cta {

    font-size: 36px;

    font-weight: 600;

    color: var(--white);

}



.hours-action {

    flex-shrink: 0;

}



.hours-action .btn-secondary {

    display: inline-flex;

    min-width: 300px;

    align-items: center;

    justify-content: center;

    align-content: center;

}



/* Contact flow section css */

/* .contact-flow {

  padding: 40px 0;

} */



.contact-inner {

    display: flex;

    gap: 40px;

    align-items: flex-start;

}



.contact-info {

    flex: 1;

}



.contact-title {

    font-size: 16px;

    font-weight: 500;

    color: var(--secondary);

    margin-bottom: 10px;

}



.contact-heading {

    font-size: 42px;

    font-weight: 700;

    line-height: 112%;

    color: var(--text-color);

    margin-bottom: 15px;

}



.contact-desc {

    font-size: 16px;

    color: var(--body-text);

    margin-bottom: 20px;
text-align: justify!important;

}



.contact-list {

    align-items: start;

    display: flex;

    flex-direction: column;

    gap: 10px;

    max-width: 350px;

    list-style: none;

    background: none;

    padding: 0;

}



.contact-list li {

    font-size: 15px;

    color: var(--body-text);

    margin-bottom: 10px;

}



.contact-item {

    display: flex;

    gap: 18px;

    flex-direction: row;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: flex-start;

    align-items: flex-start;

}



.item-left {

    min-width: 62px;

    width: 62px;

    height: 62px;

    background-color: var(--secondary);

    display: inline-flex;

    border-radius: 12px;

    align-items: center;

    justify-content: center;

}



.item-left img {

    width: 31px;

    height: 31px;

}



.item-right p {

    color: var(--text);

    text-align: start;

    font-size: 20px;



}



.item-right a {

    text-align: start;

    font-size: 20px;

    text-decoration: none;

    color: var(--secondary);

}



.contact-form {

    flex: 1;

    min-width: 655px;

    background: var(--secondary);

    padding: 32px;

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

}



.form-title {

    font-size: 42px;

    font-weight: 700;

    color: var(--white);

    text-align: center;

    margin-bottom: 20px;

}



.contact-form input,

.contact-form select,

.contact-form textarea {

    width: 100%;

    padding: 20px;

    margin-bottom: 15px;

    border-radius: 5px;

    border: 1px solid #ddd;

    font-size: 14px;

}



.contact-form textarea {

    min-height: 120px;

    resize: none;

}



.contact-50 {

    display: flex;

    gap: 15px;

    flex-direction: row;

    flex-wrap: nowrap;

}



.checkbox {

    font-size: 16px;

    color: var(--white);

    display: flex;

    gap: 8px;

    margin-bottom: 20px;

    flex-wrap: nowrap;

    flex-direction: row;

    justify-content: center;

    align-content: center;

    align-items: center;

}



.checkbox input {

    width: fit-content;

    margin: 0;

}



.contact-form .btn-secondary {

    width: 100%;

    display: inline-flex;

    text-align: center;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: center;

    align-items: center;

}



/* Counter section css  */

/* .counter-flow {

    padding: 40px 0;

} */



.counter-flow .subtitle p {

    text-align: center;

    font-size: 16px;

    font-weight: 500;

    color: var(--secondary);

    margin-bottom: 10px;

}



.counter-flow .subtitle h2 {

    text-align: center;

    font-size: 42px;

    margin-bottom: 60px;

}



.counter-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    text-align: center;

}



.counter-item {

    border: 1px solid rgba(11, 99, 168, 0.4);

    background: var(--white);

    border-radius: 10px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    padding: 25px;

    transition: 0.3s ease;

}



.counter-highlight {

    background-color: var(--secondary) !important;

}



.counter-item:hover {

    transform: translateY(-6px);

}



.counter-item h2 {

    font-size: 62px;

    font-weight: 700;

    color: var(--secondary);

}



.counter-highlight h2 {

    font-size: 62px;

    font-weight: 700;

    color: var(--primary);

}



.counter-item p {

    font-size: 26px;

    font-weight: 700;

    color: var(--text);

}



.counter-highlight p {

    font-size: 26px;

    font-weight: 700;

    color: var(--white);

}



/* Counter section css END */

/* Contact flow section css end */

/* Contact us page css END */



/*-------------------------- Clients page css ------------------  */



.industries-flow {

    padding-top: 40px;

}



.industries-header {

    display: flex;

    flex-direction: column;

    margin: 0 auto 60px auto;

    align-items: center;

}



.industries-header h5 {

    color: var(--secondary);

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 1px;

    text-align: center;

    margin-bottom: 10px;

}



.industries-header h2 {

    text-align: center;

    font-size: 42px;

    margin-bottom: 20px;

    line-height: 112%;

}



.industries-header p {

    text-align: center;

    font-size: 18px;

    color: var(--body-text);

    width: 80%;

}



.industries-inner {

    display: flex;

    gap: 40px;

}



.industries-tabs {

    flex: 0 0 40%;

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.indust-icon {

    background-color: var(--accent);

    display: inline-flex;

    align-items: center;

    height: 59px;

    width: 59px;

    justify-content: center;

    /* background-color: red; */

    border-radius: 50%;

    transition: all 0.5s ease;

}



.indust-icon svg {

    height: 35px;

    width: 35px;

    transition: all 0.5s ease;

}



.industry-tab {

    display: inline-flex;

    gap: 10px;

    min-height: 89px;

    padding: 12px 20px;

    border: none;

    background: var(--white);

    border-radius: 6px;

    cursor: pointer;

    text-align: left;

    font-size: 20px;

    font-weight: 700;

    transition: 0.3s ease;

    flex-direction: row;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: flex-start;

    align-items: center;

    transition: all 0.5s ease;

}



.indust-right {

    padding: 10px 0px;

}

.indust-right img{

    height:60px;
    width:60px;
    fill: #0B63A8!important;
    path:#0B63A8!important;

}


.indust-right .btn-secondary {

    color: var(--white);

    background-color: var(--secondary);



}



.industry-tab.active {

    background: var(--secondary);

    color: var(--white);

}



.industry-tab.active .indust-icon {

    background: var(--primary);

}



.industry-tab.active .indust-icon svg path {

    fill: var(--text);

}



.industries-content {

    flex: 0 0 60%;

}



.industry-content-inner {

    display: flex;

    gap: 30px;

}

.industry-content-inner .indust-left img{


height: 315px;
    width: 270px;
    object-fit: cover;
    border: 1px solid #dddddd;
    }

.industry-content {

    padding: 20px 30px;

    background-color: var(--white);

    border-radius: 10px;

    display: none;

}



.industry-content ul li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 28px;

    height: 28px;

    background-image: url("../images/list-arrow.svg");

    background-size: contain;

    background-repeat: no-repeat;

}



.industry-content.active {

    display: block;

}





.industry-content img {

    border-radius: 12px;
    

}



.industry-content h3 {

    font-size: 24px;

    color: var(--secondary);

    margin-bottom: 10px;

}



.industry-content p {

    font-size: 16px;

    color: var(--text);

    margin-bottom: 15px;

}



.industry-content ul {

    margin-bottom: 36px;

}



.industry-content ul li {

    font-size: 14px;

    color: var(--text);

    margin-bottom: 8px;

    list-style: none;

    position: relative;

    padding-left: 35px;

}



/* acheivment section css  */





.achievements-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.achievements-text {

    width: 70%;

}



.achievements-desc {

    font-size: 16px;

    font-weight: 700;

    color: var(--body-text);

    line-height: 1.6;

}



.achievements-title {

    font-size: 14px;

    font-weight: 600;

    color: var(--secondary);

    margin-bottom: 8px;

}



.achievements-heading {

    font-size: 42px;

    font-weight: 700;

    color: var(--text-color);

}



.achievements-header .btn-secondary {

    padding: 12px;

    transition: 0.3s ease;

}



.master-container {

    margin-top: 20px;

    margin-bottom: 80px;

    border-top: 1px solid rgba(0, 0, 0, 0.2);

    border-bottom: 1px solid rgba(0, 0, 0, 0.2);

}



.master-container .container {

    padding: 20px;



}







.achievements-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    text-align: center;

}



.achievement-item {

    display: flex;

    gap: 20px;

    justify-content: space-between;

    border-left: 1px solid rgba(215, 227, 248, 0.9);

    padding: 12px 20px;

    flex-direction: column;

    /* justify-content: flex-start; */

    align-items: center;

}



.achievement-item img {

    max-width: 120px;

    margin-bottom: 15px;

}



.achievement-item p {

    font-size: 14px;

    font-weight: 600;

    color: var(--text);

}



/* acheivment section css END */

/* tech prblem section css   */

.tech-problem {

    background-image: url('../images/tech-problem.png');

    min-height: 474px;

    display: flex;

    flex-wrap: nowrap;

    justify-content: center;

    align-items: center;

}



.tech-inner {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



.problem-inner {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



.problem-inner h5 {

    color: var(--white);

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 1px;

    text-align: center;

}



.problem-inner h2 {

    font-size: 42px;

    font-weight: 700;

    color: var(--white);

    text-align: center;

}



.problem-inner p {

    font-size: 18px;

    color: var(--white);

    line-height: 1.6;

    max-width: 900px;

    text-align: center;

    margin-bottom: 40px;

}



/* slider  */

.tools-flow {

    padding-top: 40px;

}



.tool-after {

    position: relative;

}



.tools-header {

    display: flex;

    text-align: center;

    margin-bottom: 30px;

    flex-direction: column;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: center;

    align-items: center;

}



.tools-title {

    font-size: 14px;

    font-weight: 600;

    color: var(--secondary);

    margin-bottom: 8px;

}



.tools-heading {

    text-align: center;

    max-width: 700px;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 40px;

    line-height: 112%;

    color: var(--text-color);

}



.tools-tabs {

    display: flex;

    justify-content: space-around;

    gap: 0;

    overflow-x: auto;

    padding: 10px 0;

    margin-bottom: 40px;

}



.tool-tab {

    position: relative;

    flex: 1 1 auto;

    padding: 10px 20px;

    border: none;

    background: none;

    cursor: pointer;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;

}



.tool-tab.active {

    color: var(--secondary);

}



.tools-content .tool-content {

    display: none;

}



.tools-content .tool-content.active {

    display: block;

}



.tools-tabs::after {

    content: "";

    position: absolute;

    bottom: 5px;

    left: 0;

    width: 100%;

    height: 4px;

    background: #E6E6E6;

    border-radius: 2px;

}





.tool-tab::after {

    content: "";

    position: absolute;

    bottom: -5px;

    left: auto;

    right: 0;

    width: 0%;

    height: 4px;

    background: var(--secondary);



    transition: width 4s ease;

    z-index: 2;

}



.tool-tab.active::after {

    background: var(--secondary);

    width: 100%;

    z-index: 2;

    left: 0;

    right: auto;

}



/* .tools-tabs > .tool-tab {

  flex: 1; 

} */

.tools-item {

    display: inline-flex;

    gap: 40px;

    justify-content: center;

    align-items: center;

    width: 100%;

}



.tool-box {

    padding: 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    height: 100px;

    width: 100px;

    background-color: var(--white);

    border-radius: 8px;

}



.tool-box p {

    font-size: 12px;

    color: var(--text);

    font-weight: 600;

}



/* tech prblem section css  END */







/* Career Page css */

.career-hero .about-hero-content {

    max-width: 100%;

}



.search-filter {

    width: 100%;

}



.search-box {

    height: 66px;

    min-width: 900px;

    display: flex;

    align-items: center;

    border-radius: 10px;

    overflow: hidden;

    background: var(--white);

    justify-content: space-between;

}



.select-option {

    display: flex;

    height: 100%;

}



.search-input {

    padding: 10px 30px;

    height: 100%;

    display: flex;

    align-items: center;

    gap: 8px;

    width: 60%;

}



.search-input i {

    color: var(--body-text);

}



.search-input input {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-size: 16px;

}



/* Dropdown */

.search-select {

    display: flex;

    justify-content: center;

    align-items: center;

    border-left: 1px solid #ddd;

    padding: 12px 15px;

}



.search-select select {

    border: none;

    outline: none;

    background: transparent;

    font-size: 16px;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 200px;

}



/* Button */

.search-btn {

    background: #ffcc00;

    border: none;

    padding: 14px 25px;

    font-weight: 600;

    cursor: pointer;

}





.jobs-flow {

    padding-top: 40px;

    background: var(--white);

}



.jobs-flow .container {

    display: flex;

    justify-content: center;

    align-items: center;

}



.job-inner {

    max-width: 900px;

}



.jobs-header {

    text-align: center;

    margin-bottom: 40px;

}



.jobs-title {

    font-size: 16px;

    color: var(--secondary);

    margin-bottom: 8px;

}



.jobs-heading {

    font-size: 42px;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 10px;

}



.jobs-desc {

    font-size: 16px;

    padding: 0px 30px;

    color: var(--body-text);

}



.job-card {

    background: var(--white);

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

    padding: 35px;

}



.job-info {

    display: flex;

    gap: 24px;

    justify-content: left;

    flex-direction: column;

    align-content: flex-start;

}



.job-role {

    font-size: 20px;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 10px;

}



.job-type,

.job-status {

    display: inline-block;

    background: var(--primary);

    color: var(--text);

    font-size: 14px;

    padding: 4px 10px;

    border-radius: 12px;

    margin-right: 8px;

}



.job-summary {

    font-size: 14px;

    color: var(--body-text);

}



.requirments {

    padding: 20px;

    background-color: var(--accent);

    border-radius: 6px;

}



.job-req-title {

    font-size: 14px;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 10px;

}



.job-req-list {

    list-style: none;

    padding-left: 20px;

}



.job-req-list li {

    font-size: 14px;

    color: var(--body-text);

    margin-bottom: 8px;

}



.see-all {

    margin-top: 60px;

    text-align: center;



}



.see-all .btn-primary {

    background-color: var(--secondary);

    color: white;

}



.see-all .btn-primary::after {

    background-image: url("../images/white-primary.svg");



}





/* process section */



.process-flow {

    /* padding: 40px 0; */

    background: var(--white);

}



.process-header {

    text-align: center;

    margin-bottom: 40px;

}



.process-flow .process-title {

    font-size: 16px;

    font-weight: 500;

    color: var(--secondary);

    margin-bottom: 8px;

}



.process-heading {

    font-size: 42px;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 15px;

}



.process-desc {

    font-size: 16px;

    color: var(--body-text);

    max-width: 700px;

    margin: 0 auto;

}



.process-timeline {

    display: flex;

    justify-content: space-between;

    position: relative;

    margin-top: 40px;

}



.process-step::after {

    content: "";

    position: absolute;

    top: 30%;

    left: 140px;

    width: 80%;

    height: 3px;

    background: var(--body-text);

    z-index: -1;

}



.process-step:last-child::after {

    display: none;

}



.process-step {

    z-index: 1;

    position: relative;

    text-align: center;

    flex: 1;

}



.step-circle {

    width: 88px;

    height: 88px;

    border: 3px solid var(--primary);

    /* yellow border */

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 18px;

    color: var(--text-color);

    margin: 0 auto 17px;

    background: var(--white);

}



.process-line {

    flex: 1;

    height: 2px;

    background: #ddd;

    margin: 0 10px;

}



.process-step p {

    font-size: 18px;

    font-weight: 700;

    color: var(--secondary);

}



/* join us  */



.joinus-flow {

    padding: 40px 0;

    background: var(--white);

    /* light gray background */

}



.joinus-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 40px;

}



.joinus-title {

    font-size: 42px;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 10px;

}



.joinus-desc {

    font-size: 16px;

    color: var(--body-text);

    max-width: 600px;

}





.joinus-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;

}


.joinus-card:hover {
background-color:#ffcc00!important;
transition: 0.3s ease-in-out!important;
}

.joinus-card:hover h3 {
color:white!important;
}
.joinus-card:hover p {
color:white!important;
}


.joinus-card:hover .icon{

background-color:white!important;
}

.joinus-card {
    
    transition: 0.3s ease-in-out!important;
    
    display: flex;

    gap: 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    padding: 40px;

    text-align: left;

    flex-direction: column;

    align-content: center;

    justify-content: center;

    align-items: flex-start;

}



.joinus-card .icon {

    border-radius: 6px;

    height: 56px;

    display: flex;

    font-size: 28px;

    color: var(--secondary);

    width: 56px;

    background: var(--primary);

    flex-direction: column;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: center;

    align-items: center;

}



.joinus-card h3 {

    font-size: 18px;

    font-weight: 600;

    color: var(--text-color);

}



.joinus-card p {

    font-size: 14px;

    color: var(--body-text);

    line-height: 1.6;

}











/* Career Page css END */



/* job detail page css */



.job-detail .about-hero-content {

    max-width: 900px;

}



.job-detail .about-hero-subtitle {

    font-size: 16px;

}



.job-tags {

    display: inline-flex;

    flex-direction: row;

    gap: 7px;

    margin-bottom: 10px;

}



.job-tags span {

    font-size: 14px;

    padding: 6px 12px;

    background: rgba(255, 255, 255, 0.3);

    border-radius: 4px;

    border: 1px solid rgba(255, 255, 255, 0.167);

}



.jobdetail-flow {

    padding: 40px 0;

}



.jobdetail-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}



.jobdetail-role {

    font-size: 42px;

    font-weight: 700;

    color: var(--text-color);

}



.job-detail-inner {

    display: flex;

    gap: 35px;

    flex-direction: row;

    flex-wrap: nowrap;

    align-content: flex-start;

}



.jobdetail-block {

    background-color: var(--white);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    padding: 30px;

    border-radius: 12px;

}



.jobdetail-block p {

    font-size: 14px;

    color: var(--body-text);

}



.block-title {

    font-size: 20px;

    font-weight: 600;

    color: var(--text-color);

    margin-bottom: 15px;

}



.jobdetail-list {

    list-style: disc;

    padding-left: 20px;

}

.skills-list{

    list-style: disc;

    padding-left: 20px;

}



.skills-list li {

    font-size: 14px;

    color: var(--body-text);

    margin-bottom: 8px;

}

.jobdetail-list li {

    font-size: 14px;

    color: var(--body-text);

    margin-bottom: 8px;

}



.jobinfo-list {

    list-style: none;

    padding: 0;

}



.jobinfo-list li {

    font-size: 15px;

    color: var(--body-text);

    margin-bottom: 8px;

}



.jobdetail-share {

    display: flex;

    width: 100%;

    flex-direction: column;

    height: fit-content;

    gap: 15px;

    background-color: var(--white);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    padding: 30px;

    border-radius: 12px;

}

.jobdetail-share h5{

    font-size: 20px;

    font-weight: 700;

}

.jobdetail-share hr{

    height: 1px;

    background-color: var(--body-text);

}

.info-item span{

color: var(--body-text);

}



.share-icons span {

    margin-bottom: 10px;

    font-size: 14px;

    color: var(--body-text);

    text-decoration: none;

}

.social-links{

    display: flex;

    flex-direction: row;

    gap: 20px;

    margin-top: 10px;

}



.job-scroller {

    max-width: 760px;

    display: flex;

    flex-direction: column;

    gap: 20px;

}



/* servise detail page  */

.service-detail .about-hero-subtitle{

    font-size: 15px;

}

.service-detail .about-hero-content {

    max-width: 750px;

}

.service-detail .inner-content{

    flex-direction: row-reverse;

}

.service-detail .left-image img{

    border-radius: 28px;

}

.service-detail .desc{

    font-size: 16px;

    max-width: 380px;

}

.button-box .outline{

    background-color: transparent;

    border: 1px solid var(--body-text);

}



/* ui ux section */



/* .uiux-flow {

  padding: 40px 0;

} */



.uiux-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 40px;

}



.uiux-title {

  font-size: 16px;

  font-weight: 600;

  color: var(--secondary);

  margin-bottom: 8px;

}



.uiux-heading {

  font-size: 42px;

  font-weight: 700;

  color: var(--text-color);

  margin-bottom: 15px;

}



.uiux-desc {

  font-size: 16px;

  color: var(--body-text);

  max-width: 500px;

}

.service-uiux .uiux-text p {

    font-size: 16px;

    max-width: 80%;

    color: var(--body-text);

}

.service-tools .tool-content{

    display: block;

}





.uiux-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 37px;

}

.uiux-card:hover{

background-color:#ffcc00!important;
transition : all 0.3s ease-in-out !important;

}

.uiux-card:hover .icon img{

color:red!important;
}


.uiux-card:hover h3{

color:white!important;
}


.uiux-card:hover p{

color:white!important;
}


.uiux-card {

    display: flex;

    background: var(--white);

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    padding: 40px 30px;

    text-align: left;

    flex-direction: column;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: space-between;

    transition:all 0.3s ease-in-out !important;

}



.uiux-card .icon {

  font-size: 28px;

  color: var(--secondary);

  margin-bottom: 15px;

}



.uiux-card h3 {

  font-size: 16px;

  font-weight: 600;

  color: var(--text-color);

  margin-bottom: 10px;

}



.uiux-card p {

  font-size: 14px;

  color: var(--body-text);

  line-height: 1.6;

}



.industary-top{

    display: flex;

    flex-direction: row;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 60px;

}

.industary-top .industries-header {

    display: flex;

    align-items: start;

    justify-content: space-between;

    width: 80%;

    margin: 0;

}

.industary-top .industries-header h2{

    text-align: left;

}

.industary-top .industries-header p{

    text-align: left;

}

.indust-icon span {

    color: var(--secondary);

}



/* FAQ Section  */



.faq-flow {

  padding: 40px 0;

  background: var(--accent);

}



.faq-inner {

  display: flex;

  gap: 40px;

}



.faq-left {

    display: flex;

    flex: 0 0 40%;

    flex-direction: column;

    justify-content: space-between;

}



.faq-title {

  font-size: 16px;

  font-weight: 600;

  color: var(--secondary);

  margin-bottom: 8px;

}



.faq-heading {

    line-height: 110%;

  font-size: 42px;

  font-weight: 700;

  color: var(--text-color);

  margin-bottom: 15px;

}



.faq-desc {

  font-size: 15px;

  color: var(--body-text);

  margin-bottom: 20px;

}



.faq-box {

    display: flex;

    flex-direction: column;

    gap: 24px;

    background: var(--secondary);

    color: var(--white);

    padding: 30px;

    border-radius: 12px;

    align-items: flex-start;

}

.faq-box h3{

    font-size: 22px;

}

.faq-box p{

    line-height: 100%;

    font-size: 14px;

}







.faq-right {

  flex: 0 0 60%;

  display: flex;

  flex-direction: column;

  gap: 16px;

  transition: all 0.3 ease;

}



.faq-item {

  border-radius: 8px;

  transition: all 0.3s ease;

}



.faq-question {

    

  border-radius: 8px;

  width: 100%;

  background-color: var(--white);

  border: none;

  padding: 30px;

  font-size: 16px;

  font-weight: 600;

  color: var(--body-text);

  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;

    /* transition: all 0.3s ease; */



}

.faq-question span{

    text-align: left;

}



.faq-answer {

  display: none;

  padding: 0 30px 30px 30px;

  font-size: 14px;

  color: var(--body-text);

  /* transition: all 0.3s ease; */



}

.faq-item.active {

  background-color: var(--white);

  border: 1px solid var(--secondary);

}



.faq-item.active .faq-answer {

  display: block;

}

.faq-item.active .faq-question {

    color: var(--text);

    border-top-left-radius: 8px;

  border-top-right-radius: 8px ;

}



.faq-item.active .faq-question .icon {

  content: "_";

}



/* servise detail page END */



/* AI Solution page css */

.aisolutions-flow {

  padding-top: 40px;

}



.aisolutions-inner {

  display: flex;

  gap: 100px;

  align-items: flex-start;

}



.aisolutions-text {

  flex: 60%;

}



.aisolutions-title {

  font-size: 16px;

  font-weight: 600;

  color: var(--secondary);

  margin-bottom: 8px;

}



.aisolutions-heading {

  font-size: 42px;

  line-height: 110%;

  font-weight: 700;

  color: var(--text-color);

  margin-bottom: 15px;

}



.aisolutions-desc {

  font-size: 14px;

  color: var(--body-text);

  margin-bottom: 30px;

}



.aisolutions-stats {

  flex: 40%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

}



.aisolutions-box {

    gap: 10px;

    display: flex;

    background: var(--accent);

    color: var(--text-color);

    border-radius: 12px;

    padding: 25px;

    text-align: center;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    flex-direction: column;

    align-content: center;

    justify-content: center;

    align-items: center;

}



.aisolutions-box h3 {

  font-size: 42px;

  font-weight: 700;

  line-height: 110%;

}



.aisolutions-box p {

  font-size: 14px;

  font-weight: 500;

}

.icon-box {

    border-radius: 8px;

    height: 50px;

    display: flex;

    width: 50px;

    background-color: #ffcc0044;

    flex-wrap: nowrap;

    justify-content: center;

    align-items: center;

}



.ai-solution-content .icon{

    background-color: #ffcc0049;

}

.ai-solution .why-inner{

    flex-direction: row-reverse;

    gap: 100px;

}

.ai-solution-content .why-subtitle{

    color: var(--primary);

}







/* 

.aioffer-flow {

  padding: 40px 0;

} */



.aioffer-inner {

    display: flex;

    align-items: center;

    align-content: center;

    justify-content: center;

}



.aioffer-left {

  flex:0 0 50%;

  background: var(--secondary);

  color: var(--white);

  padding: 60px 110px 60px 40px;

  border-radius: 12px;

}



.aioffer-title {

  font-size: 14px;

  font-weight: 600;

  color: var(--primary);

  margin-bottom: 8px;

}



.aioffer-heading {

    line-height: 110%;

  font-size: 42px;

  font-weight: 700;

  margin-bottom: 15px;

}



.aioffer-desc {

  font-size: 15px;

  margin: 30px 0;

}







.aioffer-right {

    margin-left: -50px;

  flex: 0 0 55%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

}



.aioffer-card {

  background: var(--white);

  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);

  padding: 20px;

}



.check-icon {

  display: inline-block;

  font-size: 20px;

  color: var(--secondary);

  margin-bottom: 10px;

}



.aioffer-card h3 {

    line-height: 100%;

  font-size: 18px;

  font-weight: 600;

  color: var(--text-color);

  margin: 20px 0;

}



.aioffer-card p {

  font-size: 14px;

  color: var(--body-text);

  line-height: 1.6;

}

.technologies-scroll .container{

    width: 100%;

}



.technologies-scroll {

  padding: 40px 0px;

  text-align: center;

  overflow: hidden;

}



.tech-heading {

  font-size: 42px;

  font-weight: 700;

  color: var(--text-color);

  margin-bottom: 30px;

}



/* .tech-slider {

  position: relative;

  width: 100%;

  overflow: hidden;

} */



/* .tech-track {

  display: flex;

  gap: 20px;

  animation: scrollTrack 25s linear infinite;

} */



.tech-card {

    display: flex;

    flex: 0 0 auto;

    background: var(--white);

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    padding: 20px;

    text-align: center;

    min-width: 160px;

    flex-direction: column;

    justify-content: space-between;

    align-content: center;

    align-items: center;

}



.tech-card img {

  max-width: 80px;

  margin-bottom: 10px;

}



.tech-card p {

  font-size: 12px;

  font-weight: 600;

  color: var(--text-color);

}



.tech-slider {

  overflow: hidden;

  width: 100%;

}



.tech-track {

  display: flex;

  gap: 20px;

  animation: scrollTrack 25s linear infinite;

}



@keyframes scrollTrack {

  0% { transform: translateX(0); }

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

}

.onboarding-flow {

  padding: 40px 0;

  background: var(--white);

}



.onboarding-heading {

  text-align: left;

  font-size: 42px;

  font-weight: 700;

  color: var(--text-color);

}





.onbording-top {

  text-align: left;

  font-size: 16px;

  color: var(--text);

}

.onbording-top h5{

    color: var(--secondary);

    font-size: 16px;

}



.onboarding-timeline {

  position: relative;

  display: flex;

  justify-content: space-between;

}



.timeline-step {

  z-index: 2;

  background: var(--accent);

  color: var(--secondary);

  font-weight: 700;

  border-radius: 50%;

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

}

.onbording-content{

    display: flex;

    flex-direction: column;

    gap: 40px;

}

.onbording-inner{

    padding: 10px 115px;

    background-color: var(--primary);

    border-radius: 90px;

}



.timeline-bar {

  position: absolute;

  top: 50%;

  left: 0;

  height: 4px;

  width: 100%;

  background: var(--accent);

  transform: translateY(-50%);

  z-index: 1;

}



/* Cards */

.onboarding-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

}



.onboarding-card {

  background: #fff;

  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);

  padding: 20px;

  transition: background 0.4s ease, transform 0.3s ease, color 0.3s ease;

}



.onboarding-card.dark {

  background: #0B2545;

  color: #fff;

}



.onboarding-card.light {

  background: #f7f7f7;

}



.onboarding-card:hover {

  background: var(--secondary);

  color: var(--text-color);

  transform: translateY(-6px);

}









/* AI Solution page css END */



















/* --------------------------------------------------------------------------------------------------------- */

/* new one */

/* Tablet */







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

    .container {

        padding: 30px 20px;

    }

}



/* Mobile */

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

    .container {

        padding: 20px 20px;

    }

}



/* Small Mobile */

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

    .container {

        padding: 15px 15px;

    }

}



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



    .btn-primary,

    .btn-secondary,

    .btn-black {

        padding: 12px 20px;

        font-size: 14px;

    }



    .btn-primary::after,

    .btn-secondary::after,

    .btn-black::after {

        width: 16px;

        height: 16px;

    }

}



/* Mobile */

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



    .btn-primary,

    .btn-secondary,

    .btn-black {

        padding: 10px 18px;

        font-size: 13px;

        gap: 8px;

    }



    .btn-primary::after,

    .btn-secondary::after,

    .btn-black::after {

        width: 14px;

        height: 14px;

    }

}



/* Small Mobile */

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



    .btn-primary,

    .btn-secondary,

    .btn-black {

        padding: 8px 15px;

        font-size: 12px;

        gap: 6px;

    }



    .btn-primary::after,

    .btn-secondary::after,

    .btn-black::after {

        width: 12px;

        height: 12px;

    }

}



/* header media query */



/* Tablet */

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

    .header-wrapper {

        padding: 15px;

    }



    .nav .nav-item {

        gap: 15px;

    }



    .nav a {

        font-size: 12px;

    }



    .btn-secondary {

        padding: 8px 16px;

        font-size: 12px;

    }



    .lang {

        font-size: 12px;

    }

}



/* Mobile */

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

    .site-header {

        position: fixed;

        /* background: rgba(0, 0, 0, 0.95); */

    }



    .header-wrapper {

        padding: 12px;

    }



    .nav {

        position: fixed;

        top: 0;

        right: -100%;

        width: 80%;

        max-width: 320px;

        height: 100vh;

        background: #1a1a1a;

        z-index: 1000;

        transition: 0.4s;

        padding-top: 80px;

    }



    .nav.active {

        right: 0;

    }



    .nav .nav-item {

        flex-direction: column;

        gap: 0;

    }



    .nav .nav-item li a {

        padding: 15px 20px;

        display: block;

        color: white;

    }



    .dropdown-menu {

        position: static;

        background: rgba(255, 255, 255, 0.1);

        display: none;

    }



    .dropdown.active .dropdown-menu {

        display: block;

    }



    .dropdown-menu li a {

        padding-left: 35px;

        color: #ccc;

    }



    .menu-toggle {

        display: block;

        font-size: 28px;

        color: white;

        cursor: pointer;

    }



    .logo img {

        height: 32px;

    }

}



/* Small Mobile */

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

    .logo img {

        height: 28px;

    }



    .menu-toggle {

        font-size: 24px;

    }

}



/* header media query end */



/* hero section media query */

/* Tablet */

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

    .hero-section {

        min-height: 90vh;

    }



    .hero-idea {

        font-size: 64px;

    }



    .hero-text h1 {

        font-size: 62px;

    }



    .hero-description {

        font-size: 16px;

        max-width: 500px;

    }



    .hero-text {

        gap: 24px;

    }

}



/* Mobile */

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

    .hero-section {

        min-height: 100vh;

        background-position: 70% center;

    }



    .hero-content {

        min-height: auto;

        padding: 100px 0 60px;

    }



    .hero-text {

        gap: 20px;

        max-width: 100%;

    }



    .hero-idea {

        font-size: 42px;

        text-underline-offset: 8px;

        text-decoration-thickness: 3px;

    }



    .hero-text h1 {

        font-size: 40px;

        line-height: 1.2;

    }



    .hero-description {

        font-size: 14px;

        line-height: 1.6;

        max-width: 100%;

    }



    .btn-primary {

        padding: 12px 24px;

        font-size: 14px;

    }

}



/* Small Mobile */

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

    .hero-idea {

        font-size: 38px;

    }



    .hero-text h1 {

        font-size: 30px;

    }



    .hero-description {

        font-size: 13px;

    }



    .hero-text {

        gap: 16px;

    }

}



/* hero section media query end*/



/* about section media query  */

/* Tablet */

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

    .inner-content {

        gap: 30px;

    }



    .left-image img {

        width: 400px;

        height: auto;

    }



    .right-content h2 {

        font-size: 32px;

    }



    .marquee-track {

        font-size: 36px;

    }

}



/* Mobile */

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

    .about-section {

        padding-top: 30px;

    }



    .inner-content {

        flex-direction: column;

        gap: 30px;

    }



    .left-image img {

        width: 100%;

        max-width: 500px;

        height: auto;

    }



    .right-content {

        text-align: center;

    }



    .right-content h2 {

        font-size: 28px;

    }



    .right-content .tag {

        font-size: 12px;

    }



    .bold-text {

        font-size: 16px;

    }



    .desc {

        font-size: 14px;

        padding: 0 10px;

    }



    .marquee-track {

        font-size: 28px;

        -webkit-text-stroke: 0.5px var(--text);

    }



    .marquee {

        margin-bottom: 20px;

    }

}



/* Small Mobile */

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

    .right-content h2 {

        font-size: 24px;

    }



    .marquee-track {

        font-size: 22px;

    }



    .desc {

        font-size: 13px;

    }



    .right-content .btn-primary {

        margin-top: 10px !important;

    }

}



/* about section media query  end*/



/* services section media query  */



/* Tablet */

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

    .tabs {

        gap: 12px;

        justify-content: center;

    }



    .tab {

        max-width: 160px;

        min-width: 150px;

        padding: 15px 30px;

    }



    .tab svg {

        width: 35px;

        height: 36px;

    }



    .tab-content.active {

        padding: 40px 30px;

    }



    .uiux-inner {

        gap: 40px;

    }



    .uiux-text h3 {

        font-size: 34px;

        margin-bottom: 20px;

    }



    .uiux-text p {

        font-size: 16px;

        line-height: 1.4;

    }



    .tools {

        padding: 25px 20px;

        gap: 25px;

    }



    .services-inner .section-title {

        margin-bottom: 40px;

    }

}



/* Mobile */

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

    .services-inner h5 {

        font-size: 14px;

        margin-bottom: 10px;

    }



    .services-inner .section-title {

        line-height: 100%;

        font-size: 28px;

        margin-bottom: 30px;

    }



    .tabs {

        gap: 10px;

        justify-content: center;

        margin-bottom: 20px;

    }



    .tab {

        max-width: 130px;

        min-width: 110px;

        padding: 12px 15px;

        font-size: 11px;

        gap: 8px;

    }



    .tab svg {

        width: 28px;

        height: 28px;

    }



    .tab-content.active {

        padding: 30px 20px;

    }



    .uiux-inner {

        flex-direction: column;

        gap: 30px;

    }



    .service-uiux .uiux-text {

        text-align: center;

        flex: 1 1;



    }



    .uiux-text h3 {

        font-size: 28px;

        margin-bottom: 15px;

    }



    .uiux-text p {

        font-size: 14px;

        line-height: 1.5;

        margin-bottom: 15px;

    }



    .tools {

        padding: 20px 15px;

        gap: 20px;

        margin-top: 30px;

    }



    .tools span {

        font-size: 10px;

        gap: 6px;

    }



    .tools span img {

        width: 24px;

        height: 24px;

    }



    .uiux-illustration {

        flex: auto;

    }



    .btn-primary {

        padding: 10px 20px;

        font-size: 13px;

    }

}



/* Small Mobile */

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

    .tabs {

        gap: 8px;

    }



    .tab {

        max-width: 110px;

        min-width: 95px;

        padding: 10px 8px;

        font-size: 10px;

        gap: 6px;

    }



    .tab svg {

        width: 22px;

        height: 22px;

    }



    .tab-content.active {

        padding: 25px 15px;

    }



    .uiux-text h3 {

        font-size: 24px;

    }



    .uiux-text p {

        font-size: 13px;

    }



    .tools {

        gap: 15px;

    }



    .tools span {

        font-size: 9px;

    }



    .tools span img {

        width: 20px;

        height: 20px;

    }

}



/* services section media query  end*/



/* tech banner media query  */

/* Tablet */

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

    .tech-banner {

        padding: 80px 40px;

    }



    .tech-banner-text h2 {

        font-size: 40px;

    }



    .tech-banner-text p {

        font-size: 16px;

    }



    .tech-banner-text {

        max-width: 700px;

    }

}



/* Mobile */

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

    .tech-banner {

        padding: 50px 20px;

    }



    .tech-banner-text {

        gap: 15px;

    }



    .tech-banner-text h3 {

        font-size: 14px;

        margin-bottom: 5px;

    }



    .tech-banner-text h2 {

        font-size: 28px;

        text-align: center;

    }



    .tech-banner-text p {

        font-size: 14px;

        line-height: 1.5;

        text-align: center;

    }



    .btn-primary {

        padding: 10px 20px;

        font-size: 13px;

        margin-top: 10px;

    }

}



/* Small Mobile */

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

    .tech-banner {

        padding: 40px 15px;

    }



    .tech-banner-text h2 {

        font-size: 24px;

    }



    .tech-banner-text p {

        font-size: 13px;

    }



    .tech-banner-text h3 {

        font-size: 12px;

    }

}



/* tech banner media query end */



/* recent work section media query   */

/* Responsive Media Queries */

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

    .rw {

        padding: 20px;

    }



    .rw-h2 {

        font-size: 32px;

    }



    .card-top {

        height: 280px;

    }



    .card-title {

        font-size: 18px;

    }

}



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





    .rw {

        padding: 20px;

    }



    .rw-header {

        flex-direction: column;

        text-align: center;

    }



    .rw-h2 {

        font-size: 28px;

    }



    .rw-top-label {

        font-size: 14px;

        text-align: center;

        display: block;

    }



    .card-top {

        height: 220px;

    }



    .card-title {

        font-size: 16px;

    }



    .card-desc {

        font-size: 12px;

    }



    .tag {

        font-size: 8px;

        padding: 3px 8px;

    }



    .rw-footer {

        justify-content: center;

        flex-direction: row;

        justify-content: space-between;

        gap: 0px 30px;



        /* gap: 15px; */

    }



    .rw-footer .slick-dots {

        order: 1;

        margin: 0 auto;

        padding: 10px 20px !important;

    }



    .rw-footer .btn-primary {

        order: 2;

        margin: 0;

    }

}



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

    .rw {

        padding: 15px;

    }



    .rw-h2 {

        font-size: 24px;

    }



    .card-top {

        height: 180px;

    }



    .card-title {

        font-size: 14px;

    }



    .card-desc {

        font-size: 11px;

    }



    .slick-dots {

        padding: 8px 16px !important;

    }



    .slick-dots li button {

        width: 6px !important;

        height: 6px !important;

    }

}



/* recent work section media query  end */

/* impact section media query   */



/* Tablet */

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

    .impact-section {

        padding: 30px 0;

    }



    .impact-inner {

        gap: 30px;

    }



    .impact-text {

        flex: 1 1 400px;

    }



    .impact-text h1 {

        font-size: 34px;

        margin-bottom: 15px;

    }



    .impact-text p {

        font-size: 14px;

        margin-bottom: 15px;

    }



    .impact-stats {

        flex: 1 1 400px;

    }



    .stat {

        padding: 30px 15px;

    }



    .stat h2 {

        font-size: 48px;

    }



    .stat p {

        font-size: 14px;

    }



    /* Override inline styles for tablet borders */

    .stat[style],

    .impact-stats .stat {

        border: none !important;

        border-bottom: 1px solid var(--accent-rgb) !important;

        border-right: 1px solid var(--accent-rgb) !important;

    }



    .impact-stats .stat:nth-child(2),

    .impact-stats .stat:nth-child(4) {

        border-right: none !important;

    }



    .impact-stats .stat:nth-child(3),

    .impact-stats .stat:nth-child(4) {

        border-bottom: none !important;

    }

}



/* Mobile */

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

    .impact-section {

        padding: 20px 0;

    }



    .impact-inner {

        flex-direction: column;

        gap: 30px;

    }



    .impact-text {

        text-align: center;

        flex: auto;

    }



    .impact-text h1 {

        font-size: 28px;

        margin-bottom: 15px;

    }



    .impact-text .sub-heading {

        font-size: 14px;

    }



    .impact-text p {

        font-size: 14px;

        margin-bottom: 20px;

        padding: 0 10px;

    }



    .impact-stats {

        width: 100%;

    }



    .stat {

        padding: 20px 12px;

        align-items: center;

        text-align: center;

    }



    .stat h2 {

        font-size: 36px;

    }



    .stat p {

        font-size: 12px;

        max-width: 130px;

    }



    .btn-black {

        padding: 10px 20px;

        font-size: 13px;

    }



    /* Override inline styles for mobile borders */

    .stat[style],

    .impact-stats .stat {

        border: none !important;

        border-bottom: 1px solid var(--accent-rgb) !important;

        border-right: 1px solid var(--accent-rgb) !important;

    }



    .impact-stats .stat:nth-child(2),

    .impact-stats .stat:nth-child(4) {

        border-right: none !important;

    }



    .impact-stats .stat:nth-child(3),

    .impact-stats .stat:nth-child(4) {

        border-bottom: none !important;

    }

}



/* Small Mobile */

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

    .impact-text h1 {

        font-size: 24px;

    }



    .impact-text p {

        font-size: 13px;

    }



    .stat {

        padding: 15px 8px;

    }



    .stat h2 {

        font-size: 28px;

    }



    .stat p {

        font-size: 11px;

        max-width: 110px;

    }



    /* Same border logic */

    .stat[style],

    .impact-stats .stat {

        border: none !important;

        border-bottom: 1px solid var(--accent-rgb) !important;

        border-right: 1px solid var(--accent-rgb) !important;

    }



    .impact-stats .stat:nth-child(2),

    .impact-stats .stat:nth-child(4) {

        border-right: none !important;

    }



    .impact-stats .stat:nth-child(3),

    .impact-stats .stat:nth-child(4) {

        border-bottom: none !important;

    }

}



/* impact section media query  end */



/* oputsourcing section media query   */

/* Tablet */

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

    .impact-text {

        flex: 1 1 100%;

    }



    .impact-stats {

        flex: 1 1 100%;

    }



    .outsourcing-section {

        padding-bottom: 30px;

    }



    .outsourcing-header {

        margin-bottom: 40px;

        gap: 12px;

    }



    .outsourcing-header h5 {

        font-size: 14px;

    }



    .section-title {

        font-size: 32px;

    }



    .section-subtitle {

        font-size: 14px;

        max-width: 90%;

    }



    .outsourcing-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }



    .outsourcing-card {

        padding: 20px;

    }



    .outsourcing-card h3 {

        font-size: 18px;

    }



    .outsourcing-card p {

        font-size: 14px;

    }



    .outsourcing-card ul li {

        font-size: 13px;

        padding-left: 24px;

    }



    .outsourcing-card .icon {

        max-width: 45px;

        max-height: 45px;

        margin-bottom: 15px;

    }



    .outsourcing-card .icon img {

        width: 40px;

        height: 40px;

    }

}



/* Mobile */

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





    .outsourcing-header {

        margin-bottom: 30px;

        gap: 10px;

    }



    .outsourcing-header h5 {

        font-size: 12px;

    }



    .section-title {

        font-size: 28px;

        text-align: center;

        padding: 0 10px;

    }



    .section-subtitle {

        font-size: 13px;

        line-height: 1.5;

        max-width: 100%;

        padding: 0 15px;

    }



    .outsourcing-grid {

        grid-template-columns: 1fr;

        gap: 16px;

        padding: 0 10px;

    }



    .outsourcing-card {

        padding: 18px;

        text-align: center;

        align-items: center;

    }



    .outsourcing-card h3 {

        font-size: 18px;

        text-align: center;

    }



    .outsourcing-card h3::after {

        left: 50%;

        transform: translateX(-50%) scaleX(1);

        width: 100%;

    }



    .outsourcing-card p {

        font-size: 14px;

        text-align: center;

    }



    .outsourcing-card ul {

        text-align: left;

        width: 100%;

    }



    .outsourcing-card ul li {

        font-size: 13px;

        padding-left: 24px;

        text-align: left;

    }



    .outsourcing-card ul li::before {

        left: 0;

        top: 8px;

    }



    .outsourcing-card .icon {

        max-width: 50px;

        max-height: 50px;

        margin-bottom: 15px;

    }



    .outsourcing-card .icon img {

        width: 45px;

        height: 45px;

    }

}



/* Small Mobile */

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

    .section-title {

        font-size: 24px;

    }



    .section-subtitle {

        font-size: 12px;

    }



    .outsourcing-card {

        padding: 20px;

    }



    .outsourcing-card h3 {

        font-size: 16px;

    }



    .outsourcing-card p {

        font-size: 13px;

    }



    .outsourcing-card ul li {

        font-size: 12px;

        padding-left: 22px;

    }



    .outsourcing-card .icon img {

        width: 40px;

        height: 40px;

    }

}



/* oputsourcing section media query  end */



/* main footer media query  */

/* Tablet */

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

    .footer-consult-box {

        padding: 30px 30px 80px 30px;

    }



    .consult-title {

        font-size: 40px;

    }



    .consult-desc {

        font-size: 14px;

    }



    .footer-inner {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

        padding: 0 20px;

    }



    .footer-col {

        padding-left: 0 !important;

    }



    .footer-title {

        font-size: 16px;

    }



    .footer-col p,

    .footer-links li,

    .footer-contact li {

        font-size: 13px;

    }



    .footer-bottom {

        flex-direction: column;

        gap: 10px;

        padding: 15px;

    }



    .footer-bottom p {

        font-size: 12px;

    }

}



/* Mobile */

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

    .footer-consult-box {

        padding: 25px 20px 50px 20px;

    }



    .consult-sub {

        font-size: 12px;

    }



    .consult-title {

        font-size: 28px;

    }



    .consult-desc {

        font-size: 13px;

        padding: 0 10px;

    }



    .consult-btn {

        padding: 10px 20px;

        font-size: 13px;

    }



    .main-footer {

        padding: 30px 0 0 0;

    }



    .footer-inner {

        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;

    }



    .footer-col {

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        padding-left: 0 !important;

    }



    .footer-title {

        display: inline-block;

        margin-bottom: 15px;

    }



    .footer-title img {

        max-width: 150px;

        height: auto;

    }



    .footer-col p {

        max-width: 300px;

        margin: 0 auto;

        font-size: 13px;

    }



    .footer-links,

    .footer-contact {

        text-align: center;

    }



    .footer-subscribe {

        width: 100%;

        max-width: 280px;

        margin: 10px auto 0;

    }



    .footer-subscribe input {

        padding: 10px;

        font-size: 13px;

    }



    .footer-subscribe button {

        padding: 10px 15px;

    }



    .footer-subscribe button img {

        width: 16px;

        height: 16px;

    }



    .footer-social {

        justify-content: center;

    }



    .footer-bottom {

        margin-top: 30px;

        padding: 15px;

        gap: 8px;

    }



    .footer-bottom p {

        font-size: 11px;

    }



    .footer-bottom img {

        width: 12px;

        height: 12px;

        vertical-align: middle;

    }

}



/* Small Mobile */

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

    .footer-consult-box {

        padding: 20px 15px 40px 15px;

    }



    .consult-title {

        font-size: 24px;

    }



    .consult-desc {

        font-size: 12px;

    }



    .footer-inner {

        gap: 25px;

    }



    .footer-title {

        font-size: 16px;

    }



    .footer-col p,

    .footer-links li,

    .footer-contact li {

        font-size: 12px;

    }



    .footer-subscribe {

        max-width: 250px;

        flex-direction: row;

    }



    .footer-subscribe input {

        padding: 8px;

        font-size: 12px;

    }



    .footer-social a {

        width: 30px;

        height: 30px;

    }



    .footer-social a img {

        width: 25px;

        height: 25px;

    }



    .footer-bottom {

        padding: 12px;

    }



    .footer-bottom p {

        font-size: 10px;

    }

}



/* main footer media query  end */



/* about page media query   */

/* Tablet */

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

    .about-hero {

        padding-top: 86px;

        max-height: 450px;

    }



    .about-hero-content {

        max-width: 600px;

        min-height: 450px;

        padding: 0 20px;

    }



    .about-hero-title {

        font-size: 48px;

        margin-bottom: 15px;

    }



    .about-hero-subtitle {

        font-size: 18px;

        margin-bottom: 25px;

        padding: 0 20px;

    }

}



/* Mobile */

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

    .about-hero {



        max-height: 400px;

        background-position: 70% center;

    }



    .about-hero-content {

        padding-top: 86px;

        max-width: 90%;

        min-height: 400px;

        padding: 0 15px;

    }



    .about-hero-title {

        font-size: 32px;

        margin-bottom: 12px;

    }



    .about-hero-subtitle {

        font-size: 16px;

        line-height: 1.5;

        margin-bottom: 20px;

        padding: 0 10px;

    }

}



/* Small Mobile */

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

    .about-hero-content {

        min-height: 350px;

        padding-top: 86px;

    }



    .about-hero-title {

        font-size: 28px;

        margin-bottom: 10px;

    }



    .about-hero-subtitle {

        font-size: 14px;

        line-height: 1.4;

    }

}



/* about page media query  END */



/* Who we serve */

/* Tablet */

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

    .who-inner {

        padding: 50px 0;

        gap: 30px;

    }



    .who-head {

        width: 100%;

        text-align: center;

    }



    .who-head h2 {

        font-size: 36px !important;

    }



    .who-p {

        width: 100%;

    }



    .who-p p {

        font-size: 15px;

        line-height: 28px;

        text-align: center;

    }

}



/* Mobile */

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

    .who-inner {

        padding: 40px 0;

        gap: 20px;

        flex-direction: column;

    }



    .who-head {

        width: 100%;

        text-align: center;

    }



    .who-head h2 {

        font-size: 28px !important;

    }



    .who-p {

        width: 100%;

    }



    .who-p p {

        font-size: 14px;

        line-height: 24px;

        text-align: center;

        padding: 0 10px;

    }

}



/* Small Mobile */

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

    .who-inner {

        padding: 30px 0;

        gap: 15px;

    }



    .who-head h2 {

        font-size: 24px !important;

    }



    .who-p p {

        font-size: 13px;

        line-height: 22px;

    }

}



/* Who we serve END */



/* about us section media query    */

/* Tablet */

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

    /* .about-section {

        padding: 60px 0;

    } */



    .about-inner {

        gap: 40px;

        flex-direction: column;

    }



    .about-image {

        flex: auto;

        width: 100%;

    }



    .about-image img {

        max-height: 400px;

        object-fit: cover;

    }



    .about-content {

        flex: auto;

        width: 100%;

    }



    .about-title {

        font-size: 36px;

        margin-bottom: 15px;

    }



    .about-desc {

        font-size: 15px;

        margin-bottom: 25px;

    }



    .about-block {

        margin-bottom: 30px;

        gap: 14px;

    }



    .about-block h3 {

        font-size: 18px;

        margin-bottom: 6px;

    }



    .about-block p {

        font-size: 14px;

    }

}



/* Mobile */

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

    .about-section {

        padding: 40px 0;

    }



    .about-inner {

        gap: 30px;

    }



    .about-image img {

        max-height: 300px;

        border-radius: 8px;

    }



    .about-subtitle {

        font-size: 12px;

        text-align: center;

        display: block;

    }



    .about-title {

        font-size: 28px;

        text-align: center;

        margin-bottom: 15px;

    }



    .about-desc {

        font-size: 14px;

        text-align: center;

        margin-bottom: 25px;

        padding: 0 10px;

    }



    .about-block {

        flex-direction: column;

        align-items: center;

        text-align: center;

        margin-bottom: 25px;

        gap: 10px;

    }



    .about-bl-icon img {

        margin-top: 0;

        width: 32px;

        height: 32px;

    }



    .about-block h3 {

        font-size: 18px;

        margin-bottom: 5px;

    }



    .about-block p {

        font-size: 14px;

        max-width: 90%;

        margin: 0 auto;

    }

}



/* Small Mobile */

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

    .about-section {

        padding: 30px 0;

    }



    .about-inner {

        gap: 20px;

    }



    .about-image img {

        max-height: 250px;

    }



    .about-title {

        font-size: 24px;

    }



    .about-desc {

        font-size: 13px;

    }



    .about-block h3 {

        font-size: 16px;

    }



    .about-block p {

        font-size: 13px;

    }



    .about-bl-icon img {

        width: 28px;

        height: 28px;

    }

}



/* about us section media query   END */



/* project section media query     */

/* Tablet */

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

    .project-inner {

        height: 550px;

    }



    .project-content {

        gap: 14px;

        padding: 0 20px;

    }



    .project-content h2 {

        font-size: 36px;

    }



    .project-content p {

        font-size: 15px;

        max-width: 500px;

    }

}



/* Mobile */

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

    .project-inner {

        height: 450px;

    }



    .project-content {

        gap: 12px;

        padding: 0 15px;

    }



    .project-content h2 {

        font-size: 28px;

    }



    .project-content p {

        font-size: 14px;

        max-width: 90%;

    }



    .btn-secondary {

        padding: 10px 20px;

        font-size: 13px;

        margin-top: 10px;

    }

}



/* Small Mobile */

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

    .project-inner {

        height: 380px;

    }



    .project-content {

        gap: 10px;

    }



    .project-content h2 {

        font-size: 24px;

    }



    .project-content p {

        font-size: 13px;

        max-width: 95%;

    }



    .btn-secondary {

        padding: 8px 16px;

        font-size: 12px;

    }

}



/* project section media query    END */



/* Digital solution page query  */

/* Tablet */

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

    .solutions-section {

        padding: 40px 0;

    }



    .solutions-header {

        max-width: 90%;

        margin-bottom: 40px;

        gap: 6px;

    }



    .solutions-header h5 {

        font-size: 14px;

    }



    .solutions-header h2 {

        font-size: 34px;

    }



    .solutions-header p {

        font-size: 14px;

    }



    .solutions-grid {

        gap: 25px;

    }



    .solution-card {

        width: calc(50% - 12.5px);

        min-width: 280px;

    }



    .solution-card img {

        height: 170px;

    }



    .solution-card h3 {

        font-size: 20px;

        padding: 12px 0;

    }



    .solution-card p {

        font-size: 14px;

        padding-bottom: 25px;

    }



    .img-box {

        height: 48px;

        width: 48px;

    }



    .more-box img {

        width: 24px;

        height: 24px;

    }



    .learn-more {

        font-size: 14px;

    }

}



/* Mobile */

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

    .solutions-section {

        padding: 20px 0;

    }



    .solutions-header {

        max-width: 100%;

        margin-bottom: 30px;

        gap: 5px;

        padding: 0 15px;

    }



    .solutions-header h5 {

        font-size: 12px;

    }



    .solutions-header h2 {

        font-size: 28px;

        text-align: center;

    }



    .solutions-header p {

        font-size: 13px;

        text-align: center;

    }



    .solutions-grid {

        gap: 20px;

        padding: 0 10px;

    }



    .solution-card {

        width: 100%;

        max-width: 380px;

        margin: 0 auto;

    }



    .solution-card img {

        height: 180px;

    }



    .solution-card h3 {

        font-size: 18px;

        padding: 10px 0;

    }



    .solution-card p {

        font-size: 13px;

        padding-bottom: 20px;

    }



    .solution-card-in {

        padding: 15px;

    }



    .img-box {

        height: 44px;

        width: 44px;

    }



    .more-box img {

        width: 22px;

        height: 22px;

    }



    .learn-more {

        font-size: 13px;

    }



    .learn-more::after {

        width: 14px;

        height: 14px;

    }



    .top-line {

        height: 3px;

    }

}



/* Small Mobile */

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

    .solutions-section {

        padding: 20px 0;

    }



    .solutions-header h2 {

        font-size: 24px;

        line-height: 110%;

    }



    .solutions-header p {

        font-size: 12px;

    }



    .solutions-grid {

        gap: 16px;

    }



    .solution-card {

        max-width: 100%;

    }



    .solution-card img {

        height: 160px;

    }



    .solution-card h3 {

        font-size: 16px;

        padding: 8px 0;

    }



    .solution-card p {

        font-size: 12px;

        padding-bottom: 16px;

    }



    .solution-card-in {

        padding: 12px;

    }



    .img-box {

        height: 38px;

        width: 38px;

    }



    .more-box img {

        width: 18px;

        height: 18px;

    }



    .learn-more {

        font-size: 12px;

    }



    .learn-more::after {

        width: 12px;

        height: 12px;

    }

}



/* Tablet */

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

    .why-section {

        padding: 30px 0;

    }



    .why-inner {

        gap: 40px;

        flex-direction: column;

    }



    .why-content {

        flex: auto;

        width: 100%;

        text-align: center;

    }



    .why-subtitle {

        font-size: 14px;

        margin-bottom: 8px;

    }



    .why-title {

        font-size: 34px;

        margin-bottom: 15px;

    }



    .why-desc {

        font-size: 16px;

        margin-bottom: 25px;

        max-width: 90%;

        margin-left: auto;

        margin-right: auto;

    }



    .why-block {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 12px;

        margin-bottom: 20px;

    }



    .why-block .icon {

        height: 52px;

        width: 52px;

    }



    .why-block h3 {

        font-size: 18px;

        margin-bottom: 6px;

    }



    .why-block p {

        font-size: 14px;

        max-width: 90%;

        margin: 0 auto;

    }



    .why-image {

        flex: auto;

        width: 100%;

    }



    .why-image img {

        max-height: 400px;

        object-fit: cover;

    }

}



/* Mobile */

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

    .why-section {

        padding: 20px 0;

    }



    .why-inner {

        gap: 30px;

    }



    .why-subtitle {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .why-title {

        font-size: 28px;

        margin-bottom: 12px;

    }



    .why-desc {

        font-size: 14px;

        margin-bottom: 20px;

        max-width: 95%;

    }



    .why-block {

        gap: 10px;

        margin-bottom: 18px;

    }



    .why-block .icon {

        height: 44px;

        width: 44px;

    }



    .why-block .icon img {

        width: 22px;

        height: 22px;

    }



    .why-block h3 {

        font-size: 16px;

        margin-bottom: 5px;

    }



    .why-block p {

        font-size: 13px;

        max-width: 95%;

    }



    .why-image img {

        max-height: 300px;

        border-radius: 8px;

    }

}



/* Small Mobile */

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

    .why-section {

        padding: 15px 0;

    }



    .why-inner {

        gap: 25px;

    }



    .why-title {

        font-size: 24px;

    }



    .why-desc {

        font-size: 13px;

    }



    .why-block {

        padding: 20px;

        gap: 8px;

        margin-bottom: 15px;

    }



    .why-block .icon {

        height: 38px;

        width: 38px;

    }



    .why-block .icon img {

        width: 18px;

        height: 18px;

    }



    .why-block h3 {

        font-size: 15px;

    }



    .why-block p {

        font-size: 12px;

    }



    .why-image img {

        max-height: 250px;

    }

}



/* Tablet */

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

    /* .process-section {

        padding: 50px 0;

    } */



    .process-header {

        max-width: 90%;

        margin-bottom: 40px;

    }



    .process-subtitle {

        font-size: 14px;

        margin-bottom: 8px;

    }



    .process-title {

        font-size: 30px;

        margin-bottom: 12px;

    }



    .process-desc {

        font-size: 14px;

    }



    .process-row {

        flex-wrap: wrap;

        gap: 20px;

    }

.process-card.aos-init.aos-animate:hover {
    background-color: red!important;
}

.process-card:hover{

background-color:#ffcc00!important;
transition:0.5s ease-in-out!important;

}

.process-card:hover h3{

color:white!important;

}

.process-card:hover .process-number{

color:white!important;
color:#ffcc00!important;

}

.process-card:hover h3{

background-color:white!important;

}


.process-card:hover p{

background-color:white!important;

}

    .process-card {

        flex: 1 1 calc(50% - 10px);

        min-width: 200px;

        padding: 25px 20px;

        gap: 15px;

    }



    .process-number {

        width: 44px;

        height: 44px;

        font-size: 18px;

    }



    .process-card h3 {

        font-size: 18px;

    }



    .process-card p {

        font-size: 14px;

    }

}



/* Mobile */

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

    /* .process-section {

        padding: 40px 0;

    } */



    .process-header {

        max-width: 100%;

        margin-bottom: 30px;

        padding: 0 15px;

    }



    .process-subtitle {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .process-title {

        font-size: 26px;

        margin-bottom: 10px;

    }



    .process-desc {

        font-size: 13px;

    }



    .process-row {

        flex-direction: column;

        gap: 16px;

        padding: 0 10px;

    }



    .process-card {

        flex: auto;

        width: 100%;

        padding: 20px 18px;

        gap: 12px;

        align-items: center;

        text-align: center;

    }



    .process-card p {

        text-align: center;

    }



    .process-number {

        width: 40px;

        height: 40px;

        font-size: 16px;

    }



    .process-card h3 {

        font-size: 18px;

    }



    .process-card p {

        font-size: 13px;

    }

}



/* Small Mobile */

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

    /* .process-section {

        padding: 30px 0;

    } */



    .process-title {

        font-size: 24px;

    }



    .process-desc {

        font-size: 12px;

    }



    .process-card {

        padding: 16px 14px;

        gap: 10px;

    }



    .process-number {

        width: 36px;

        height: 36px;

        font-size: 14px;

    }



    .process-card h3 {

        font-size: 16px;

    }



    .process-card p {

        font-size: 12px;

    }

}



/* Digital solution page query END */

/* portfolio page media query      */

/* Tablet */

/* Tablet */

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

    .tech-portfolio-section {

        padding: 30px 0;

    }



    .tech-portfolio-header {

        margin-bottom: 50px;

    }



    .tech-portfolio-subtitle {

        font-size: 14px;

    }



    .tech-portfolio-title {

        font-size: 30px;

        margin-bottom: 15px;

    }



    .tech-portfolio-tabs {

        padding: 8px;

        gap: 8px;

        border-radius: 40px;

    }



    .tech-tab {

        padding: 8px 20px;

        font-size: 14px;

    }



    .tech-tab img {

        width: 18px;

        height: 18px;

    }



    .tech-portfolio-grid {

        gap: 24px;

    }



    .tech-portfolio-card {

        padding: 24px;

        height: 500px;

    }



    .tech-card-body {

        padding: 18px;

    }



    .tech-card-title {

        font-size: 18px;

        margin-bottom: 10px;

    }



    .tech-card-text {

        font-size: 13px;

        margin-bottom: 16px;

        max-width: 100%;

    }



    .tech-card-tags {

        gap: 8px;

        margin-bottom: 16px;

    }



    .tech-card-tags span {

        padding: 4px 12px;

        font-size: 12px;

    }



    .tech-card-logo {

        flex-direction: row;

        flex-wrap: wrap;

        gap: 15px;

    }



    .tech-card-logo .tools {

        gap: 20px;

    }



    .tech-card-logo .tools span {

        font-size: 12px;

    }



    .tech-card-logo .tools span img {

        width: 16px;

        height: 16px;

    }



    .tech-download-btn {

        padding: 8px 16px;

        font-size: 13px;

    }



    .tech-case-study {

        font-size: 14px;

    }

}



/* Mobile */

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

    .tech-portfolio-section {

        padding: 20px 0;

    }



    .tech-portfolio-header {

        margin-bottom: 30px;

    }



    .tech-portfolio-subtitle {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .tech-portfolio-title {

        font-size: 24px;

        margin-bottom: 12px;

    }



    .tech-portfolio-tabs {

        padding: 6px;

        gap: 6px;

        border-radius: 30px;

        width: 100%;

        justify-content: center;

    }



    .tech-tab {

        padding: 6px 14px;

        font-size: 12px;

        gap: 4px;

    }



    .tech-tab img {

        width: 14px;

        height: 14px;

    }



    .tech-portfolio-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }



    .tech-portfolio-card {

        padding: 20px;

        height: auto;

        min-height: 500px;

    }



    .tech-card-body {

        padding: 16px;

    }



    .tech-card-title {

        font-size: 18px;

        margin-bottom: 8px;

    }



    .tech-card-text {

        font-size: 13px;

        margin-bottom: 16px;

        max-width: 100%;

    }



    .tech-card-tags {

        gap: 8px;

        margin-bottom: 16px;

    }



    .tech-card-tags span {

        padding: 4px 10px;

        font-size: 11px;

    }



    .tech-card-logo {

        flex-direction: row;

        align-items: flex-start;

        gap: 15px;

    }



    .tech-card-logo .tools {

        gap: 16px;

        flex-wrap: wrap;

    }



    .tech-card-logo .tools span {

        font-size: 11px;

        gap: 4px;

    }



    .tech-card-logo .tools span img {

        width: 14px;

        height: 14px;

    }



    .tech-download-btn {

        padding: 8px 16px;

        font-size: 12px;

    }



    .tech-case-study {

        font-size: 13px;

    }

}



/* Small Mobile */

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

    .tech-portfolio-title {

        font-size: 22px;

    }



    .tech-portfolio-tabs {

        padding: 5px;

        gap: 5px;

    }



    .tech-tab {

        padding: 5px 12px;

        font-size: 11px;

    }



    .tech-tab img {

        width: 12px;

        height: 12px;

    }



    .tech-portfolio-card {

        padding: 16px;

        min-height: 380px;

    }



    .tech-card-body {

        padding: 14px;

    }



    .tech-card-title {

        font-size: 16px;

        margin-bottom: 6px;

    }



    .tech-card-text {

        font-size: 12px;

        margin-bottom: 14px;

    }



    .tech-card-tags span {

        padding: 3px 8px;

        font-size: 10px;

    }



    .tech-card-logo .tools {

        gap: 12px;

    }



    .tech-card-logo .tools span {

        font-size: 10px;

    }



    .tech-card-logo .tools span img {

        width: 12px;

        height: 12px;

    }



    .tech-download-btn {

        padding: 6px 12px;

        font-size: 11px;

    }



    .tech-case-study {

        font-size: 12px;

    }

}



/* portfolio page media query     END */

/* our services page media query      */

/* Tablet */

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

    .consulting-flow {

        padding: 25px 0;

    }



    .flow-header {

        margin-bottom: 40px;

    }



    .flow-subtitle {

        font-size: 14px;

    }



    .flow-title {

        font-size: 30px;

    }



    .flow-row {

        gap: 20px;

    }



    .flow-card {

        flex: 1 1 calc(33.33% - 20px);

        min-width: 200px;

        padding: 25px 15px;

    }



    .flow-icon {

        width: 50px;

        height: 50px;

    }



    .flow-icon img {

        width: 28px;

        height: 28px;

    }



    .flow-card h3 {

        font-size: 18px;

        margin-bottom: 8px;

    }



    .flow-card p {

        font-size: 13px;

    }

}



/* Mobile */

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

    .consulting-flow {

        padding: 20px 0;

    }



    .flow-header {

        margin-bottom: 30px;

    }



    .flow-subtitle {

        text-align: left;

        margin-left: 12px;

        font-size: 12px;

    }



    .flow-title {

        text-align: left;

        font-size: 24px;

        padding: 0 15px;

    }



    .flow-row {

        flex-direction: column;

        gap: 16px;

        padding: 0 10px;

    }



    .flow-card {

        flex: 1 1 calc(50% - 16px);

        min-width: 150px;

        padding: 20px 12px;

    }



    .flow-icon {

        width: 45px;

        height: 45px;

    }



    .flow-icon img {

        width: 24px;

        height: 24px;

    }



    .flow-card h3 {

        font-size: 16px;

        margin-bottom: 6px;

    }



    .flow-card p {

        font-size: 12px;

    }

}



/* Small Mobile */

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

    .flow-title {

        font-size: 22px;

    }



    .flow-row {

        gap: 12px;

        flex-direction: column;

        padding: 0 10px;

    }



    .flow-card {

        flex: 1 1 100%;

        padding: 18px 15px;

    }



    .flow-icon {

        width: 40px;

        height: 40px;

    }



    .flow-icon img {

        width: 20px;

        height: 20px;

    }



    .flow-card h3 {

        font-size: 16px;

    }



    .flow-card p {

        font-size: 12px;

    }

}





/* Stats Flow Section */

/* Tablet */

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

    .stats-flow {

        padding: 25px 0;

    }



    .stats-inner {

        gap: 30px;

    }



    .stats-side {

        flex: 1;

    }



    .stats-side img {

        max-height: 350px;

        object-fit: cover;

    }



    .stats-center {

        flex: 2;

    }



    .stats-grid {

        gap: 20px;

    }



    .stats-card {

        padding: 20px;

    }



    .stats-card h2 {

        font-size: 36px;

    }



    .stats-card h3 {

        font-size: 16px;

    }



    .stats-card p {

        font-size: 12px;

    }

}



/* Mobile */

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

    .stats-flow {

        padding: 20px 0;

    }



    .stats-inner {

        flex-direction: column;

        gap: 25px;

    }



    .stats-side {

        width: 100%;

        text-align: center;

    }



    .stats-side img {

        max-width: 80%;

        max-height: 250px;

    }



    .stats-center {

        width: 100%;

        padding: 0 10px;

    }



    .stats-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }



    .stats-card {

        text-align: center;

        padding: 20px 15px;

    }



    .stats-card h2 {

        font-size: 32px;

    }



    .stats-card h3 {

        font-size: 16px;

    }



    .stats-card p {

        font-size: 13px;

    }

}



/* Small Mobile */

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

    .stats-side img {

        max-width: 100%;

        max-height: 200px;

    }



    .stats-card {

        padding: 16px 12px;

    }



    .stats-card h2 {

        font-size: 28px;

    }



    .stats-card h3 {

        font-size: 14px;

    }



    .stats-card p {

        font-size: 12px;

    }

}



/* Tablet */

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

    .solution-logo {

        width: 52px;

        height: 52px;

        margin-top: -50px;

    }



    .solution-logo img {

        width: 28px;

        height: 28px;

    }

}



/* Mobile */

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

    .solution-logo {

        width: 48px;

        height: 48px;

        margin-top: -45px;

    }



    .solution-logo img {

        width: 24px;

        height: 24px;

    }

}



/* Small Mobile */

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

    .solution-logo {

        width: 42px;

        height: 42px;

        margin-top: -40px;

    }



    .solution-logo img {

        width: 20px;

        height: 20px;

    }

}



/* our services page media query     END */



/* Contact us page media query       */

/* Tablet */

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

    .business-hours {

        padding: 30px 0;

    }



    .hours-inner {

        flex-direction: column;

        text-align: center;

        gap: 25px;

        padding: 40px 25px;

    }



    .hours-subtitle {

        font-size: 34px;

        margin-bottom: 8px;

    }



    .hours-text {

        font-size: 16px;

        margin-bottom: 6px;

    }



    .hours-cta {

        font-size: 28px;

        margin-top: 10px;

    }



    .hours-action .btn-secondary {

        min-width: 250px;

        padding: 12px 24px;

        font-size: 14px;

    }

}



/* Mobile */

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

    .business-hours {

        padding: 20px 0;

    }



    .hours-inner {

        gap: 20px;

        padding: 30px 20px;

    }



    .hours-subtitle {

        font-size: 28px;

        margin-bottom: 6px;

    }



    .hours-text {

        font-size: 14px;

        margin-bottom: 5px;

    }



    .hours-cta {

        font-size: 22px;

        margin-top: 8px;

    }



    .hours-action .btn-secondary {

        min-width: 220px;

        padding: 10px 20px;

        font-size: 13px;

    }

}



/* Small Mobile */

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

    .business-hours {

        padding: 15px 0;

    }



    .hours-inner {

        gap: 16px;

        padding: 25px 15px;

    }



    .hours-subtitle {

        font-size: 24px;

        margin-bottom: 5px;

    }



    .hours-text {

        font-size: 13px;

        margin-bottom: 4px;

    }



    .hours-cta {

        font-size: 18px;

        margin-top: 6px;

    }



    .hours-action .btn-secondary {

        min-width: 200px;

        padding: 8px 16px;

        font-size: 12px;

    }

}





/* Tablet */

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

    .contact-inner {

        flex-direction: column;

        gap: 30px;

    }



    .contact-info {

        width: 100%;

        /* text-align: center; */

    }



    .contact-title {

        font-size: 14px;

    }



    .contact-heading {

        font-size: 34px;

    }



    .contact-desc {

        font-size: 14px;

        max-width: 80%;

        margin-left: auto;

        margin-right: auto;

    }



    .contact-list {

        max-width: 100%;

        margin: 0 auto;

    }



    .contact-item {

        justify-content: center;

    }



    .item-left {

        min-width: 55px;

        width: 55px;

        height: 55px;

    }



    .item-left img {

        width: 28px;

        height: 28px;

    }



    .item-right p,

    .item-right a {

        font-size: 16px;

    }



    .contact-form {

        min-width: auto;

        width: 100%;

        padding: 28px;

    }



    .form-title {

        font-size: 34px;

    }



    .contact-50 {

        gap: 12px;

    }



    .contact-form input,

    .contact-form select,

    .contact-form textarea {

        padding: 16px;

        font-size: 13px;

    }



    .checkbox {

        font-size: 14px;

    }

}



/* Mobile */

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

    .contact-inner {

        gap: 25px;

    }



    .contact-heading {

        font-size: 28px;

    }



    .contact-desc {

        font-size: 13px;

        max-width: 100%;

    }



    .contact-list li {

        margin-bottom: 15px;

    }



    .contact-item {

        gap: 12px;

    }



    .item-left {

        min-width: 48px;

        width: 48px;

        height: 48px;

    }



    .item-left img {

        width: 24px;

        height: 24px;

    }



    .item-right p,

    .item-right a {

        font-size: 14px;

    }



    .contact-form {

        padding: 24px;

    }



    .form-title {

        font-size: 28px;

        margin-bottom: 15px;

    }



    .contact-50 {

        flex-direction: column;

        gap: 0;

    }



    .contact-form input,

    .contact-form select,

    .contact-form textarea {

        padding: 14px;

        font-size: 13px;

        margin-bottom: 12px;

    }



    .contact-form textarea {

        min-height: 100px;

    }



    .checkbox {

        font-size: 12px;

        /* flex-wrap: wrap;

    text-align: center; */

    }



    .checkbox input {

        width: 16px;

        height: 16px;

    }



    .contact-form .btn-secondary {

        padding: 12px 20px;

        font-size: 14px;

    }



    .contact-form .btn-secondary img {

        width: 16px;

        height: 16px;

    }

}



/* Small Mobile */

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

    .contact-heading {

        font-size: 24px;

    }



    .contact-title {

        font-size: 12px;

    }



    .contact-desc {

        font-size: 12px;

    }



    .item-left {

        min-width: 42px;

        width: 42px;

        height: 42px;

    }



    .item-left img {

        width: 20px;

        height: 20px;

    }



    .item-right p,

    .item-right a {

        font-size: 13px;

    }



    .contact-form {

        padding: 20px;

    }



    .form-title {

        font-size: 24px;

    }



    .contact-form input,

    .contact-form select,

    .contact-form textarea {

        padding: 12px;

        font-size: 12px;

    }



    .checkbox {

        font-size: 11px;

    }



    .contact-form .btn-secondary {

        padding: 10px 16px;

        font-size: 13px;

    }

}



/* Tablet */

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

    .counter-flow {

        padding: 30px 0;

    }



    .counter-flow .subtitle p {

        font-size: 14px;

        margin-bottom: 8px;

    }



    .counter-flow .subtitle h2 {

        font-size: 34px;

        margin-bottom: 40px;

        padding: 0 20px;

    }



    .counter-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }



    .counter-item {

        padding: 20px;

    }



    .counter-item h2 {

        font-size: 48px;

    }



    .counter-item p {

        font-size: 20px;

    }

}



/* Mobile */

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

    .counter-flow {

        padding: 20px 0;

    }



    .counter-flow .subtitle p {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .counter-flow .subtitle h2 {

        font-size: 28px;

        margin-bottom: 30px;

        padding: 0 15px;

    }



    .counter-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

    }



    .counter-item {

        padding: 15px;

    }



    .counter-item h2 {

        font-size: 36px;

    }



    .counter-item p {

        font-size: 16px;

    }

}



/* Small Mobile */

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

    .counter-flow .subtitle h2 {

        font-size: 24px;

        margin-bottom: 25px;

    }



    .counter-grid {

        gap: 12px;

    }



    .counter-item {

        padding: 12px;

    }



    .counter-item h2 {

        font-size: 28px;

    }



    .counter-item p {

        font-size: 14px;

    }

}



/* Contact us page media query      END */



/* clients page media query        */

/* Tablet */

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

    .industries-flow {

        padding-top: 30px;

    }



    .industries-header {

        margin-bottom: 40px;

    }



    .industries-header h5 {

        font-size: 14px;

        margin-bottom: 8px;

    }



    .industries-header h2 {

        font-size: 32px;

        margin-bottom: 15px;

        /* padding: 0 20px; */

    }



    .industries-header p {

        font-size: 15px;

        width: 90%;

    }



    .industries-inner {

        flex-direction: column;

        gap: 30px;

    }



    .industries-tabs {

        flex-wrap: nowrap;

        overflow-x: auto;

        flex: auto;

        flex-direction: row;

        /* flex-wrap: wrap; */

        gap: 12px;

        justify-content: start;

    }





    .industry-tab {

        min-height: auto;

        padding: 10px 18px;

        font-size: 16px;

        gap: 8px;

    }



    .indust-icon {

        height: 45px;

        width: 45px;

    }



    .indust-icon svg {

        height: 25px;

        width: 25px;

    }



    .industries-content {

        flex: auto;

    }



    .industry-content-inner {

        flex-direction: column;

        gap: 20px;

    }



    .industry-content {

        padding: 20px;

    }



    /* .indust-left {

    text-align: center;

  } */



    .indust-left img {

        max-width: 100%;

        height: auto;

    }



    .indust-right {

        /* text-align: center; */

        padding: 0px 20px 20px 20px;

    }



    .industry-content h3 {

        font-size: 22px;

    }



    .industry-content p {

        font-size: 15px;

    }



    .industry-content ul {

        text-align: left;

        width: 100%;

        display: inline-block;

        margin: 0 auto 30px auto;

    }



    .industry-content ul li {

        font-size: 14px;

        padding-left: 32px;

    }



    .industry-content ul li::before {

        width: 22px;

        height: 22px;

    }

}



/* Mobile */

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

    .industries-flow {

        padding-top: 20px;

    }



    .industries-header {

        margin-bottom: 30px;

    }



    .industries-header h5 {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .industries-header h2 {

        font-size: 26px;

        margin-bottom: 12px;

        /* padding: 0 15px; */

    }



    .industries-header p {

        font-size: 14px;

        width: 100%;

        /* padding: 0 15px; */

    }



    .industries-inner {

        gap: 25px;

    }



    .industries-tabs {

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 10px;

    }



    .industry-tab {

        padding: 8px 14px;

        font-size: 14px;

        gap: 6px;

    }



    .indust-icon {

        height: 38px;

        width: 38px;

    }



    .indust-icon svg {

        height: 20px;

        width: 20px;

    }



    .industry-content {

        padding: 16px;

    }



    .industry-content-inner {

        gap: 15px;

    }



    .indust-left img {

        max-width: 100%;

        height: 200px;

        width: 200px;

        border-radius: 10px;

    }

   .industry-content-inner .indust-left img {
    
}




    .industry-content h3 {

        font-size: 20px;

        margin-bottom: 8px;

    }



    .industry-content p {

        font-size: 14px;

        margin-bottom: 12px;

    }



    .industry-content ul {

        margin-bottom: 25px;

    }



    .industry-content ul li {

        font-size: 13px;

        margin-bottom: 6px;

        padding-left: 28px;

    }



    .industry-content ul li::before {

        width: 18px;

        height: 18px;

    }



    .indust-right .btn-secondary {

        padding: 10px 20px;

        font-size: 13px;

    }

}



/* Small Mobile */

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

    .industries-header h2 {

        font-size: 24px;

    }



    .industries-header p {

        font-size: 13px;

    }



    .industries-tabs {

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 8px;

    }



    .industry-tab {

        padding: 6px 12px;

        font-size: 12px;

        gap: 5px;

    }



    .indust-icon {

        height: 32px;

        width: 32px;

    }



    .indust-icon svg {

        height: 16px;

        width: 16px;

    }



    .industry-content {

        padding: 14px;

    }



    .industry-content h3 {

        font-size: 18px;

    }



    .industry-content p {

        font-size: 13px;

    }



    .industry-content ul li {

        font-size: 12px;

        padding-left: 24px;

    }



    .industry-content ul li::before {

        width: 16px;

        height: 16px;

    }



    .indust-right .btn-secondary {

        padding: 8px 16px;

        font-size: 12px;

    }

}



/* Tablet */

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

    .achievements-header {

        flex-direction: column;

        text-align: center;

        gap: 20px;

    }



    .achievements-text {

        width: 100%;

    }



    .achievements-title {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .achievements-heading {

        font-size: 32px;

    }



    .achievements-desc {

        font-size: 14px;

        max-width: 90%;

        margin: 0 auto;

    }



    .achievements-header .btn-secondary {

        padding: 10px 20px;

        font-size: 13px;

    }



    .master-container {

        margin-top: 15px;

        margin-bottom: 60px;

    }



    .master-container .container {

        padding: 15px;

        overflow-x: auto;

    }



    .achievements-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 0;

        min-width: 600px;

    }



    .achievement-item {

        padding: 15px 12px;

        gap: 12px;

    }



    .achievement-item p {

        font-size: 12px;

    }



    .achievement-item img {

        max-width: 80px;

        margin-bottom: 10px;

    }

}



/* Mobile */

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

    .achievements-header {

        gap: 15px;

    }



    .achievements-title {

        font-size: 12px;

    }



    .achievements-heading {

        font-size: 28px;

        padding: 0 15px;

    }



    .achievements-desc {

        font-size: 13px;

        width: 100%;

        padding: 0 15px;

    }



    .achievements-header .btn-secondary {

        padding: 8px 16px;

        font-size: 12px;

    }



    .achievements-header .btn-secondary img {

        width: 12px;

        height: 12px;

    }



    .master-container {

        margin-top: 10px;

        margin-bottom: 40px;

    }



    .master-container .container {

        padding: 10px;

        overflow-x: auto;

    }



    .achievements-grid {

        grid-template-columns: repeat(3, 1fr);

        min-width: 500px;

    }



    .achievement-item {

        padding: 12px 8px;

        gap: 10px;

    }



    .achievement-item p {

        font-size: 11px;

        line-height: 1.4;

    }



    .achievement-item img {

        max-width: 60px;

        margin-bottom: 8px;

    }

}



/* Small Mobile */

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

    .achievements-heading {

        font-size: 24px;

    }



    .achievements-desc {

        font-size: 12px;

    }



    .achievements-header .btn-secondary {

        padding: 8px 14px;

        font-size: 11px;

    }



    .master-container .container {

        overflow-x: auto;

    }



    /* .achievements-grid {

    grid-template-columns: repeat(3, 1fr);

    min-width: 450px;

  } */

    .achievements-grid {

        grid-template-columns: repeat(2, 1fr);

        min-width: 300px;

    }



    .achievement-item {

        padding: 10px 6px;

        gap: 8px;

    }



    .achievement-item p {

        font-size: 10px;

    }



    .achievement-item img {

        max-width: 50px;

        margin-bottom: 6px;

    }

}



/* Tablet */

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

    .tech-problem {

        min-height: 400px;

        background-position: center;

    }



    .problem-inner {

        padding: 0 20px;

    }



    .problem-inner h5 {

        font-size: 14px;

    }



    .problem-inner h2 {

        font-size: 34px;

        margin-bottom: 15px;

    }



    .problem-inner p {

        font-size: 16px;

        max-width: 80%;

        margin-bottom: 30px;

    }



    .btn-primary {

        padding: 12px 24px;

        font-size: 14px;

    }

}



/* Mobile */

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

    .tech-problem {

        min-height: 350px;

        background-position: 70% center;

    }



    .problem-inner {

        padding: 0 15px;

    }



    .problem-inner h5 {

        font-size: 12px;

        margin-bottom: 8px;

    }



    .problem-inner h2 {

        font-size: 28px;

        margin-bottom: 12px;

    }



    .problem-inner p {

        font-size: 14px;

        max-width: 100%;

        margin-bottom: 25px;

        padding: 0 10px;

    }



    .btn-primary {

        padding: 10px 20px;

        font-size: 13px;

    }

}



/* Small Mobile */

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

    .tech-problem {

        min-height: 300px;

        background-position: 65% center;

    }



    .problem-inner h2 {

        line-height: 110%;

        font-size: 24px;

    }



    .problem-inner p {

        font-size: 13px;

        margin-bottom: 20px;

    }



    .btn-primary {

        padding: 8px 16px;

        font-size: 12px;

    }



    .btn-primary::after {

        width: 14px;

        height: 14px;

    }

}



/* Tablet */

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

    .tools-flow {

        padding: 30px 0;

    }



    .tools-title {

        font-size: 12px;

        margin-bottom: 6px;

    }



    .tools-heading {

        font-size: 32px;

        max-width: 90%;

        margin-bottom: 30px;

    }



    .tools-tabs {

        justify-content: flex-start;

        gap: 0;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        padding-bottom: 15px;

        margin-bottom: 30px;

    }



    /* Scrollbar styling */

    .tools-tabs::-webkit-scrollbar {

        height: 3px;

    }



    .tools-tabs::-webkit-scrollbar-track {

        background: #e6e6e6;

        border-radius: 10px;

    }



    .tools-tabs::-webkit-scrollbar-thumb {

        background: var(--secondary);

        border-radius: 10px;

    }



    .tool-tab {

        flex: 0 0 auto;

        padding: 8px 16px;

        font-size: 13px;

        scroll-snap-align: start;

    }



    .tools-tabs::after {

        bottom: 9px;

    }



    .tool-tab::after {

        bottom: -1px;

    }



    .tools-item {

        gap: 20px;

        flex-wrap: wrap;

    }



    .tool-box {

        height: 85px;

        width: 85px;

        padding: 8px;

    }



    .tool-box img {

        width: 40px;

        height: 40px;

    }



    .tool-box p {

        font-size: 11px;

    }

}



/* Mobile */

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

    .tools-flow {

        padding: 20px 0;

    }



    .tools-title {

        font-size: 12px;

    }



    .tools-heading {

        font-size: 26px;

        max-width: 100%;

        margin-bottom: 25px;

        padding: 0 15px;

    }



    .tools-tabs {

        padding: 8px 0 12px 0;

        margin-bottom: 25px;

        scrollbar-width: thin;

    }



    .tool-tab {

        padding: 6px 14px;

        font-size: 12px;

    }



    .tools-tabs::after {

        bottom: 8px;

    }



    .tool-tab::after {

        bottom: -2px;

        height: 3px;

    }



    .tools-item {

        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;

    }



    .tool-box {

        height: 75px;

        width: 75px;

        padding: 6px;

    }



    .tool-box img {

        width: 32px;

        height: 32px;

    }



    .tool-box p {

        font-size: 10px;

    }

}



/* Small Mobile */

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

    .tools-heading {

        font-size: 22px;

    }



    .tool-tab {

        padding: 5px 12px;

        font-size: 11px;

    }



    .tools-item {

        gap: 12px;

    }



    .tool-box {

        height: 65px;

        width: 65px;

        padding: 5px;

    }



    .tool-box img {

        width: 28px;

        height: 28px;

    }



    .tool-box p {

        font-size: 9px;

    }

}



/* For very small screens - 3 items per row */

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

    .tools-item {

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 10px;

    }



    .tool-box {

        width: 100%;

        height: auto;

        padding: 10px 5px;

    }

}



/* clients page media query       END */

/* career page media query */



/* ============================================ */

/* 1. ABOUT HERO SECTION (Career Banner) */

/* ============================================ */

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

    .about-hero {

        min-height: 450px;

        background-position: center;

    }



    .about-hero-content {

        padding: 0 20px;

    }



    .about-hero-title {

        font-size: 48px;

    }



    .about-hero-subtitle {

        font-size: 18px;

        margin-bottom: 30px;

    }



    /* .search-box {

    flex-direction: row;

    max-width: 300px;

    gap: 15px;

    padding: 20px;

  } */



    .search-input {

        width: 100%;

    }



    .select-option {

        width: 100%;

        flex-direction: column;

        gap: 10px;

    }



    .search-select {

        width: 100%;

    }



    .search-select select {

        width: 100%;

    }



    .search-btn {

        width: 100%;

        text-align: center;

        justify-content: center;

    }

}



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

    .about-hero {

        min-height: 400px;

    }



    .about-hero-title {

        font-size: 36px;

    }



    .about-hero-subtitle {

        font-size: 16px;

    }



    .search-input input {

        padding: 12px 15px;

        font-size: 14px;

    }



    .search-select select {

        padding: 12px 15px;

        font-size: 14px;

    }



    .search-btn {

        padding: 12px 20px;

        font-size: 14px;

    }

}



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

    .about-hero-title {

        font-size: 28px;

    }



    .about-hero-subtitle {

        font-size: 14px;

    }



    .search-input input {

        padding: 10px 12px;

        font-size: 13px;

    }



    .search-select select {

        padding: 10px 12px;

        font-size: 13px;

    }



    .search-btn {

        padding: 10px 16px;

        font-size: 13px;

    }

}



/* ============================================ */

/* 2. JOBS FLOW SECTION */

/* ============================================ */

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

    .jobs-header {

        padding: 0 20px;

    }



    .jobs-title {

        font-size: 14px;

    }



    .jobs-heading {

        font-size: 34px;

    }



    .jobs-desc {

        font-size: 15px;

    }



    .job-card {

        margin: 0 20px;

        padding: 25px;

    }



    .job-info>div {

        flex-wrap: wrap;

        gap: 10px;

    }



    .job-role {

        font-size: 22px;

    }



    .job-summary {

        font-size: 14px;

    }



    .requirments {

        margin-top: 20px;

    }



    .job-req-title {

        font-size: 14px;

    }



    .job-req-list li {

        font-size: 13px;

    }



    .see-all {

        margin: 30px 20px 0;

    }

}



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

    .jobs-heading {

        font-size: 28px;

    }



    .jobs-desc {

        font-size: 14px;

    }



    .job-card {

        padding: 20px;

    }



    .job-role {

        font-size: 20px;

    }



    .job-type,

    .job-status {

        font-size: 12px;

        padding: 4px 10px;

    }



    .job-summary {

        font-size: 13px;

    }



    .job-req-list li {

        font-size: 12px;

        margin-bottom: 8px;

    }



    .job-action .btn-primary {

        padding: 10px 20px;

        font-size: 13px;

    }



    .see-all .btn-primary {

        padding: 12px 24px;

        font-size: 14px;

    }

}



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

    .jobs-heading {

        font-size: 24px;

    }



    .job-role {

        font-size: 18px;

    }



    .job-card {

        padding: 16px;

    }



    .job-summary {

        font-size: 12px;

    }

}



/* ============================================ */

/* 3. PROCESS FLOW SECTION (Hiring Process) */

/* ============================================ */

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

    .process-header {

        padding: 0 20px;

    }



    .process-flow .process-title {

        font-size: 14px;

    }



    .process-heading {

        font-size: 34px;

    }



    .process-desc {

        font-size: 15px;

    }



    .process-timeline {

        flex-wrap: wrap;

        justify-content: center;

        gap: 30px;

    }



    .process-step {

        flex: 0 0 calc(33.33% - 20px);

        min-width: 150px;

    }



    .process-step::after {

        display: none;

    }



    .step-circle {

        width: 70px;

        height: 70px;

    }



    .step-circle img {

        width: 32px;

        height: 32px;

    }



    .process-step p {

        font-size: 14px;

    }

}



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

    .process-heading {

        font-size: 28px;

    }



    .process-desc {

        font-size: 14px;

    }



    .process-timeline {

        gap: 20px;

    }



    .process-step {

        flex: 0 0 calc(50% - 10px);

    }



    .step-circle {

        width: 60px;

        height: 60px;

    }



    .step-circle img {

        width: 28px;

        height: 28px;

    }



    .process-step p {

        font-size: 13px;

    }

}



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

    .process-heading {

        font-size: 24px;

    }



    .process-step {

        flex: 0 0 100%;

    }



    .step-circle {

        width: 55px;

        height: 55px;

    }

}



/* ============================================ */

/* 4. JOIN US FLOW SECTION (Why Join Us) */

/* ============================================ */

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

    .joinus-flow {

        padding: 30px 0;

    }



    .joinus-header {

        flex-direction: column;

        text-align: center;

        gap: 20px;

        margin-bottom: 30px;

        padding: 0 20px;

    }



    .joinus-title {

        font-size: 34px;

    }



    .joinus-desc {

        font-size: 15px;

        max-width: 100%;

    }



    .joinus-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

        padding: 0 20px;

    }



    .joinus-card {

        padding: 25px;

        gap: 15px;

    }



    .joinus-card .icon {

        width: 48px;

        height: 48px;

        font-size: 24px;

    }



    .joinus-card h3 {

        font-size: 18px;

    }



    .joinus-card p {

        font-size: 13px;

    }

}



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

    .joinus-title {

        font-size: 28px;

    }



    .joinus-desc {

        font-size: 14px;

    }



    .joinus-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }



    .joinus-card {

        padding: 20px;

        text-align: center;

        align-items: center;

    }



    .joinus-card .icon {

        width: 50px;

        height: 50px;

    }



    .joinus-card h3 {

        font-size: 18px;

    }



    .joinus-card p {

        font-size: 13px;

        text-align: center;

    }



    .joinus-action .btn-primary {

        padding: 10px 20px;

        font-size: 13px;

    }

}



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

    .joinus-title {

        font-size: 24px;

    }



    .joinus-desc {

        font-size: 13px;

    }



    .joinus-card {

        padding: 16px;

    }



    .joinus-card h3 {

        font-size: 16px;

    }



    .joinus-card p {

        font-size: 12px;

    }

}



/* career page media query END*/



/* ============================================ */

/* 1. JOB DETAIL HERO SECTION */

/* ============================================ */

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

  .about-hero.job-detail {

    min-height: 450px;

  }



  .job-detail .about-hero-content {

    max-width: 90%;

    padding: 0 20px;

  }



  .job-detail .about-hero-title {

    font-size: 36px;

  }



  .job-detail .about-hero-subtitle {

    font-size: 15px;

  }



  .job-tags span {

    font-size: 12px;

    padding: 4px 10px;

  }

}



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

  .about-hero.job-detail {

    min-height: 580px;

  }



  .job-detail .about-hero-title {

    font-size: 28px;

  }



  .job-detail .about-hero-subtitle {

    font-size: 14px;

  }



  .job-tags {

    margin-bottom: 8px;

  }



  .job-tags span {

    font-size: 11px;

    padding: 3px 8px;

  }



  .about-hero-content .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }

}



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

  .job-detail .about-hero-title {

    font-size: 24px;

  }



  .job-detail .about-hero-subtitle {

    font-size: 13px;

  }

}



/* ============================================ */

/* 2. JOBDETAIL FLOW SECTION */

/* ============================================ */

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

  .jobdetail-flow {

    padding: 30px 0;

  }



  .jobdetail-header {

    flex-direction: column;

    gap: 15px;

    text-align: center;

    margin-bottom: 25px;

    padding: 0 20px;

  }



  .jobdetail-role {

    font-size: 32px;

  }



  .jobdetail-header .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }



  .job-detail-inner {

    flex-direction: column;

    gap: 25px;

  }



  .job-scroller {

    max-width: 100%;

    gap: 20px;

  }



  .jobdetail-block {

    padding: 25px;

  }



  .block-title {

    font-size: 20px;

  }



  .jobdetail-share {

    width: 100%;

    padding: 25px;

    gap: 12px;

  }



  .jobdetail-share h5 {

    font-size: 18px;

  }



  .direction {

    text-align: center;

  }

}



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

  .jobdetail-flow {

    padding: 20px 0;

  }



  .jobdetail-role {

    font-size: 28px;

  }



  .jobdetail-header .btn-primary {

    padding: 8px 16px;

    font-size: 12px;

  }



  .jobdetail-block {

    padding: 20px;

  }



  .block-title {

    font-size: 18px;

    margin-bottom: 12px;

  }



  .jobdetail-block p {

    font-size: 13px;

  }



  .jobdetail-list li,

  .skills-list li {

    font-size: 13px;

    margin-bottom: 6px;

  }



  .jobinfo-list li {

    font-size: 13px;

    margin-bottom: 6px;

  }



  .jobdetail-share {

    padding: 20px;

    gap: 10px;

  }



  .jobdetail-share h5 {

    font-size: 16px;

  }



  .info-item span {

    font-size: 13px;

  }



  .info-item strong {

    font-size: 14px;

  }



  .share-icons span {

    font-size: 13px;

  }



  .social-links {

    gap: 15px;

  }



  .social-links a img {

    width: 28px;

    height: 28px;

  }



  .direction .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }

}



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

  .jobdetail-role {

    font-size: 24px;

  }



  .jobdetail-block {

    padding: 16px;

  }



  .block-title {

    font-size: 16px;

  }



  .jobdetail-block p {

    font-size: 12px;

  }



  .jobdetail-list li,

  .skills-list li {

    font-size: 12px;

  }



  .jobinfo-list li {

    font-size: 12px;

  }



  .jobdetail-share {

    padding: 16px;

  }



  .jobdetail-share h5 {

    font-size: 15px;

  }



  .info-item strong {

    font-size: 13px;

  }



  .social-links a img {

    width: 24px;

    height: 24px;

  }



  .direction .btn-primary {

    padding: 8px 16px;

    font-size: 12px;

  }

}



/* ============================================ */

/* 3. JOB DETAIL BLOCKS - BETTER SPACING */

/* ============================================ */

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

  .job-scroller {

    order: 2;

  }



  .jobdetail-share {

    order: 1;

  }

}



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

  .job-scroller {

    flex: 0 0 760px;

  }



  .jobdetail-share {

    flex: 1;

  }

}





/* servise details page media query */

/* ============================================ */

/* 1. SERVICE DETAIL SECTION (About Section) */

/* ============================================ */

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

  .service-detail .inner-content {

    flex-direction: column !important;

    gap: 30px;

  }



  .service-detail .left-image {

    width: 100%;

    text-align: center;

  }



  .service-detail .left-image img {

    max-width: 100%;

    height: auto;

    border-radius: 20px;

  }



  .service-detail .right-content {

    text-align: center;

    padding: 0 20px;

  }



  .service-detail .right-content h2 {

    font-size: 32px;

  }



  .service-detail .desc {

    font-size: 15px;

    max-width: 100%;

    margin: 0 auto;

  }



  .button-box {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

  }



  .button-box .btn-primary {

    margin-right: 0 !important;

  }

}



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

  .service-detail .right-content h2 {

    font-size: 26px;

  }



  .service-detail .tag {

    font-size: 12px;

  }



  .service-detail .desc {

    font-size: 14px;

  }



  .button-box .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }

}



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

  .service-detail .right-content h2 {

    font-size: 22px;

  }



  .service-detail .desc {

    font-size: 13px;

  }



  .button-box .btn-primary {

    padding: 8px 16px;

    font-size: 12px;

  }

}



/* ============================================ */

/* 2. UI/UX FLOW SECTION */

/* ============================================ */

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

  .uiux-flow {

    padding: 30px 0;

  }



  .uiux-header {

    flex-direction: column;

    text-align: center;

    gap: 20px;

    margin-bottom: 30px;

    padding: 0 20px;

  }



  .uiux-title {

    font-size: 14px;

  }



  .uiux-heading {

    font-size: 32px;

  }



  .uiux-desc {

    font-size: 15px;

    max-width: 100%;

  }



  .service-uiux .uiux-text p {

    font-size: 15px;

    max-width: 100%;

  }



  .uiux-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    padding: 0 20px;

  }



  .uiux-card {

    padding: 30px 25px;

  }



  .uiux-card .icon img {

    width: 45px;

    height: 45px;

  }



  .uiux-card h3 {

    font-size: 16px;

  }



  .uiux-card p {

    font-size: 13px;

  }

}



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

  .uiux-flow {

    padding: 20px 0;

  }



  .uiux-heading {

    font-size: 28px;

  }



  .uiux-desc {

    font-size: 14px;

  }



  .service-uiux .uiux-text p {

    font-size: 14px;

  }



  .uiux-header .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }



  .uiux-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }



  .uiux-card {

    padding: 25px 20px;

    text-align: center;

    align-items: center;

  }



  .uiux-card .icon {

    margin-bottom: 12px;

  }



  .uiux-card .icon img {

    width: 50px;

    height: 50px;

  }



  .uiux-card h3 {

    font-size: 18px;

    text-align: center;

  }



  .uiux-card p {

    font-size: 13px;

    text-align: center;

  }

}



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

  .uiux-heading {

    font-size: 24px;

  }



  .uiux-desc {

    font-size: 13px;

  }



  .uiux-card {

    padding: 20px 16px;

  }



  .uiux-card .icon img {

    width: 40px;

    height: 40px;

  }



  .uiux-card h3 {

    font-size: 16px;

  }



  .uiux-card p {

    font-size: 12px;

  }

}



/* ============================================ */

/* 3. SERVICE DETAIL - BUTTON STYLES FIX */

/* ============================================ */

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

  .button-box .outline {

    background-color: transparent;

    border: 1px solid var(--body-text);

  }

}



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

  .button-box {

    flex-direction: column;

    align-items: center;

    width: 100%;

  }



  .button-box .btn-primary {

    width: 100%;

    max-width: 200px;

    text-align: center;

    justify-content: center;

  }

}

/* ============================================ */

/* INDUSTARY TOP SECTION (UI/UX Design Process) */

/* ============================================ */

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

  .industary-top {

    flex-direction: column;

    align-items: center;

    gap: 25px;

    margin-bottom: 40px;

  }



  .industary-top .industries-header {

    /* width: 100%; */

    text-align: center;

  }



  .industary-top .industries-header h5 {

    width: 100%;

    font-size: 14px;

    text-align: center;

  }



  .industary-top .industries-header h2 {

    font-size: 32px;

    text-align: center;

  }



  .industary-top .industries-header p {

    font-size: 15px;

    text-align: center;

    width: 90%;

    margin: 0 auto;

  }



  .service-right-btn .btn-primary {

    padding: 10px 24px;

    font-size: 14px;

  }

}



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

  .industary-top {

    gap: 20px;

    margin-bottom: 30px;

  }



  .industary-top .industries-header h5 {

    font-size: 12px;

    margin-bottom: 8px;

  }



  .industary-top .industries-header h2 {

    font-size: 26px;

    margin-bottom: 15px;

  }



  .industary-top .industries-header p {

    font-size: 14px;

    width: 100%;

  }



  .service-right-btn .btn-primary {

    padding: 8px 20px;

    font-size: 13px;

  }

}



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

  .industary-top {

    gap: 15px;

    margin-bottom: 25px;

  }



  .industary-top .industries-header h2 {

    font-size: 22px;

  }



  .industary-top .industries-header p {

    font-size: 13px;

  }



  .service-right-btn .btn-primary {

    padding: 8px 18px;

    font-size: 12px;

  }

}

/* Tablet */

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

  .faq-flow {

    padding: 30px 0;

  }



  .faq-inner {

    flex-direction: column;

    gap: 30px;

  }



  .faq-left {

    flex: auto;

    text-align: center;

  }



  .left-inner {

    margin-bottom: 25px;

  }



  .faq-title {

    font-size: 14px;

  }



  .faq-heading {

    font-size: 32px;

  }



  .faq-desc {

    font-size: 14px;

    max-width: 90%;

    margin: 0 auto 20px auto;

  }



  .faq-box {

    align-items: center;

    text-align: center;

    padding: 25px;

  }



  .faq-box h3 {

    font-size: 20px;

  }



  .faq-box p {

    font-size: 13px;

  }



  .faq-right {

    flex: auto;

  }



  .faq-question {

    padding: 20px 25px;

    font-size: 15px;

  }



  .faq-answer {

    padding: 0 25px 20px 25px;

    font-size: 13px;

  }

}



/* Mobile */

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

  .faq-flow {

    padding: 20px 0;

  }



  .faq-inner {

    gap: 25px;

  }



  .faq-heading {

    font-size: 28px;

  }



  .faq-desc {

    font-size: 13px;

    max-width: 100%;

  }



  .faq-box {

    padding: 20px;

    gap: 18px;

  }



  .faq-box h3 {

    font-size: 18px;

  }



  .faq-box p {

    font-size: 12px;

  }



  .faq-box .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }



  .faq-question {

    padding: 16px 20px;

    font-size: 14px;

  }



  .faq-answer {

    padding: 0 20px 16px 20px;

    font-size: 12px;

  }

}



/* Small Mobile */

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

  .faq-heading {

    font-size: 24px;

  }



  .faq-desc {

    font-size: 12px;

  }



  .faq-box {

    padding: 16px;

    gap: 14px;

  }



  .faq-box h3 {

    font-size: 16px;

  }



  .faq-box p {

    font-size: 11px;

  }



  .faq-box .btn-primary {

    padding: 8px 16px;

    font-size: 12px;

  }



  .faq-question {

    padding: 14px 16px;

    font-size: 13px;

  }



  .faq-answer {

    padding: 0 16px 14px 16px;

    font-size: 11px;

  }

}

/* servise details page media query END */



/* Ai Solution media queries */

/* Tablet */

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

  .aisolutions-flow {

    padding-top: 30px;

  }



  .aisolutions-inner {

    flex-direction: column;

    gap: 40px;

  }



  .aisolutions-text {

    flex: auto;

    text-align: center;

    padding: 0 20px;

  }



  .aisolutions-title {

    font-size: 14px;

  }



  .aisolutions-heading {

    font-size: 32px;

  }



  .aisolutions-desc {

    font-size: 14px;

    margin-bottom: 20px;

  }



  .aisolutions-stats {

    flex: auto;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    padding: 0 20px;

  }



  .aisolutions-box {

    padding: 20px;

  }



  .aisolutions-box h3 {

    font-size: 36px;

  }



  .aisolutions-box p {

    font-size: 13px;

  }



  .icon-box {

    height: 45px;

    width: 45px;

  }



  .icon-box img {

    width: 24px;

    height: 24px;

  }



  .aisolutions-text .btn-primary {

    padding: 12px 24px;

    font-size: 14px;

  }

}



/* Mobile */

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

  .aisolutions-flow {

    padding-top: 20px;

  }



  .aisolutions-inner {

    gap: 30px;

    align-items: center;

  }



  .aisolutions-heading {

    font-size: 28px;

  }



  .aisolutions-desc {

    font-size: 13px;

    margin-bottom: 16px;

  }



  .aisolutions-stats {

    gap: 15px;

  }



  .aisolutions-box {

    padding: 15px;

  }



  .aisolutions-box h3 {

    font-size: 28px;

  }



  .aisolutions-box p {

    font-size: 12px;

  }



  .icon-box {

    height: 40px;

    width: 40px;

  }



  .icon-box img {

    width: 20px;

    height: 20px;

  }



  .aisolutions-text .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }

}



/* Small Mobile */

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

  .aisolutions-heading {

    font-size: 24px;

  }



  .aisolutions-desc {

    font-size: 12px;

  }



  .aisolutions-stats {

    grid-template-columns: 1fr;

    gap: 12px;

  }



  .aisolutions-box {

    padding: 15px;

    flex-direction: row;

    justify-content: flex-start;

    gap: 15px;

    text-align: left;

  }



  .aisolutions-box h3 {

    font-size: 24px;

  }



  .aisolutions-box p {

    font-size: 12px;

  }



  .aisolutions-text .btn-primary {

    padding: 8px 16px;

    font-size: 12px;

  }

}

/* Tablet */

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

  .aioffer-flow {

    padding: 30px 0;

  }



  .aioffer-inner {

    flex-direction: column;

  }



  .aioffer-left {

    flex: auto;

    width: 100%;

    padding: 40px 30px;

    margin-bottom: 30px;

    text-align: center;

  }



  .aioffer-title {

    font-size: 14px;

  }



  .aioffer-heading {

    font-size: 32px;

  }



  .aioffer-desc {

    font-size: 14px;

    margin: 20px 0;

  }



  .aioffer-right {

    flex: auto;

    width: 100%;

    margin-left: 0;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

  }



  .aioffer-card {

    padding: 20px;

    text-align: center;

  }



  .aioffer-card h3 {

    font-size: 16px;

    margin: 15px 0;

  }



  .aioffer-card p {

    font-size: 13px;

  }



  .icon-box {

    display: inline-flex;

    justify-content: center;

  }



  .aioffer-left .btn-primary {

    padding: 12px 24px;

    font-size: 14px;

  }

}



/* Mobile */

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

  .aioffer-flow {

    padding: 20px 0;

  }



  .aioffer-left {

    padding: 30px 20px;

  }



  .aioffer-heading {

    font-size: 28px;

  }



  .aioffer-desc {

    font-size: 13px;

    margin: 15px 0;

  }



  .aioffer-right {

    grid-template-columns: 1fr;

    gap: 15px;

  }



  .aioffer-card {

    padding: 18px;

    text-align: left;

  }



  .aioffer-card h3 {

    font-size: 16px;

    margin: 12px 0;

  }



  .aioffer-card p {

    font-size: 13px;

  }



  .icon-box img {

    width: 24px;

    height: 24px;

  }



  .aioffer-left .btn-primary {

    padding: 10px 20px;

    font-size: 13px;

  }

}



/* Small Mobile */

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

  .aioffer-left {

    padding: 25px 15px;

  }



  .aioffer-heading {

    font-size: 24px;

  }



  .aioffer-desc {

    font-size: 12px;

  }



  .aioffer-card {

    padding: 15px;

  }



  .aioffer-card h3 {

    font-size: 15px;

  }



  .aioffer-card p {

    font-size: 12px;

  }



  .icon-box img {

    width: 20px;

    height: 20px;

  }



  .aioffer-left .btn-primary {

    padding: 8px 16px;

    font-size: 12px;

  }

}



/* Tablet */

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

  .ai-solution .why-inner {

    flex-direction: column-reverse !important;

    gap: 40px;

  }

}



/* Mobile */

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

  .ai-solution .why-inner {

    flex-direction: column-reverse !important;

    gap: 30px;

  }

}



/* Small Mobile */

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

  .ai-solution .why-inner {

    flex-direction: column-reverse !important;

    gap: 20px;

  }

}

/* Tablet */

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

  .technologies-scroll {

    padding: 30px 0;

  }



  .tech-heading {

    font-size: 32px;

    margin-bottom: 25px;

  }



  .tech-card {

    min-width: 130px;

    padding: 15px;

  }



  .tech-card img {

    max-width: 60px;

  }



  .tech-card p {

    font-size: 11px;

  }



  .tech-track {

    gap: 15px;

    animation-duration: 20s;

  }

}



/* Mobile */

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

  .technologies-scroll {

    padding: 20px 0;

  }



  .tech-heading {

    font-size: 28px;

    margin-bottom: 20px;

  }



  .tech-card {

    min-width: 110px;

    padding: 12px;

  }



  .tech-card img {

    max-width: 50px;

  }



  .tech-card p {

    font-size: 10px;

  }



  .tech-track {

    gap: 12px;

    animation-duration: 18s;

  }

}



/* Small Mobile */

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

  .tech-heading {

    font-size: 24px;

    margin-bottom: 15px;

  }



  .tech-card {

    min-width: 90px;

    padding: 10px;

  }



  .tech-card img {

    max-width: 40px;

  }



  .tech-card p {

    font-size: 9px;

  }



  .tech-track {

    gap: 10px;

    animation-duration: 15s;

  }

}

/* Ai Solution media queries END */