@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ==================================================================== Hire-Dedi-Model End */
/* ===========================================================================================================About us page */
.img-short{
    -webkit-border-radius: 20px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius: 20px;
-moz-border-radius-bottomright: 5px;
border-radius: 20px;
border-bottom-right-radius: 5px;
}
.section-subtitle{
       color: var(--pure-white) !important;
   font-size: clamp(22px, 2.5vw + 1rem, 30px);
   margin-bottom: 0px;
   background: linear-gradient(-88deg, rgba(33, 150, 243, 1) 0%, rgba(13, 71, 161, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* fallback */
  color: transparent;
  margin-bottom: 20px;
}
.bg-light-blue {
    background-color:#DCF0FF;
   -webkit-border-radius: 20px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius: 20px;
-moz-border-radius-bottomright: 5px;
border-radius: 20px;
border-bottom-right-radius: 5px;
}
.bg-light-blue-r {
    background-color:#E0ECFE;
    -webkit-border-radius: 20px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius: 20px;
-moz-border-radius-bottomright: 5px;
border-radius: 20px;
border-bottom-right-radius: 5px;
}
.pt-70{
    padding-top: 70px;
}

.card-custom-e {
    border: 1px solid #2196F3;
    -webkit-border-radius: 20px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius: 20px;
-moz-border-radius-bottomright: 5px;
border-radius: 20px;
border-bottom-right-radius: 5px;
    transition: 0.3s;
}
.h3-card{
      font-size: clamp(26px, 2vw + 0.5rem, 28px);
  line-height: 1.2;
  margin-bottom: 12px !important;
}
.info-value a{
    color: #131415;
}
.email-info{
    text-decoration: none;
    color: #0D47A1;
    font-size: 20px;
    font-weight: bold;
}
.talk-text{
    font-weight: bold;
    color: var(--text-grey-500) !important;
}
.font-white{
    color: var(--pure-white) !important;
}

.service-new-card {
    background: var(--box-color);
    border-radius: 16px;
    padding: 28px 24px;
    border: 5px solid #fff;
    transition: all 0.3s ease;
}
/* ========================================tab */
:root {
            --active-gradient: linear-gradient(56deg, #0D47A1 0%, #2196F3 100%);
            --inactive-bg: #ffffff;
            
            --primary-blue: #0d6efd;
        }

        

        /* --- Tab Button Styling (Desktop) --- */
        .custom-tabs .nav-item { margin: 0 10px; flex-shrink: 0; }
        .custom-tabs .nav-link {
           
            background: var(--box-color);
    
    
    border: 5px solid #fff;
   width: 180px;
    

            -webkit-border-radius: 16px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius: 16px;
-moz-border-radius-bottomright: 5px;
border-radius: 16px;
border-bottom-right-radius: 5px;
            padding: 15px 30px !important;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .icon-box-tab {
            width: 65px; height: 65px;
            background: rgba(13, 110, 253, 0.05);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px; transition: 0.3s;
        }

        .svg-white { display: none; }
        .custom-tabs .nav-link.active {
            background: var(--active-gradient) !important;
            border-color: #fff;
              -webkit-border-radius: 16px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius: 16px;
-moz-border-radius-bottomright: 5px;
border-radius: 16px;
border-bottom-right-radius: 5px;
            
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
        }
        .custom-tabs .nav-link.active .icon-box { background: rgba(255, 255, 255, 0.15); }
        .custom-tabs .nav-link.active .svg-white { display: block; }
        .custom-tabs .nav-link.active .svg-gradient { display: none; }
        .custom-tabs .nav-link.active .tab-label { color: #ffffff; }

        .tab-label { font-weight: 700; font-size: 1.2rem; color: #1a1a1a; }

        /* --- Custom Mobile Dropdown (Replaces Select2) --- */
        .mobile-dropdown-container {
            position: relative;
            width: 100%;
            user-select: none;
        }

        .dropdown-selected {
            height: 55px;
            background: #fff;
            border: 2px solid var(--primary-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-blue);
        }

        /* The Arrow Rotation Logic */
        .dropdown-selected i {
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-container.open .dropdown-selected i {
            transform: rotate(180deg);
        }

        .dropdown-options {
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: none;
            z-index: 1000;
            overflow: hidden;
            border: 1px solid #eee;
        }

        .mobile-dropdown-container.open .dropdown-options {
            display: block;
        }

        .dropdown-option {
            padding: 15px 20px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .dropdown-option:hover {
            background: #f0f7ff;
        }
.h-nav .nav-pills{
    flex-direction: row !important;
}
.h-nav .nav-pills .nav-link.active::before, .h-nav .nav-pills .nav-link::before {
    display: none !important;
}
.h-nav  .nav-pills .nav-link {
    text-transform: initial !important;

}
/* =================================================================================== LOCATION PAGE */
/* 1. Section Background & Typography */
.bg-light-blue {
    background-color: #f8fbff;
    padding: 100px 0;
}

.main-heading {
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

/* 2. Card Container */
.iq-service-card {
    background: transparent;
    border: 1px solid #C8C8D2;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.iq-service-card:hover {
    border-color: #007bff;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.08);
}

/* 3. Icon and Arrow Layout */
.card-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.iq-icon-wrapper {
    width: 55px;
    height: 65px;
    background-color: #f0f6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iq-icon-wrapper img {
    width: 28px;
}

.iq-arrow-btn {
    /* width: 32px;
    height: 32px;
    border: 1px solid #dce4ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6c757d; */
    transition: 0.3s;
}

.iq-service-card:hover .iq-arrow-btn {
    
    border-color: #007bff;
}

/* 4. Text Content */
.service-title {
    font-size: clamp(20px, 2vw + 0.5rem, 28px);    
line-height: 1.4;
    font-weight: 700;
    color: var(--text-grey-500);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-desc {
    font-size: 15px;
    color: #5f6c7b;
    line-height: 1.6;
    margin-bottom: 0;
}
.iq-service-container{
    height: 100%;
}
.service-title span{
    display: block;
}

/* Location  card */
 /* --- FIXED LEFT SIDE --- */
        .sticky-left {
            position: sticky;
            top: 100px; /* Keeps the text in view as you scroll */
            height: fit-content;
        }

        .heading-text {
            font-weight: 800;
            font-size: 2.8rem;
            line-height: 1.2;
            color: #111;
        }
        /* --- STACKING RIGHT SIDE --- */
        .stack-container {
            padding-bottom: 100px; /* Space for the last card to scroll past */
        }

        .stack-card {
            position: sticky;
            top: 100px; /* Where the cards start "sticking" */
            margin-bottom: 40px; /* Space between cards before they stack */
            transition: transform 0.3s ease;
        }

        /* Incremental Top offsets so you see the edges of previous cards */
        .stack-card:nth-child(1) { top: 100px; z-index: 1; }
        .stack-card:nth-child(2) { top: 130px; z-index: 2; }
        .stack-card:nth-child(3) { top: 160px; z-index: 3; }
        .stack-card:nth-child(4) { top: 190px; z-index: 4; }

        .custom-card {
            
            
            padding: 40px;
            display: flex;
            
                background: #EAF8FF;
    border-radius: 16px;
    padding: 28px 24px;
    border: 5px solid #fff;
    transition: all 0.3s ease;
        }
.custom-card-a {
    background: #EBF2FF; /* Light Lavender/Pink */
}

.custom-card-b {
    background: #e8f1fa; /* Mint Green */
}

.custom-card-c {
    background: #eaf7f6; /* Soft Purple */
}

        .icon-box {
            background: #EBF2FF;
            color: var(--primary-blue);
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 25px;
        }

        .card-content h4 {
            font-weight: 700;
            font-size: 1.4rem;
        }

        .card-content p {
            color: #666;
            line-height: 1.6;
        }

        .arrow-link {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 35px;
            height: 35px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            text-decoration: none;
        }

       

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .sticky-left { position: relative; top: 0; margin-bottom: 50px; }
            .heading-text { font-size: 2rem; }
            .stack-card { position: relative; top: 0 !important; }
            .cs-flex-wrap .btn-case-study {
margin-top: 12px;
}
        }

.iq-service-container .icon-box img{
    height: 52px;
}
.icon-box.color-white{
    background-color: var(--pure-white);

}




.bar-value a{
    color: #fff !important;
}
/* ADD ANKIT CSS-1 */

/* =================================================================================== SERVICE PAGE START*/


        /* --- Main Content Card --- */
        .content-card {
            background: #fff;
            border-radius: 20px;
            border: none;
            /* box-shadow: 0 15px 40px rgba(0,0,0,0.03); */
            padding: 40px;
            /* background-color: #ec1010; */
        }

        .tab-content{
            border-radius: 20px 20px 5px 20px;
        }

        .tab-pane-text-secondary{
            font-weight: 400;
            font-size: 18px;
            line-height: 28px;
            color: #616169;
        }

        /* --- Tech Stack Small Cards --- */
        .tech-card1 {
            display: flex;
            align-items: center;
            padding: 15px;
            transition: 0.3s;
            border-radius: 16px 16px 5px 16px;
            flex-direction: row;
        }
        .tech-card1-border{
            border: 1px solid var(--tech-card1-bg);
        }
        .tech-card2-border{
            border: 1px solid var(--tech-card2-bg);
        }
        .tech-card3-border{
            border: 1px solid var(--tech-card3-bg);
        }
        .tech-card4-border{
            border: 1px solid var(--tech-card4-bg);
        }
        .tech-card5-border{
            border: 1px solid var(--tech-card5-bg);
        }
        .tech-card6-border{
            border: 1px solid var(--tech-card6-bg);
        }
        .tech-card7-border{
            border: 1px solid var(--tech-card7-bg);
        }
        .tech-card8-border{
            border: 1px solid var(--tech-card8-bg);
        }

        .icon-1
        {
            color: var(--tech-icon1-bg);
        }
        .icon-2
        {
            color: var(--tech-icon2-bg);
        }
        .icon-3
        {
            color: var(--tech-icon3-bg);
        }
        .icon-4
        {
            color: var(--tech-icon4-bg);
        }
        .icon-5
        {
            color: var(--tech-icon5-bg);
        }
        .icon-6
        {
            color: var(--tech-icon6-bg);
        }
        .icon-7
        {
            color: var(--tech-icon7-bg);
        }
        .icon-8
        {
            color: var(--tech-icon8-bg);
        }

        .tech-icon-box {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Specific background colors for tech icons to match image */
          .bg-icon-blue { background-color: #D9F2FF; }
        .bg-icon-orange { background-color: #FFF2E5; }
        .bg-icon-green { background-color: #D0FFEA; }
        .bg-icon-pink { background-color: #F7E2FF; }
        .bg-icon-ligreen { background-color: #D2FFF8; }
        .bg-icon-purple { background-color: #F1E9FF; }
        .bg-icon-parrot { background-color: #EAFFD7; }
        .bg-icon-drblue { background-color: #E2ECFF; }
       
        .bg-icon-cp{background-color: #E2ECFF;}
        .bg-icon-apple{background-color: #EAFFD7;}
         .bg-icon-laravel{background-color: #F1E9FF;}
         .bg-icon-and{ background-color: #D2FFF8;}

         


        /* 
          .bg-icon-blue { background-color: #D9F2FF; }
        .bg-icon-orange { background-color: #FFF2E5; }
        .bg-icon-green { background-color: #D0FFEA; }
        .bg-icon-pink { background-color: #F7E2FF; }
        .bg-icon-ligreen { background-color: #D2FFF8; }
        .bg-icon-purple { background-color: #F1E9FF; }
        .bg-icon-parrot { background-color: #EAFFD7; }
        .bg-icon-drblue { background-color: #E2ECFF; }



        
        .bg-icon-blue { background-color: #EAF8FF; }
        .bg-icon-orange { background-color: #FFF2E5; }
        .bg-icon-green { background-color: #E5FFF3; }
        .bg-icon-pink { background-color: #FBF0FF; }
        .bg-icon-ligreen { background-color: #DDFFFA; }
        .bg-icon-purple { background-color: #F4EEFF; }
        .bg-icon-parrot { background-color: #EBFFD8; }
        .bg-icon-drblue { background-color: #EBF2FF; }
         */

        .tech-title {
            margin: 0;
            color: #131415;
            
            font-weight: 600;
            font-size: 18px;
            line-height: 20px;
            letter-spacing: 0%;
            
        }
        
        .tech-subtitle {
            font-size: 12px;
            color: #666;
            margin: 0;
        }

        /* --- Buttons --- */
        .btn-custom-primary {
            background: linear-gradient(269deg,rgba(33, 150, 243, 1) 0%, rgba(13, 71, 161, 1) 100%);
            color: white !important;
            padding: 18px 20px;
            border-radius: 16px 16px 5px 16px; 
            font-weight: 600;
            text-transform: uppercase;
            font-size: 18px;
            border: none;
            box-shadow: 0px 3px 7px 0px #1E88E538;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-custom-outline {
            background-color: transparent;
            color: #0D47A1;
            border: 1px solid #0D47A1 !important;
            padding: 18px 26px;
            border-radius: 16px 16px 5px 16px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .nav-pills {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start !important;
                padding-bottom: 10px; /* Space for scrollbar */
            }
            .nav-pills .nav-link {
                flex: 0 0 auto;
            }
        }
        

/* =================================================================================== SERVICE PAGE END*/

        
/* =================================================================================== android app services Start*/
        

/* Custom Tab Grid for Android App Page */

.text-muted {
font-weight: 400;
font-size: 18px;
line-height: 28px;
letter-spacing: 0%;
color: #616169;
}

.main-headings {
font-weight: 800;
font-size: 48px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.custom-tabs-grid.nav-pills {
    display: flex;
    flex-wrap: wrap !important;
}
.custom-tabs-grid .nav-link {
    background: #F3F6FE;
    border: 1px solid #e0e0e0;
    border-radius: 20px 20px 5px 20px;
    transition: all 0.3s ease;
    justify-content: flex-start;
    border: 5px solid #fff;
    text-align: left;
    height: 100%;
}
.custom-tabs-grid .nav-link:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    /* border-color: #0d6efd; */
}
.custom-tabs-grid .nav-link.active {
    background: linear-gradient(269deg,rgba(33, 150, 243, 1) 0%, rgba(13, 71, 161, 1) 100%);
    color: #fff !important;
    border-color: #fff;
}
.custom-tabs-grid .nav-link .h5 {
    color: #131415;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;

}
.custom-tabs-grid .nav-link.active .h5 {
    color: #fff !important;
}
.custom-tabs-grid .nav-link.active .icon-box-tab-sm {
    background: rgba(255,255,255) !important;
}
.icon-box-tab-sm {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(163deg, rgba(33, 150, 243, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}


/* Service Tab Image */
.service-tab-img {
    height: 445px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px 20px 5px 20px;
}

@media (max-width: 991px) {
    .service-tab-img {
        height: 300px; /* Adjust height for tablet/mobile */
    }
}

/* =================================================================================== android app services END*/


/* =================================================================================== development process start*/

.android-process-card {
    background: #F7F9FF;
    border: 1px solid #eef2f6;
    border-radius: 20px 20px 5px 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.android-step-num {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 45px;
    font-weight: 800;
    color: #D0E1F3;
    opacity: 0.5;
    line-height: 1;
}

.android-process-card .icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: linear-gradient(163deg, rgba(33, 150, 243, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.android-process-card .icon-box img {
    width: 51px;
}

.android-process-card .card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #131415;
    line-height: 1.3;
}

.android-process-card .card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #616169;
    margin-bottom: 0;
}

/* Arrow System */
.android-process-col {
    position: relative;
}

/* Dashed Lines */
/* .android-line-h::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    border-top: 2px dashed #90CAF9;
    opacity: 0.6;
    z-index: 1;
} */

/* .android-line-v::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    height: 50px;
    width: 1px;
    border-left: 2px dashed #90CAF9;
    opacity: 0.6;
    z-index: 1;
} */

/* Arrows for Desktop */
@media (min-width: 992px) {
    .android-line-right::before {
        right: -50%;
    }
    .android-line-left::before {
        left: -50%;
    }

    /* Arrow Right */
    .android-col-right::after {
        content: '';
        position: absolute;
        background-image: url(../img/icons/4.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 40px;
        height: 40px;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        z-index: 5;
    }

    /* Arrow Down */
    .android-col-down::after {
        content: '';
        position: absolute;
        background-image: url(../img/icons/4.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 40px;
        height: 40px;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        z-index: 5;
    }

    /* Arrow Left */
    .android-col-left::after {
        content: '';
        position: absolute;
        background-image: url(../img/icons/4.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 40px;
        height: 40px;
        top: 50%;
        left: -20px;
        transform: translateY(-50%) rotate(180deg);
        z-index: 5;
    }
}

/* Mobile Arrows and Spacing */
@media (max-width: 991px) {
    .android-process-col {
        margin-bottom: 60px;
    }
    .android-process-col:last-child {
        margin-bottom: 0;
    }
    
    .android-process-col:not(:last-child)::after {
        content: '';
        position: absolute;
        background-image: url(../img/icons/4.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 30px;
        height: 30px;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        z-index: 5;
    }
    
    .android-line-h::before, .android-line-v::before {
        display: none;
    }
}

/* =================================================================================== development process end*/


/* =================================================================================== development capabilities start*/

.cap-card {
  position: relative;
  /* max-width: 450px; */
  margin-top: 30px;
  padding: 40px 30px 30px;
  border: 1px solid #C8C8D2; /* Light grey border */
  border-radius: 20px 20px 5px 20px;
  background-color: #ffffff;
  /* font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; */ /* Inherit font family for consistency */
}

/* The floating AI icon box */
.cap-icon-badge {
  position: absolute;
  top: -30px; /* Moves it halfway up the border */
  left: 30px;
  width: 70px;
  height: 70px;
  background-color: #f0f7ff; /* Light blue background */
  border-radius: 14px 14px 5px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-icon-badge img {
  width: 50px; /* SVG size */
  height: 50px;
}

/* Text styles */
.cap-card-title {
  font-size: 24px; /* Slightly adjusted to fit */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 20px; /* Push title down to clear icon visual hierarchy */
}

.cap-card-text {
  color: #4F5356; /* Muted grey text */
  margin: 0;
font-weight: 400;
font-size: 18px;
line-height: 28px;
letter-spacing: 0%;

}

/* =================================================================================== development capabilities end*/

/* =================================================================================== hire-card start*/
.hire-card-card {
    border-radius: 20px 20px 5px 20px;
}
/* =================================================================================== hire-card end*/

/* Custom Styles for the Section */
.dev-section {
    background-color:var(--pure-white);
    padding: 60px 0;
    
}

/* =================================================================================== Dev Section Start */

.dev-section {
    position: relative;
    z-index: 1;
}

.dev-card,
.dev-card-2 {
    border: none;
    border-radius: 20px 20px 5px 20px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.dev-card {
    background-color: #F3F6FE;
}

.dev-card-2 {
    background-color: #E0ECFE;
}

/* Hover effect if needed
.dev-card:hover,
.dev-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
} */

.dev-card .icon-box,
.dev-card-2 .icon-box {
    background-color: #d1e5ff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dev-card .icon-box img,
.dev-card-2 .icon-box img {
    width: 43px;
}

.dev-card h3,
.dev-card-2 h3 {
    color: #131415;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
}

.dev-card p,
.dev-card-2 p {
    color: #4F5356;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-bottom: 15px;
}

/* Header List inside Cards */
.header-list {
    margin-top: auto;
    margin-bottom: 25px;
    flex-grow: 1;
}

.header-list .d-flex {
    margin-bottom: 15px;
    align-items: center;
}

.header-list .d-flex:last-child {
    margin-bottom: 0;
}

.header-list .flex-shrink-0 {
    margin-right: 15px;
    margin-top: 0;
}

.header-list p {
    color: #131415;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
}

/* Button Quote */
.btn-quote {
    background: linear-gradient(269deg, #2196F3 0%, #0D47A1 100%);
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 16px 16px 5px 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.btn-quote:hover {
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.btn-quote img {
    width: 20px;
    height: 20px;
}

/* Font Utilities */
.fonts-18 {
    font-size: 18px !important;
}

.fonts-19 {
    font-size: 19px !important;
}
/* =================================================================================== Dev Section End */

/* Remove background arrow for cta-content when cta-no-bg class is present */
.cta-no-bg::before {
    background: none !important;
}
/* Remove background arrow for cta-content when cta-no-bg class is present */

/* ------------------------------------------------------------------------------------------------Chirag add scss 12-2-2026 */
.header-hidden {
    transform: translateY(-100%);
}
.header-bg-s {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030;
    transition: transform 0.3s ease-in-out; /* Smooth slide effect */
}
/* Update Bug css */


/* 12_02_2026 */
/* =================================================================================== Hiring Models Section Start */
.hiring-models-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.hiring-card {
    background: #F3F6FE;
    border-radius: 20px 0px 0px 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .hiring-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    border-color: #e0e0e0;
} */

.hiring-card-recommended {
    background: #E9FFF5;
    position: relative;
    border: 1px solid transparent;
}
/* .hiring-card-recommended:hover {
    background: #F0FFF4;
    border-color: #00C853;
} */

.recommended-badge {
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    background: #41B883;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;

}

.hiring-icon-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.hiring-icon-box img {
    width: 50px;
}

.hiring-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #131415;
}

.hiring-price span{
    font-size: 30px;
    font-weight: 800;
    /* color: #0D47A1; */
    background: linear-gradient(269deg, #2196F3 0%, #0D47A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.hiring-period {
    font-size: 16px;
    font-weight: 500;
    color: #616169 !important;
}

.hiring-desc {
    font-size: 16px;
    color: #616169;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.hiring-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hiring-list li {
    font-size: 15px;
    color: #131415;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
}

.hiring-list li img {
    width: 16px;
    margin-right: 10px;
    margin-top: 4px;
}

.btn-hiring {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;
    border-radius: 16px 16px 5px 16px;

    background: linear-gradient(269deg, #2196F3 0%, #0D47A1 100%);
    color: #ffffff;
    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hiring-outline {
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(to bottom, #2196F3, #0D47A1) border-box;
    border: 1px solid transparent;
    color: #0D47A1;
    padding: 18px 30px;
    border-radius: 16px 16px 5px 16px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Lufga;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0%;
text-transform: uppercase;

}

.btn-hiring-outline:hover {
    /* background: #0D47A1; */
    color: #0D47A1;
}

.btn-hiring-filled:hover {
    color: #ffffff;
    /* color: #fff; */
}
/* 
.btn-hiring-outline:hover {
    background: #0D47A1;
    color: #fff;
}
.btn-hiring-outline:hover img {
    filter: brightness(0) invert(1);
} */
/* 
.btn-hiring-filled {
    background: #0D47A1;
    color: #fff;
    border: 1px solid #0D47A1;
} */

/* .btn-hiring-filled:hover {
    background: #ffffff;
    border-color: 1px solid #0D47A1;
    color: #0D47A1;
} */
/* =================================================================================== Hiring Models Section End */
/* Remove background arrow for cta-content when cta-no-bg class is present */

/* =================================================================================== Hiring Developers Section Start */
.hiring-developers-section {
    background-color: #F3F6FE;
    padding: 80px 0;
}

.custom-hire-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    margin-bottom: 0;
    scrollbar-width: none;
}

.custom-hire-tabs-wrapper::-webkit-scrollbar {
    height: 6px;
}

.custom-hire-tabs-wrapper::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-hire-tabs {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.custom-hire-tabs .nav-item {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .custom-hire-tabs .nav-item {
        margin-bottom: 0;
    }
}

.custom-hire-tabs .nav-link {
    background: transparent;
    color: #131415;
    border-radius: 8px; 
    padding: 15px 16px !important;
    margin: 0 4px;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: Lufga;
font-weight: 600;
font-style: SemiBold;
font-size: 18px;
line-height: 26px;
letter-spacing: 0%;
text-transform: uppercase;

}

@media (min-width: 992px) {
    .custom-hire-tabs .nav-link {
        padding: 12px 25px;
        font-size: 15px;
    }
}

.custom-hire-tabs .nav-link:hover {
    color: var(--primary-blue);
}

.custom-hire-tabs .nav-link.active {
    background: #2196F3 !important;
    color: #fff;
    border-radius: 16px 16px 10px 16px;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.custom-hire-tabs .nav-link::before {
    display: none !important;
}

.developer-card {
    background: #fff;
    border-radius: 20px 20px 5px 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.developer-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-color: #e0e0e0;
    transform: translateY(-5px);
}

.dev-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dev-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.dev-price span:nth-child(1) {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(269deg, #2196F3 0%, #0D47A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.dev-price span:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #616169 !important;
}

.dev-title {
    color: #131415;
    margin-bottom: 20px;
    font-family: Lufga;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0%;
}

.dev-desc {
    color: #4F5356;
    margin-bottom: 30px;
    font-family: Lufga;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
}

.btn-hire-dev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 16px 16px 5px 16px;
    background: linear-gradient(269deg, #2196F3 0%, #0D47A1 100%);
    color: #ffffff;
    text-decoration: none;
    font-family:  "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    /* transition: all 0.3s ease; */
}

.btn-hire-dev:hover {
    background: #1565C0;
    color: #fff !important;
    border-color: #1565C0;
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

/* .btn-hire-dev img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
} */
/* 
.btn-hire-dev:hover img {
    transform: translateX(5px);
} */
/* =================================================================================== Hiring Developers Section End */

/* =================================================================================== Hire Process Steps Section Start */

.hire-process-section {
    padding: 80px 0;
    background-color: #F8FBFF;
}

.hire-process-left h2 {
font-family: Lufga;
font-weight: 800;
font-style: ExtraBold;
font-size: 48px;
line-height: 100%;
color: #131415;
letter-spacing: 0%;
}

.hire-process-left p {
color: #616169;
margin-bottom: 40px;



font-size: 18px;
line-height: 28px;
letter-spacing: 0%;

}

.process-cta-box {
    background-color: #0D47A1;
    background-image: url(../img/cta-bg_1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px 20px 5px 20px;
    padding: 40px 28px 40px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(13, 71, 161, 0.2); */
}

.process-cta-box h3 {
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
    font-family: Lufga;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 0%;
}

.btn-white-process {
    background: #fff;
    color: #0D47A1 !important;
    padding: 15px 30px;
    border-radius: 10px 10px 5px 10px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 800;
}

.btn-white-process:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: #0D47A1;
}

.btn-white-process img {
    margin-left: 10px;
    width: 14px; 
}

/* Right Side Steps */
.process-steps-list {
    position: relative;
    padding-left: 20px;
}

.process-step-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.step-number-box {
    width: 80px;
    height: 80px;
    background-color: #E3F2FD;
    color: #1565C0;
    font-size: 32px;
    font-weight: 800;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
    z-index: 2;
}

.process-step-content {
    padding-top: 10px;
    border-bottom: 1px solid rgba(33, 150, 243,0.2);
}
.process-step-content1 {
    padding-top: 10px;
}

.process-step-content h4 {
    color: #131415;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;

}

.process-step-content p {
    color: #4F5356;
    font-family: Lufga;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
}

/* Connecting Line */
/* .process-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px; 
    top: 80px;
    bottom: -50px;
    width: 1px;
    border-left: 2px dashed #90CAF9;
    transform: translateX(-1px);
    z-index: 1;
} */

/* Arrow on line */
.process-step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%; 
    bottom: -25px; 
    transform: translateX(-50%);
    width: 15px;
    height: 41px;
    background: url('../../assets/img/icons/arrow_down.webp') no-repeat center bottom;
    background-size: contain;
    z-index: 1;
    /* Adjust positioning to be between items */
    top: auto;
    bottom: -20px;
}


@media (max-width: 991px) {
    .process-step-item {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .step-number-box {
        margin-bottom: 15px;
    }
    .process-step-item:not(:last-child)::after,
    .process-step-item:not(:last-child)::before {
        display: none; 
    }
    .hire-process-left {
        margin-bottom: 50px;
    }
}
/* =================================================================================== Hire Process Steps Section End */

/* =================================================================================== Key Benefits Section - hire_dedicated_developers.php (lines 567-681) Start */
.key-benefits-section {
    background-color: #ffffff !important;
    padding: 80px 0;
}

.key-benefits-section .hire-card-card {
    background-color: #ffffff !important;
    position: relative;
    border-radius: 20px 20px 5px 20px;
    border: none;
    box-shadow: none;
    padding: 28px 24px;
}

.key-benefits-section .hire-card-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px 22px 7px 22px;
    padding: 2px;
    border: 1px solid #C8C8D2;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    pointer-events: none;
}

.key-benefits-section .hire-card-card > * {
    position: relative;
    z-index: 1;
}
.pb-50 {
    padding-bottom: 50px;
}
/* =================================================================================== Key Benefits Section - hire_dedicated_developers.php (lines 567-681) End */

/* =================================================================================== Why We Stand Out Section - hire_dedicated_developers.php Start */
.section-iq .hire-card-card {
    background: #F3F6FE;
    border: 5px solid #ffffff; 
    border-radius: 20px 20px 5px 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

/* .section-iq .hire-card-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-color: #2196F3;
} */

/* Fix for alignment in hire-card-card where d-flex might be missing on the row */
.section-iq .hire-card-card .align-items-center {
    display: flex;
    align-items: center !important;
    margin-bottom: 20px !important; 
}

/* Icon Box Styling */
.section-iq .hire-card-card .icon-box {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 14px 14px 5px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 20px !important; 
}

/* .section-iq .hire-card-card:hover .icon-box {
    background: linear-gradient(135deg, #2196F3 0%, #0D47A1 100%);
} */

.section-iq .hire-card-card .icon-box img {
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
}
/* 
.section-iq .hire-card-card:hover .icon-box img {
    filter: brightness(0) invert(1);
} */

/* Typography */
.section-iq .hire-card-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #131415;
    margin-bottom: 0;
    line-height: 1.3;
}

.section-iq .hire-card-card p {
    color: #616169;
    font-size: 16px;
    line-height: 1.6;
    margin-top: auto; 
    margin-bottom: 0;
}
/* =================================================================================== Why We Stand Out Section - hire_dedicated_developers.php End */


/* =================================================================================== IT Staff Augmentation Services Page Start */


.pb-20 {
    padding-bottom: 20px !important;
}



.mbottom-20 {
    margin-bottom: 20px;
}


/* Button Case Study */
.btn-case-study {
    background: #ffffff;
    color: #0D47A1 !important;
    padding: 18px 30px;
    border-radius: 16px 16px 5px 16px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
    
}

.btn-case-study:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: #0D47A1;
}

.btn-case-study img {
    margin-left: 10px;
    width: 20px;
}



/* =================================================================================== IT Staff Augmentation Services Page End */

/* =================================================================================== Impact Section Start */

/* =================================================================================== Impact Section End */

.icon-box-process  {
    width: 82px;
    height: 82px;
    border-radius: 10px;
    background: #eaf2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #1a73e8;
    font-size: 1.4rem;
    margin-right: 15px;
}
/* nEW ADD HEALTHCARE PAGE AND it */
 
/* =================================================================================== Raising The Bar Section Start */
 
.raising-bar-heading {
    color: #131415;

    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
 
.raising-bar-subtitle {
    color: #616169;
   
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 50px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
 
.raising-bar-stats-wrapper {
    background: #f3f6fe;
    border-radius: 20px 20px 5px 20px;
    padding: 50px 30px;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
 
.raising-bar-stat-item {
    text-align: center;
    padding: 10px 15px;
}
 
.raising-bar-icon {
    width: 64px;
    height: 64px;
    background: #EBF4FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
 
.raising-bar-icon svg {
    width: 34px;
    height: 34px;
}
 
.raising-bar-number {
    
    font-weight: 800;
    font-size: 42px;
    color: #131415;
    line-height: 1;
    margin-bottom: 10px;
}
 
.raising-bar-label {
    
    font-weight: 400;
    font-size: 15px;
    color: #616169;
    line-height: 1.4;
    margin-bottom: 0;
}
 
@media (max-width: 991px) {
    .raising-bar-heading {
        font-size: 32px;
    }
    .raising-bar-stats-wrapper {
        padding: 40px 20px;
    }
    .raising-bar-number {
        font-size: 34px;
    }
}
 
@media (max-width: 575px) {
    .raising-bar-heading {
        font-size: 26px;
    }
    .raising-bar-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .raising-bar-stats-wrapper {
        padding: 30px 10px;
        border-radius: 16px;
    }
    .raising-bar-stat-item {
        padding: 10px 5px;
    }
    .raising-bar-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .raising-bar-icon svg {
        width: 26px;
        height: 26px;
    }
    .raising-bar-number {
        font-size: 28px;
    }
    .raising-bar-label {
        font-size: 13px;
    }
}
/* =================================================================================== Raising The Bar Section End */
 
 

/* =================================================================================== Healthcare Innovative Features Accordion Start */

/* Image Wrapper */
.health-feature-image-wrap {
    position: relative;
    border-radius: 20px 20px 5px 20px;
    overflow: hidden;
}

.health-feature-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 5px 20px;
}

/* Accordion Container */
.health-feature-accordion {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Accordion Item - Card Style */
.health-feature-accordion .accordion-item {
    border: 1px solid #C8C8D2;
    background: #ffffff;
    border-radius: 20px 20px 5px 20px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.health-feature-accordion .accordion-item:hover {
    border-color: #a0a0b0;
}

/* Active/Open Item */
.health-feature-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #2196F3;
    /* box-shadow: 0 4px 16px rgba(33, 150, 243, 0.1); */
}

/* Check Arrow Icon inside button */
.health-feature-accordion .accordion-button .flex-shrink-0 {
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-feature-accordion .accordion-button .flex-shrink-0 img {
    width: 22px;
    height: 22px;
}

/* Accordion Button */
.health-feature-accordion .accordion-button {
    background: #ffffff !important;
    color: #131415;
    font-family:  "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    justify-content: flex-start;
    padding: 20px 24px;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
}

.health-feature-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none;
}

.health-feature-accordion .accordion-button:not(.collapsed) {
    color: #131415;
    background: #ffffff !important;
    box-shadow: none !important;
}

/* Custom Accordion Arrow */
.health-feature-accordion .accordion-button::after {
    display: block !important;
    content: '' !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23616169'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.health-feature-accordion .accordion-button:not(.collapsed)::after {
    display: block !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232196F3'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

/* Accordion Body */
.health-feature-accordion .accordion-body {
    padding: 0 24px 20px 60px;
    color: #616169;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

/* Responsive */
@media (max-width: 991px) {
    .health-feature-image-wrap {
        margin-bottom: 30px;
    }

    .health-feature-accordion {
        gap: 12px;
    }

    .health-feature-accordion .accordion-button {
        font-size: 18px;
        padding: 18px 20px;
    }

    .health-feature-accordion .accordion-body {
        font-size: 15px;
        line-height: 24px;
        padding: 0 20px 18px 54px;
    }
}

@media (max-width: 575px) {
    .health-feature-accordion {
        gap: 10px;
    }

    .health-feature-accordion .accordion-button {
        font-size: 16px;
        padding: 15px 16px;
    }

    .health-feature-accordion .accordion-button .flex-shrink-0 img {
        width: 18px;
        height: 18px;
    }

    .health-feature-accordion .accordion-button .flex-shrink-0 {
        margin-right: 10px;
    }

    .health-feature-accordion .accordion-body {
        font-size: 14px;
        line-height: 22px;
        padding: 0 16px 16px 44px;
    }
}

/* =================================================================================== Healthcare Innovative Features Accordion End */

/* =================================================================================== Healthcare Advantages Section Start */

/* Card Styling */
.healthcare-advantages-section .hire-card-card {
    background: rgba(243, 246, 254, 0.5);
    border: 5px solid #ffffff;
    border-radius: 20px 20px 5px 20px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* .healthcare-advantages-section .hire-card-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #d0e3f7;
} */

/* Flex Layout for Icon + Content */
.healthcare-advantages-section .hire-card-card .d-flex.align-items-center {
    display: flex;
    align-items: flex-start !important;
    margin-bottom: 0 !important;
}

/* Icon Box */
.healthcare-advantages-section .hire-card-card .icon-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #eaf2ff;
    border-radius: 14px 14px 5px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 20px !important;
}

.healthcare-advantages-section .hire-card-card .icon-box img {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

/* Card Content */
.healthcare-advantages-section .card_content {
    flex: 1;
}

.healthcare-advantages-section .card_content h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
}

.healthcare-advantages-section .card_content p {
    color: #616169;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
}

/* Responsive */
@media (max-width: 991px) {
    .healthcare-advantages-section h2 {
        font-size: 32px;
    }

    .healthcare-advantages-section .hire-card-card {
        padding: 24px 20px;
    }

    .healthcare-advantages-section .card_content h3 {
        font-size: 18px;
    }

    .healthcare-advantages-section .card_content p {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .healthcare-advantages-section h2 {
        font-size: 26px;
    }

    .healthcare-advantages-section .hire-card-card {
        padding: 20px 16px;
    }

    .healthcare-advantages-section .hire-card-card .icon-box {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .healthcare-advantages-section .hire-card-card .icon-box img {
        width: 36px;
        height: 36px;
    }

    .healthcare-advantages-section .card_content h3 {
        font-size: 17px;
    }

    .healthcare-advantages-section .card_content p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* =================================================================================== Healthcare Advantages Section End */

/* =================================================================================== Healthcare Steps Section Start */

.healthcare-steps-wrapper {
    position: relative;
    padding-left: 20px;
    margin-top: 10px;
}

.healthcare-step-item {
    display: flex;
    position: relative;
    padding-bottom: 50px;
}

.healthcare-step-item:last-of-type {
    padding-bottom: 0px;
    margin-bottom: 40px;
}

.step-icon-col {
    position: relative;
    margin-right: 35px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: #eaf2ff; 
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.step-icon-box img {
    width: 70px;
    height: 70px;
}

.step-icon-col::after {
    content: '';
    position: absolute;
    top: 80px; 
    bottom: -50px; 
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-left: 2px dashed #B0D6FF;
    z-index: 1;
}

.healthcare-step-item:last-of-type .step-icon-col::after {
    display: none; 
}
.step-content-col {
    padding-top: 5px;
}

.step-label {
    display: block;
    color: #4F5356;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 5%;
}

.step-content-col h3 {
    color: #131415;
    margin-bottom: 15px;
    font-family:  "DM Sans", sans-serif;
    line-height: 1.2;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    
    line-height: 100%;
    letter-spacing: 0%;

}

.step-content-col p {
    color: #4F5356;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 480px;
    font-style: Regular;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;

}

.healthcare-step-cta {
    display: flex; 
    padding-left: 115px;
    position: relative;
}

.healthcare-step-cta::before {
    content: '';
    position: absolute;
    top: -43px;
    left: 39px;
    width: 60px;
    height: 65px;
    border-left: 2px dashed #B0D6FF;
    border-bottom: 2px dashed #B0D6FF;
    z-index: 1;
}

.healthcare-step-item:last-of-type .step-icon-col::before {
    content: '';
    position: absolute;
    top: 80px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-left: 2px dashed #B0D6FF;
    z-index: 1;
}


@media (max-width: 991px) {
    .healthcare-steps-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .step-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .step-icon-col {
        margin-right: 20px;
    }
    
    .step-icon-col::after {
        top: 60px;
        left: 30px; 
        transform: none; 
    }
    
    .healthcare-step-cta::before {
        left: 30px; 
        width: 50px;
    }
    
    .healthcare-step-item:last-of-type .step-icon-col::before {
        left: 30px;
        transform: none;
    }
    
    .step-content-col h3 {
        font-size: 20px;
    }
    
    .healthcare-step-cta {
        padding-left: 80px; 
    }
}

@media (max-width: 575px) {
    .step-icon-box {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .step-icon-box img {
        width: 24px;
        height: 24px;
    }
    
    .step-icon-col {
        margin-right: 15px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .step-content-col h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step-content-col p {
        font-size: 14px;
    }
    
    .step-icon-col::after,
    .healthcare-step-cta::before,
    .healthcare-step-item:last-of-type .step-icon-col::before {
        border-left: 1px dashed #B0D6FF; 
    }
    
    .step-icon-col::after {
        top: 50px;
        left: 25px; 
    }

    .healthcare-step-cta {
        padding-left: 0; 
        justify-content: flex-start;
        margin-left: 65px; 
    }
    
    .healthcare-step-cta::before {
        left: -40px;
        width: 30px;
    }
    
    .healthcare-step-item:last-of-type .step-icon-col::before {
        left: 25px;
    }
}

/* =================================================================================== Healthcare Steps Section End */

/* =================================================================================== Healthcare Features Section Start */

.healthcare-features-section .hire-card-card p {
    margin: 0 !important;
}

/* =================================================================================== Healthcare Features Section End */

/* =================================================================================== IT Staff Augmentation Process Section Start */

.it-staff-process-img {
    border-radius: 50px 50px 16px 50px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.healthcare-step-item1 {
    display: flex;
    position: relative;
    padding-bottom: 35px;
}
.step-icon-col1{
    width: 100px;
}

.step-icon-box1 p {
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
    margin: 0;
}
.step-icon-box1 {
    width: 80px;
    height: 80px;
    background: #2196F3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
.it-staff-process-bg 
{
    background-color: #EDF2FF;
    padding: 40px;
    border-radius: 20px 20px 5px 20px;
}

.it-staff-process-bg .healthcare-steps-wrapper {
    padding-left: 0;
    margin-top: 0;
}

.step-icon-col1::after {
    content: '';
    position: absolute;
    top: 80px;
    bottom: -20px;
    left: 40px;
    width: 2px;
    border-left: 2px dashed #B0D6FF;
    z-index: 1;
}

.healthcare-step-item1:last-of-type .step-icon-col1::before {
    content: '';
    position: absolute;
    top: 80px;
    height: 40px;
    left: 40px;
    width: 2px;
    border-left: 2px dashed #B0D6FF;
    z-index: 1;
}

.healthcare-step-item1:last-of-type .step-icon-col1::after {
    display: none;
}
.healthcare-step-cta1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 40px;
    width: 60px;
    height: 45px;
    border-left: 2px dashed #B0D6FF;
    border-bottom: 2px dashed #B0D6FF;
    z-index: 1;
}

.it-staff-process-bg .step-content-col {
    padding-top: 5px;
}

.it-staff-process-bg .step-content-col h3 {
    color: #131415;
    margin-bottom: 10px;
    font-family:  "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
}

.it-staff-process-bg .step-content-col p {
    color: #4F5356;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 16px;
}

.healthcare-step-cta1 {
    display: flex;
    padding-left: 100px;
    padding-top: 10px;
    position: relative;
}

@media (max-width: 991px) {
    .it-staff-process-bg {
        padding: 25px;
        margin-top: 0;
    }

    .step-icon-box1 {
        width: 60px;
        height: 60px;
    }

    .step-icon-box1 p {
        font-size: 28px;
        line-height: 28px;
    }

    .step-icon-col1 {
        width: 80px;
    }

    .step-icon-col1::after {
        top: 60px;
        left: 30px;
    }

    .healthcare-step-cta1 {
        padding-left: 80px;
    }

    .healthcare-step-cta1::before {
        left: 30px;
        width: 40px;
    }

    .healthcare-step-item1:last-of-type .step-icon-col1::before {
        top: 60px;
        left: 30px;
    }
}

@media (max-width: 575px) {
    .it-staff-process-bg {
        padding: 20px 15px;
    }

    .step-icon-box1 {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .step-icon-box1 p {
        font-size: 22px;
        line-height: 22px;
    }

    .step-icon-col1 {
        width: 65px;
    }

    .step-icon-col1::after {
        top: 50px;
        left: 25px;
    }

    .it-staff-process-bg .step-content-col h3 {
        font-size: 18px;
    }

    .it-staff-process-bg .step-content-col p {
        font-size: 14px;
    }

    .healthcare-step-cta1 {
        padding-left: 0;
        justify-content: flex-start;
        margin-left: 65px;
    }

    .healthcare-step-cta1::before {
        left: 25px;
        width: 30px;
    }

    .healthcare-step-item1:last-of-type .step-icon-col1::before {
        top: 50px;
        left: 25px;
    }
}

/* =================================================================================== IT Staff Augmentation Process Section End */

/* =================================================================================== Staff Compare Table Section Start */

.staff-col-capability
{
    border: none !important;
}

.staff-col-card {
    background: rgba(255, 255, 255,0.5);
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid #C8C8D2;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.staff-col-card1 {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 30px 24px;
    /* border: 1px solid #C8C8D2; */
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.staff-col-card:hover {
    border: 1px solid #2196F3;
}

.staff-col-title {
    font-family:  "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #131415;
    margin-bottom: 24px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #EEF1F5;
}

.staff-col-title1 {
    font-family:  "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #131415;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #EEF1F5;
}

.staff-col-card1 p {
    color: #131415;
    padding: 14px 0;
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid #C8C8D2;
    font-weight: 400;
    font-size: 19px;
    line-height: 100%;
    letter-spacing: 0%;

}

.staff-col-card1 p:last-child {
    border-bottom: none;
}

.staff-col-capability {
    background: #fff;
}

.staff-col-capability p {
    font-weight: 500;
    color: #131415;
    font-size: 15px;
    line-height: 1.4;
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid #C8C8D2;
}

.staff-col-capability p:last-child {
    border-bottom: none;
}

.staff-col-highlight {
    background: #EDF4FF;
    border-color: #C5DAFF;
}

.staff-col-highlight .staff-col-title {
    color: #131415;
    border-bottom-color: #C5DAFF;
}

.staff-col-card p {
    padding: 14px 0;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #C8C8D2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.staff-col-card p:last-child {
    border-bottom: none;
}

.staff-col-highlight p {
    border-bottom-color: #D4E3FA;
}

.staff-col-capability p {
    text-align: left;
    justify-content: flex-start;
}
@media (max-width: 991px) {
    .staff-compare-row-wrap {
        overflow-x: auto;
        flex-wrap: nowrap !important;
    }

    .staff-compare-row-wrap > div {
        min-width: 200px;
    }
}

@media (max-width: 575px) {
    .staff-col-card {
        padding: 20px 16px;
    }

    .staff-col-title {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .staff-col-card p {
        padding: 10px 0;
        font-size: 14px;
        min-height: 44px;
    }
}

/* =================================================================================== Staff Compare Table Section End */

/* =================================================================================== Benefit Card Section Start */
.impact-card {
    background-color: #F8FAFD;
    padding: 40px 30px;
    border-radius: 20px 20px 5px 20px;
    /* transition: all 0.3s ease; */
    height: 100%;
}
 
/* .impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
} */
 
.impact-card h3 {
    margin-bottom: 15px;
    color: #131415;
    font-family: Lufga;
    font-weight: 700;
    font-style: Bold;
    font-size: 23px;
    line-height: 34px;
    letter-spacing: 0%;
 
}
 
.impact-card p {
    color: #4F5356;
    line-height: 28px;
    margin-bottom: 0;
    font-family: Lufga;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
 
}

.benefit-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 20px 20px 5px 20px;
    padding: 28px 24px;
    border: 1px solid #C8C8D2;
    width: 100%;
    transition: all 0.3s ease;
}

/* .benefit-card-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-color: #D0D0DA;
} */

.benefit-card-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-top: 2px;
}

.benefit-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card-content h3 {
    font-family:  "DM Sans", sans-serif;
    color: #131415;
    margin-bottom: 10px;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.benefit-card-content p {

    font-weight: 400;
    font-size: 18px;
    color: #616169;
    line-height: 29px;
    letter-spacing: 0%;
}

/* Responsive */
@media (max-width: 767px) {
    .benefit-card-item {
        padding: 22px 18px;
    }

    .benefit-card-content h3 {
        font-size: 16px;
    }

    .benefit-card-content p {
        font-size: 14px;
    }
}

/* =================================================================================== Benefit Card Section End */

/* LOCATION PAGE START 19-02-2026 */
/* LOCATION PAGE End 19-02-2026 */

 .process-header {
            max-width: 700px;
            margin: 0 auto 80px;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Connecting Line (Desktop Only) */
        .process-row {
            position: relative;
        }



        .step-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px 25px 30px;
            height: 100%;
            position: relative;
            background: #fff;
            transition: transform 0.3s ease;
        }

        /* Icon Container */
        .icon-box-p {
            position: absolute;
            top: -45px;
            left: 74%;
            transform: translateX(-74%);
            width: 80px;
            height: 80px;
            background-color: #eaf2ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;

        }


        /* Dot on the line */
     

        .step-label {
            color: #007bff;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .step-title {
            font-weight: 700;
            font-size: 1.75rem;
            margin-bottom: 15px;
            color: #000;
        }

        .step-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
        }

        /* SVG Icon Style */
        .icon-box-p svg {
            width: 40px;
            height: 40px;
            color: #007bff;
        }

.cta-section-photo {
  background-image: url("../img/cta-bg-photo.jpg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;

  border-radius: 16px;
 
  margin-top: 40px;
  color: #fff;
  padding-top: 20px;
  padding-bottom:0px ;
  padding-left:38px ;
  padding-right: 38px;

  position: relative;
 
}
.cta-section-photo .product-manager-phot{
    /* margin-top: -140px; */

}
.pm-content h2{
    color: var(--pure-white) !important;
    margin-bottom: 0px;
    


}
.pm-content h3{
font-size: clamp(20px, 1.2vw + 14px, 24px);
color: var(--pure-white) !important;

}
.pm-content p{
    color: var(--pure-white) !important;
    font-weight: normal;
    
}
 .social-circle {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }
        .social-circle:hover { background: white; color: var(--iq-blue-light); }
 /* Buttons & Socials */
        .btn-lets-talk {
            background: white;
            color: #0D47A1;
            padding: 20px 30px;
            border-radius: 16px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }
        .btn-lets-talk:hover { background: #f0f0f0; transform: translateY(-2px); }
        .t-icn p{
            font-size: 16px !important;
        }
        .t-icn img{
            width: 40px;
            height: auto;

        }
        .g-four{
            gap: 1.5rem !important;
        }
.healthcare-bg {
    background-color: #CFF1FF !important;
}
.home-casestudy-bg {
    background-color: #F2E8FF !important;
}
.caseStudySwiper {
        padding-bottom: 50px; /* Space for pagination */
    }
    .swiper-slide {
        height: auto; /* Ensures rows align correctly */
    }
    .work-row {
        margin: 10px; /* Prevents shadow clipping if you have shadows */
    }
    /* Swiper Pagination Dot Customization */
/* Container padding for pagination visibility */
.iqlanceCaseStudySlider {
    padding-bottom: 50px !important;
}

/* Inactive Bullet Color */
.iqlanceCaseStudySlider .swiper-pagination-bullet {
    background-color: #2195f383 !important;
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

/* Active Bullet Color */
.iqlanceCaseStudySlider .swiper-pagination-bullet-active {
    background-color: #2196F3 !important;
    opacity: 1;
    width: 25px; /* Pill shape for active dot */
    border-radius: 6px;
}
.yoga-app-bg{
    background-color: #EAEEFF !important;
}
.icon--box-white{
    background-color: var(--pure-white) !important;
}
/* =================================================================================== Mobile-App-page Start AnkitCSS */

.end-to-end-grid {
    margin-top: 10px;
}

.end-to-end-grid > [class*="col"] {
    border-right: 1px solid #E5E7EB;
    padding-top: 0;
    padding-bottom: 0;
}

.end-to-end-grid > [class*="col"]:nth-child(3n) {
    border-right: none;
}

.end-to-end-grid > [class*="col"]:nth-child(-n+3) {
    border-bottom: 1px solid #E5E7EB;
}

.end-to-end-card {
    background: #fff;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .end-to-end-grid > [class*="col"] {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .end-to-end-grid > [class*="col"]:nth-child(odd) {
        border-right: 1px solid #E5E7EB;
    }

    .end-to-end-grid > [class*="col"]:last-child,
    .end-to-end-grid > [class*="col"]:nth-last-child(1):nth-child(even) {
        border-bottom: none;
    }

    .end-to-end-grid > [class*="col"]:nth-last-child(-n+2):nth-child(odd),
    .end-to-end-grid > [class*="col"]:nth-last-child(-n+1):nth-child(even) {
        border-bottom: none;
    }

    .end-to-end-card {
        padding: 26px 22px;
    }
}

@media (max-width: 575px) {
    .end-to-end-grid > [class*="col"] {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .end-to-end-grid > [class*="col"]:last-child {
        border-bottom: none;
    }

    .end-to-end-card {
        padding: 22px 18px;
    }
}

/* =================================================================================== End-to-End Mobile APPpage Grid End */
/* =================================================================================== Hire-react-native Start AnkitCSS */
/* Button Quote */
.btn-quote1 {
    position: relative;
    color: #0D47A1;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    z-index: 1; /* Keeps text above the border */
    border-radius: 16px 16px 5px 16px; 
    transition: all 0.3s ease;
}

.btn-quote1::before {
    content: "";
    position: absolute;
    inset: 0; /* Fills the entire button area */
    border-radius: 16px 16px 5px 16px; 
    padding: 3px; /* This defines your border thickness */
    
    /* The Gradient */
    background: linear-gradient(to bottom, #2196F3, #0D47A1);
    
    /* The Mask (Hides the center, leaves the border) */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    
    z-index: -1; /* Pushes the border behind the text */
}

.btn-quote1:hover {
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
    transform: translateY(-2px);
    color: #0D47A1;
}

.btn-quote1 img {
    width: 20px;
    height: 20px;
}

.hiring-blue {
    background: #E0ECFE !important;
}

.recommended-badge {
    background: #2196F3 !important;
}

/* =================================================================================== Hire Process Section Start - hire_react_native_developers.php */

.hire-process-section1 .hire-process-left h2 {
    font-weight: 800;
    color: #131415;
    line-height: 1.2;
}

.hire-process-section1 .hire-process-left p {
    color: #4F5356;
    font-size: 18px;
    line-height: 28px;
}

.hire-process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hire-process-step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #F5F8FF;
    border-radius: 16px 16px 5px 16px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

/* .hire-process-step-card:hover {
    box-shadow: 0 6px 24px rgba(33, 150, 243, 0.1);
    border-color: #d6e6ff;
} */

.hire-step-number {
    
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    background: linear-gradient(180deg, #2196F3 0%, #0D47A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 40px;
    padding-top: 2px;
}

.hire-step-content h4 {
    
    font-weight: 700;
    font-size: 20px;
    color: #131415;
    margin-bottom: 6px;
    line-height: 1.3;
}

.hire-step-content p {
    color: #616169;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive - Hire Process Section */
@media (max-width: 991px) {
    .hire-process-section1 .hire-process-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .hire-process-section1 .hire-process-left .btn-quote {
        margin: 20px auto 0;
    }

    .hire-process-step-card {
        padding: 20px 22px;
        gap: 16px;
    }

    .hire-step-number {
        font-size: 24px;
        min-width: 34px;
    }

    .hire-step-content h4 {
        font-size: 18px;
    }

    .hire-step-content p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .hire-process-step-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .hire-step-number {
        font-size: 22px;
        min-width: 30px;
    }

    .hire-step-content h4 {
        font-size: 16px;
    }

    .hire-step-content p {
        font-size: 14px;
    }
}
/* =================================================================================== Hire-react-native End AnkitCSS */
/* for long tex butto */
@media (min-width: 1198px) and (max-width: 1385px) {
  .btn-case-study {
     padding: 18px 10px;
  }
}