:root {
    /* Colors */
    --primary-color: #0078c8;
    --secondary-color: #333;
    --text-color: #666;
    --light-text-color: #7A8189;
    --white: #fff;
    --black: #000000;
    --background-light: #F6F6F6;
    --background-light2: #E5E5E5;
    --background-light3: #F5F5F5;
    
    
    --background-gray: #1E2222;
    --background-grayLight: #363636;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --header-scrolled-bg: rgba(255, 255, 255, 0.95);
    --transparent-color: transparent;
    --light-border-color: #E1E1E1;

    --image-radius: 12px;

    /* Typography */
    --font-family: "DM Sans", sans-serif;
    --secondary-font-family: "Source Sans 3", sans-serif;

    /* Shadows */
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --box-shadow-none: 0 2px 5px rgba(0, 0, 0, 0);

}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{max-width: 100%; height: auto;}

html{font-size: 15px;}
body {
    color: var(--secondary-color);
    scroll-behavior: smooth;
    font: normal 16px/1.5 var(--font-family);
    color: var(--black);
    min-width: 320px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button, a {
    cursor: pointer;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 14px;
}

h3{font-size: 26px;}
h4{font-size: 20px;}

.text-center {text-align: center !important;} 
.blue-text > *{color: var(--primary-color);}
.primary-color{color: var(--black);}
.black-text{color: black !important;}


p { margin-bottom: 16px;
    color: var(--secondary-color);
}

.d-flex{display: flex; gap: 30px;}
.align-items-center{align-items: center;}
.justify-center{justify-content: center;}

.col-7{width: 60%;}
.col-3{width: 40%;}

.col-6{width: 50%;}
.col-5{max-width: 400px;}
.col-4{width: 33.33%;}

.g-20{gap: 20px;}
.g-30{gap: 30px}
.g-40{gap: 40px}
.g-50{gap: 50px}
.g-60{gap: 60px}
.g-80{gap: 80px}

.mb-2{margin-bottom: 20px !important;}
.mb-3{margin-bottom: 30px !important;}
.mb-4{margin-bottom: 40px !important;}
.mb-5{margin-bottom: 50px !important;}

.mt--5{margin-top: -50px;}

.pt-4{padding-top: 40px !important;}
.pt-5{padding-top: 50px !important;}

.section{
    padding: 80px 0;
} 

.custom-select {
  appearance: none;         /* Remove default styles */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
  border: 1px solid #000000;
  padding: 10px 40px 10px 15px; 
  border-radius: 25px;
  background-image: url(/assets/images/arrow-down.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

/* Optional: Focus and Hover States */
.custom-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    transition: background 0.3s ease;
    border: solid 1px var(--primary-color);
    text-transform: uppercase;
}

.btn:hover, .btn:focus {
    background: var(--white);
    color: var(--primary-color);
}

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

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

.greyBG{
    background-color: var(--background-light)
}

.greyBG2{
    background-color: var(--background-light2)
}

.black-title{ color: var(--black);}
.black-title b{ color: var(--primary-color) !important;}
.section-padding{
    padding: 70px 0;
}

[role="tab"]{cursor: pointer;}

/* Container */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px; 
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--transparent-color);
    box-shadow: var(--box-shadow-none);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 42px 17px 28px;
}

.header  .logo{
    position: relative;
    top: 5px;
}

.header .logo svg {
    height: 40px;
}

.header .nav{display: flex;
    align-items: center;
    gap: 60px;
}

.nav-list {
    display: flex;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    padding:10px 5px;
    transition: color 0.3s ease;
    font-size: 17px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding:10px;
    min-width: 150px;
    border-radius: 8px;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    display: block;
}

.dropdown li *{
    color: var(--text-color);
}

.dropdown li a {
    display: block;
    padding: 8px10px;
}

.dropdown li a:hover, .dropdown li a:focus {
    background: var(--background-light);
}

header *{ 
        color: var(--white);
}

.fixed-header header {position: sticky;}

.header:hover *,
.fixed-header header  *,
header.scrolled  * {
    color: var(--black);
}

.header:hover *:hover, .header:hover *:focus,
header *:hover, header *:focus {
    color: var(--primary-color);
}

.fixed-header header *:hover, .fixed-header header *:focus,
header.scrolled *:hover, header.scrolled *:focus {
    color: var(--primary-color);
}

.header:hover,
.fixed-header header,
.header.scrolled {
    background: var(--header-scrolled-bg);
    box-shadow: var(--box-shadow);
}

.header:hover #Group_231 path,
.fixed-header header #Group_231 path,
.header.scrolled #Group_231 path{
    fill: var(--secondary-color);
}

.header .icon-search{display: flex; width: 20px; height: 20px; padding: 0 ; align-items: center; justify-content: center;  }
.header .icon-search img{display: block;}

.header:hover .icon-search,
.fixed-header header .icon-search,
.header.scrolled .icon-search{ background: url(../images/icon-search-black.png) no-repeat; 
    background-size: contain;
}
.header:hover .icon-search img,
.fixed-header header .icon-search img,
.header.scrolled .icon-search img{opacity: 0;}

header .custom-select{
    background-image: url('../images/arrow-down-white.png');
    background-color: var(--transparent-color);
    border: 0;
    padding: 6px 17px 6px 3px;
    background-position: right center;
    font-size: 14px;
}

header:hover .custom-select,
.fixed-header header .custom-select,
header.scrolled .custom-select{
  background-image: url('../images/arrow-down.png');
}

.header .custom-select option{
    color: var(--text-color);
    font-size: 14px;
}

.header .header-links .btn{ padding: 6px 14px; font-size: 14px; text-transform: capitalize;}  

header .btn:hover, header .btn:focus {
    color: var(--white);
}

header:hover .btn.transparent-btn, header:hover .btn.transparent-btn:focus,
.fixed-header header .scrolled .btn, .fixed-header header.scrolled .btn:focus,
header.scrolled .btn, header.scrolled .btn:focus {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-file {
  position: relative;
  display: inline-block;
}

.custom-file input[type="file"] {
  display: none; /* Hide default input */
}

.custom-file label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 25px 0 0;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}


.custom-file label .browse-text{
  text-transform: uppercase;
}

.custom-file .browse-icon {
    width: 47px;
    width: 47px;
    border-radius: 50%;
    border-width: 3px;
    border: solid 2px var(--primary-color);
    overflow: hidden;
    padding: 2px;
    background-color: var(--white);
}
.custom-file .browse-icon img {
  display: block;
}

.align-center{align-items: center;}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding:10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-links{display: flex; gap: 20px; align-items: center;}

/* Hero Section */
.page-banner {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    min-height: 500px;
    /* padding-top: 18px; */
}

.page-banner .banner-title {
    position: relative;
    font-weight: normal;
    margin-bottom: 18px;
    font-size: 44px;
    color: var(--white);
}

.page-banner .banner-title b{
    color: #23B4EA;
    font-weight: normal;
}

.page-banner .sub-title{
    font-size: 20px;
    margin-bottom: 32px;
}
.page-banner .sub-title strong{
    font-weight: normal;
}

.page-banner .btn { padding: 8px 13px;
    font-size: 13px;
}

.page-banner.innerBanner {
    text-align: left;
}
.page-banner.innerBanner .banner-title {
    font-size: 68px;
    font-weight: 700;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
}

.section-head {margin-bottom: 8px;}
.section-head h2{font-size: 42px;     margin-bottom: 6px;
    line-height: 1.2;}
.section-head p{font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.section-head h2 b{ color: var(--black); font-weight: inherit;}
.tag-line{position: relative; display: inline-flex; margin-bottom: 10px; align-items: center; gap: 10px;}
.tag-line::before{
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--primary-color); 
}

.why-choose-us-content {
    display: flex;
    gap: 8.7%;
}

.why-choose-image {
    width: 44%;
    padding-top: 20px;
}

.why-choose-image img{display: block;
    border-radius: 20px;
}

.why-choose-us-content .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    gap: 15px;
    flex: 1;
}

.why-choose-us-content .stat { display: flex;
        flex-direction: column;
}

.why-choose-us-content .stat h3 {
    font-size: 35px;
    margin-bottom:10px;
}
.why-choose-us-content .stat strong {
    font-size: 20px;
    margin-bottom:10px;
    /* flex: 1; */
}
.why-choose-us-content .stat p{
    font-size: 15px;
    color: var(--secondary-color);
    margin: 0;
}

@media (min-width: 768.9px) {
    .item1 {
    grid-column: 1;
    grid-row: 1;
    }
    .item2 {
    grid-column: 1;
    grid-row: 2;
    }
    .item3 {
    grid-column: 2;
    grid-row: 1;
    }
    .item4 {
    grid-column: 2;
    grid-row: 2;
    }
}

/* Service Offering Section */
.service-offering {
    padding: 39px 0 68px;
    background: url(../images/bg-dotted-repeater.jpg);
}

.tag-line.no-dot::before{
    display: none;
}
.service-offering .tag-line {
    font-size: 18px;
    margin: 0;
}

.service-offering-container{display: flex; gap: 30px;}
.service-offering-container .service-offering-left{
    width: 40%;
}

.service-offering-container .service-offering-left .section-head{
    margin-bottom: 70px;
}

.service-offering-container .service-offering-right{
    flex: 1;
    display: flex;
}

.service-offering-container .service-offering-right .tab-content{ 
        flex: 1;
    display: flex;
}
.service-offering-container .tab-content > div{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-offering-container .tabs {
    display: flex;
    flex-direction: column;
    gap:17px;
}

.service-offering-container .tabs button {
    background: none;
    border: none;
    padding: 12px;
    text-align: left;
    color: var(--secondary-color);
    position: relative;
    padding-left: 40px;
    transition: color 0.3s ease;
    border-radius: 12px;
    position: relative;
}

.service-offering-container .tabs button > *{position: relative; z-index: 2;}
.service-offering-container .tabs button::before {
    content: "";
    height: 100%;
    width: calc(100% + 15px);
    position: absolute;
    border-radius: 12px;
    left: -15px;
    top: 0;
}

.service-offering-container .tabs button[aria-selected="true"]::before {
    background-color: #eff9ff;
}

.service-offering-container .tabs button i{
    position: absolute;
    left: 2px;
    top:18px;
    width: 21px;
}

.service-offering-container .tabs button i img{
    width: 100%;
}

.service-offering-container .tabs button strong{ display: block; 
    font-size: 28px; 
    margin-bottom: 6px;
    font-weight: normal;
    color: var(--primary-color);
}

.service-offering-container  .tabs button span{
    display: block;
    line-height: 1.4;
    font-size: 19px;
}


.service-offering-container .tab-content div.hidden {
    display: none;
}

.service-offering .image img {
    width: 100%;
    max-width: 400px;
}

/* Solutions Section */

.dark-section {
    padding: 60px 0;
    background: var(--background-gray);
    color: var(--white);
}
.dark-section p{
    color: var(--white);
}

.solutions h3 {
    font-weight: normal;
}

.arrow-icon svg{width: 40px; max-width: 100%;}

/* right-up */

.arrow-icon.right-up{
    position: relative;
    transform: rotate(-45deg);
    display: inline-block;
}

/* white-arrow +  */

.arrow-icon.white-arrow .arrow-circle{
    fill: white;
    stroke: white;
}

.arrow-icon.white-arrow .arrow{
    fill: var(--primary-color);    
    stroke: var(--primary-color);
}

/* transparent-arrow */

.arrow-icon.transparent-arrow .arrow-circle{
    fill: transparent;
    stroke: var(--white);
}

.arrow-icon.transparent-arrow .arrow{
    fill: var(--white);    
    stroke: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
    gap: 20px;
}
.solution-item{position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.solution-item::before{
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    z-index: 1;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
}


.solution-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.solution-item .hover-text{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 40px 20px;
    background-color: var(--transparent-color);
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 2;
}

.solution-item h3 {  
    color: var(--white);
    font-size: 26px;
    margin-bottom: 0px;
    font-weight: 600;
}

.solution-item p {  
    color: var(--white);
    font-size: 16px;
    position: absolute; 
    bottom: -80px;
    opacity: 0;
    left: 0;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.solution-item .arrow-icon.white-arrow{
    position: absolute; bottom: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.solution-item:hover .hover-text,
.solution-item:focus .hover-text{ background-color: var(--primary-color);}

.solution-item:hover .hover-text p,
.solution-item:focus .hover-text p{ 
    opacity: 1;
    bottom: 80px;}

.solution-item:hover .hover-text .white-arrow,
.solution-item:focus .hover-text .white-arrow{ opacity: 1; bottom: 20px; }

.see-more-item{
    border: solid 1px var(--white);
    min-height: 240px;
}
.see-more-item:hover,
.see-more-item:focus{
    border-color: var(--primary-color);
}
.see-more-item .hover-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Industries Section */
.industries {
    padding: 70px 0 47px 15px;
}

.industries h2 {
}

.industries-tabs {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    
}


.industries .industries-tabs::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #E1E1E1;
    z-index: 1;
}

.industries-tabs li {
    background: none;
    border: none;
    font-size: 17px;
    font-weight: bold;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.industries-tabs li[aria-selected="true"] {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.industry-content .tab-content {
    display: none;
}

.industry-content .tab-content img{
    width: 100%;
}

/* Join Our Team Section */
.join-team {
    padding: 42px 0 70px;
    background: var(--background-light);
}

.join-team .container{
    position: relative;
}

.join-team .tag-line{position: absolute; left: 0; top: 0;}
.join-team .tag-line::before{
    height: 14px;
    width: 14px;
}

.join-team .section-head{
    padding-top: 34px;
}
.join-team .section-head h2 {
        font-size: 54px;
    text-align: center;
    margin-bottom: 22px;
}

.team-slider{
    max-width: 1050px;
    margin: 0 auto;
}

.team-slider .slick-list{
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 300px;
    margin: auto;
    border-radius: 12px;
}

.team-member p {
    margin-bottom: 18px;
    line-height: 2;
}

.team-member h4 {
    font-size: 28px;
}

.team-member h4 span {
    display: block;
    color: var(--text-color);
    font-weight: normal;
    font-size: 14px;
    padding-top: 5px;
}

.team-slider .slick-slide {
    margin: 0; 
    z-index: 1;
    position: relative;
}

@media (min-width: 768px) {

    .team-slider .slick-slide {
        padding-top: 60px ;
    }

    .team-slider .slick-slide .testimonial-img {
        transform: scale(1);
        opacity: 0.3;
        transition: all 0.5s ease;
        transform-origin: center bottom;
    }

    .team-slider .slick-slide .testimonial-content{
        opacity: 0;
        transition: all 0.5s ease;
        width: 600px;
        transform: translateX(-50%);
        left: 50%;
        position: relative;
    }

    .team-slider .slick-slide.slick-center{
        z-index: 2;
    }

    .team-slider .slick-slide.slick-center  .testimonial-img  {
        transform: scale(1.24);
        opacity: 1;
    }

    .team-slider .slick-slide.slick-center .testimonial-content{
        opacity: 1;
    }


.team-slider .slick-slide img{
    filter: grayscale(100%);
}

.team-slider .slick-slide.slick-center  img  {
    filter: grayscale(0);
}


}

.team-slider .slick-dots{
    display: flex;
    gap: 10px;
}
.team-slider .slick-dots li button{
    font-size: 0;
    height: 10px;
    width: 10px;
    background-color: #D1D1D1;
    border-radius: 50%;
    border: 0 none;
}

.team-slider .slick-dots li.slick-active button{
    background-color:#0078C8;
}

.team-slider .slick-arrow{
    width: 40px;
    border: 0 none;    
}

.team-slider .slick-arrow svg{max-width: 100%; display: block;}

.team-slider .slick-arrow.slick-prev,
.team-slider .slick-arrow.slick-next {
    position: absolute;
    right: 0;
    bottom: -25px;
    z-index: 3;
    background: none;
}

.team-slider .slick-arrow.slick-prev{right: 55px;
    transform: scaleX(-1);
}

.team-slider .slick-arrow.slick-disabled {cursor: default;}
.team-slider .slick-arrow.slick-disabled .arrow-circle{
    fill: var(--transparent-color);
    stroke: #e8e7e8;
}
.team-slider .slick-arrow.slick-disabled .arrow{
    fill: #e8e7e8;    
    stroke: #e8e7e8;
}

/* Available Worldwide Section */

.worldwide {
    padding: 86px 0 77px 8px;
}

.worldwide .section-head {
    padding-left: 10px;
    margin-bottom: 25px;
}

.worldwide .section-head h2{margin-bottom: 10px;
font-size: 48px;
line-height: 1.1;
}

.worldwide .section-head p{
    font-size: 17px;
}

.worldwide-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    width: 79%;
}

.stat-title{border-bottom: solid 1px var(--light-border-color); display: block; margin-bottom: 6px;
    padding: 8px 0; color: var(--primary-color); font-size: 17px;
}

.stat-content{position: relative;}

.stat-content h3{font-size: 50px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-content p{margin: 0;
    font-size: 15px;
}

.arrow-up-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 2px;
    top: -6px;
    transform: rotate(-45deg)
}

.arrow-up-icon svg{
    max-width: 100%;
}

.arrow-up-icon .arrow-circle {
    fill: var(--transparent-color);
    stroke: var(--transparent-color);
}

.arrow-up-icon .arrow {
    fill: var(--primary-color);
    stroke:  var(--primary-color);
}


.worldwide-map{padding-top: 20px;}

/* Call to Action Section */
.cta {
    padding: 50px 0 56px 0;
    text-align: center;
}

.cta h2 {
    font-size: 35px;
    color: var(--white);
    margin-bottom: 41px;
    position: relative;
    padding-bottom: 41px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: 1.5px;
}

.cta h2::after{
    content: "";
    position: absolute;
    width: 100px;
    height: 5px;
    border-radius: 2px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.cta p {
    margin: 0 auto 56px;
    color: #ccc;
    max-width: 600px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.cta .btn {padding: 6px 10px;}

/* News Section */
.news {
    padding: 35px 0 20px;
    border-top: solid 1px var(--white);
    overflow: hidden;
}

.news .container{
    padding-left: 8px;
}

.news h2 { color: var(--white) ;
    font-weight: normal;
    font-size: 33px;
    margin-bottom: 26px;
    font-family: var(--secondary-font-family);
}

.news-carousel{position: relative; width: 70%;}

.news-carousel .slick-list{overflow: visible;}

.news-item {
    padding: 20px 0 0;
}

.news-item p {
    color: var(--white);
    margin-bottom:11px;
    font-size: 17px;
}
.news-item h4 {
    color: var(--white);
    font-size: 26px;
    font-weight: normal;
    line-height: 1.5;
    max-width: 80%;
    font-family: var(--secondary-font-family);
}

.news-carousel {position: relative; padding-bottom: 40px;}

.news-carousel .slick-arrow{background-color: var(--transparent-color);
border: 0;
position: absolute;
bottom: 0;
left: 45px;
z-index: 5;
}

.news-carousel .slick-arrow.slick-disabled{opacity: 0.3; cursor: default;}

.news-carousel .slick-arrow svg{ width: 36px; height: 37px;}
.news-carousel .slick-arrow .arrow-circle{
    fill: var(--transparent-color);
    stroke: #e8e7e8;
}
.news-carousel .slick-arrow .arrow{
    fill: #e8e7e8;    
    stroke: #e8e7e8;
}

.news-carousel .slick-arrow.slick-prev{
    transform: scaleX(-1);
    left: 0;
}

/* Footer Section */
.footer {
    padding: 40px 0 0;
    border-top: solid 1px var(--white);
}
.footer-left{border-right: solid 1px white;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    padding: 12px 20px 0 0;
    width: 25%;
    min-width: 240px;
}
.footer-logo{margin-bottom: 4px;
        max-width: 110px;
}
.footer-newsLetter form{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-newsLetter form label{
    font-family: var(--secondary-font-family);
    font-size: 12px;
}

.footer-newsLetter form .input-field{
    background-color: var(--white);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 15px;
    line-height: 1.2;
    border: solid 1px white;
    margin-bottom: 6px;
}

.footer-newsLetter form .btn.btn-white{
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    padding: 4px 10px;
    font-size: 14px;
}

.footer-newsLetter form .btn.btn-white:hover,
.footer-newsLetter form .btn.btn-white:focus{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.footer-main{display: flex; gap: 30px; margin-bottom: 25px;}

.footer-links{ flex: 1; 
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 34px;
    padding-top: 10px;
}

.footer-links h4{
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
    font-family: var(--secondary-font-family);
    font-weight: 600;
}

.footer-links .footer-linksList:first-child{
    max-width: 155px;
    width: 100%;
}
.footer-links .footer-linksList:nth-child(2){
    max-width: 178px;
    width: 100%;}

.footer-links .footer-linksList:nth-child(3){
    max-width: 120px;
    width: 100%;}

.footer-links .footer-linksList:last-child h4{
    margin-bottom: 18px;
}


.footer-links .linksList li{ margin-bottom: 14px; font-size: 14px;
    font-family: var(--secondary-font-family);}

.footer-links .linksList li a:hover,
.footer-links .linksList li a:focus{ color: var(--primary-color); }

.sm-list{display: flex; gap: 10px;}
.sm-list a{display: block; max-width: 32px;}

.copywrite-footer{ border-top: solid 1px var(--white);
    font-family: var(--secondary-font-family);
    font-size: 14px;
    padding: 20px 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {

.ourExperience-section > .d-flex{flex-direction: column;}
.ourExperience-section .leftSide{width: 100% !important;}

    .why-choose-us-content {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax( 280px, 1fr) );
    }

    .service-offering-content {
        flex-direction: column;
    }

    /* .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    } */

    
    .industries-tabs-wrapper{
        overflow: auto;
        margin-bottom: 20px;
    }

    .industries-tabs {
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 8px;
        margin-bottom: 10px;
    }

    .industries-tabs button{
        border-color:  var(--light-border-color);
    }

    .industry-content img{
        min-height: 320px;
        object-fit: cover;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {

.devStratrgy-grid{
    flex-direction: column;
}
.devStratrgy-grid .grid-col.mt-120 {
    margin-top: 0px !important;
}

    h2 {
        font-size: 28px;
    }

.why-choose-image {
    width: 100%;
    max-width: 480px;
}

    .worldwide-stats {
        flex-direction: column;
    }

    .news-items {
        flex-direction: column;
        align-items: center;
    }

.service-offering-container .service-offering-left {
    width: 100%;
}
.service-offering-container .service-offering-right{
    display: none;
}

.service-offering-left .tabs{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ));
    gap: 30px;
}
.service-offering-left .tabs button{
    margin: 0;
}

.service-offering-left .tabs button{
    background-color: #eff9ff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px 40px;
}

.service-offering-left .tabs button i{
    left: 16px;
    top: 20px;
}

    /* worldwide */
    .worldwide > .container.d-flex{
        flex-direction: column;
    }
    .worldwide > .container .left-side.col-6{
        order: 2;
        width: 100%;
    }

    .worldwide-stats{
        width: 100%;
    }

    /* news section */
    .news-carousel, .news-item h4{
        width: 100%;
    }

    /* footer */

    .footer-main{flex-direction: column;}
    .footer-newsLetter form{align-items: center;}
    .footer-left {border: 0; padding: 0; border-bottom: solid 1px white; padding-bottom: 40px; margin-bottom: 10px; width: 100%;}
    .footer-logo{margin: auto;}
}


/* Services Page */

.service-page { 
    padding: 86px 0 60px; 
}

.service-page .container{
    display: flex;
    gap: 30px;
}

.service-page .left-sidebar{
    width: 250px;
}

.left-sidebar{ position: relative;}

.servicesNav{
    position: sticky;
    top: 100px;
}

.servicesNav li{padding-bottom: 10px;}
.servicesNav li a{ display: block; }
.servicesNav li a:hover{ color: var(--primary-color); }
.servicesNav li a.active{ 
    padding-left: 12px; 
    border-left: solid 4px var(--primary-color); 
    color: var(--primary-color);
}

.service-page .main-container{
    flex: 1;
}

.service-category-item{ margin-bottom: 40px;}
.service-category-item:last-child{ margin-bottom: 0px;}

.service-page h2{
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-category-containt{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-info{
    display: flex;
    gap: 20px;
}

.service-info .service-icon .icon-wrapper{
    width: 60px;
    display: block;
}

.sub-categories-list li a{
    display: flex;
    align-items: flex-start;
    border-bottom: solid 1px  var(--light-border-color);
    position: relative;
    padding: 12px 0;
    gap: 16px;
}
.sub-categories-list li a::after{
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    right: 0;
    top: 4px;
    background: url(../images/right-arrow-blue.svg) no-repeat;
    background-size: contain;
}

.sub-categories-list li a em{
    font-size: 14px;
    font-style: normal;
}
.sub-categories-list li a span{
    flex: 1;
    font-size: 20px;
    line-height: 1;
}

.sub-categories-list li a:hover em,
.sub-categories-list li a:hover span{
    color: var(--primary-color);
}

.sub-categories-list li a:hover{
    border-color: var(--primary-color);
}

.btn.right-arrow-black{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-right: 12px;
}
.btn.right-arrow-black::after{
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background: url(../images/right-arrow-black.svg) no-repeat;
    background-size: contain;
}

.btn.bordered{
    border-color: var(--black);
    background-color: var(--white);
    color: var(--black);
}

.btn.bordered:hover{
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.right-arrow-black:hover::after{ background-image: url(../images/right-arrow-white.svg);}


.btn.bordered.blue-bordered{
    border-color: var(--primary-color);
}

.btn.bordered.black-bordered{
    border-color: var(--black);
}
.btn.bordered.black-bordered:hover{
    border-color: var(--primary-color);
}

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

.btn.right-arrow-white{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-right: 12px;
}

.btn.right-arrow-white::after{
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background: url(../images/right-arrow-white.svg) no-repeat;
    background-size: contain;
}

.btn.bordered.white-bordered:hover{
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn.right-arrow-blue{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-right: 12px;
}

.btn.right-arrow-blue::after{
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background: url(../images/right-arrow-blue.svg) no-repeat;
    background-size: contain;
}


.btn.bordered.white-bordered.right-arrow-blue:hover::after{
    background-image: url(../images/right-arrow-white.svg);
}


.btn.right-arrow-white:hover::after{
    background-image: url(../images/right-arrow-blue.svg);
}

@media (max-width: 768px) {
    .service-page .left-sidebar{display: none;}
}

/* UI UX Design Page */

.serviceWeProvide{
    padding: 60px 0;
}

.serviceWeProvide .section-head{
    border-bottom: solid 1px var(--light-border-color);
    padding-bottom: 20px;
    margin-bottom: 60px;
}


.serviceWeProvide-content .col-6:first-child img{
        width: 90%;
        border-radius: 14px;
    }

.two-col-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 20px;
}

.two-col-grid.devStratrgy-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.two-col-grid.devStratrgy-grid .grid-item .item-head{ 
    align-items: flex-start;
    flex: 1;
}

.weProvide-item h3{
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.weProvide-item h3::after{
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    background: url(../images/right-arrow-blue.svg) center center no-repeat;
    background-size: contain;

}

.weProvide-item p{
    font-size: 14px;
    margin: 0;
    padding-right: 50px;
}

/* Case Studies */
.caseStudy-section { padding-bottom: 60px; overflow: hidden;}

.caseStudy-section .section-head{margin-bottom: 40px;}

.swiper-container{
    padding-top: 130px;
}

.caseStudy-item{
    background-color: #1E2222;
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    gap: 20px;
    color: white;
}

.caseStudy-item .leftSide{
    width: 30%;
    padding: 10px 20px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.caseStudy-item .rightSide{flex: 1;}
.caseStudy-item .rightSide img{width: 100%; height: auto; border-radius: 20px;}

.caseStudy-item .leftSide strong{
    font-weight: normal;
    display: block;
    margin-bottom: 6px;
}

.caseStudy-item h3{font-size: 30px; 
    color: var(--white);
    font-weight: 500;
    margin-bottom: 15px;
}

.caseStudy-item p{
    color: var(--white);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.radius-20{
    border-radius: 20px;
}
.radius-15{
    border-radius: 15px;
}
.radius-10{
    border-radius: 10px;
}

.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}
.mb-30{margin-bottom: 30px;}
.mb-40{margin-bottom: 40px;}

.ourExperience-section{
    padding: 60px 0;
}

.ourExperience-section .leftSide{
    width: 40%;
    display: flex;
    align-items: center;
}

.ourExperience-section .leftSide h2{ margin-bottom: 20px;}
.ourExperience-section .leftSide p{font-size: 15px; margin-bottom: 20px;}

.ourExperience-section .leftSide .section-head{ margin-bottom: 0;}

.ourExperience-section .rightSide{
    flex: 1;
}

.work-item-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10%;
}

.work-item-grid h3{font-size: 68px; 
    border-bottom: solid 1px var(--light-border-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.work-item-grid p{
    font-size: 20px;
    font-weight: 600;
}

/* Types of Solutions we offer */

.SolutionsWeOffer{
    padding: 0 0 60px;
}

.SolutionsWeOffer-content{display: flex; gap: 20px; border-top: solid 1px var(--light-border-color);
}

.SolutionsWeOffer-content .solutions-tabs{
    width: 25%;
    min-width: 220px;
    padding-top: 30px;
}
.SolutionsWeOffer-content .solutions-tabs li{
    background: none;
    border: 0 none;
    font-size: 15px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-left: solid 3px transparent;
}

.SolutionsWeOffer-content .solutions-tabs li[aria-selected="true"] {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.SolutionsWeOffer-content .tabsContent-wrapper{
    padding: 30px 0 30px 20px;
    border-left: solid 1px var(--light-border-color);    
}

.SolutionsWeOffer-content .solutions-tabsContent{display: flex; gap: 30px; flex: 1; align-items: center;
}

.SolutionsWeOffer-content .solutions-tabsContent {
    display: none;
}

.SolutionsWeOffer-content .solutions-tabsContent.active {
    display: flex !important;
}

.SolutionsWeOffer-content .solutions-tabsContent.imageWrapper{width: 35%; min-width: 200px;}

.SolutionsWeOffer-content .solutions-tabsContent h3{
    font-size: 25px;
    margin-bottom: 20px;
}

.SolutionsWeOffer-content .solutions-tabsContent .tabInfo{flex: 1;}

.SolutionsWeOffer-content .solutions-tabsContent .sub-title{display: block; font-size: 18px; margin-bottom: 8px;}

.SolutionsWeOffer-content .solutions-tabsContent .listItem li{
    position: relative; 
    display: flex; 
    margin-bottom: 10px;  
    gap: 10px;
    color: var(--text-color);
    font-size: 14px;
}

.SolutionsWeOffer-content .solutions-tabsContent .listItem li::before{
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--primary-color); 
    margin-top: 7px;
}

  @media (max-width: 1024px) {

      .SolutionsWeOffer-content .solutions-tabs li{
        border-left: 0;
        border-bottom: solid 3px transparent;
        padding: 8px 0;
      }

    .serviceWeProvide > .container > .d-flex {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .serviceWeProvide > .container > .d-flex > *{ width: 100%;}
    .serviceWeProvide > .container > .d-flex > .col-6 > img {
        height: 280px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .caseStudy-item{ flex-direction: column; }
    .caseStudy-item .leftSide{width: 100%;}
    .caseStudy-item .rightSide img{
        height: 280px; 
        width: 100%;
        object-fit: cover;}

    .work-item-grid{ gap: 30px; }

    .SolutionsWeOffer-content{ flex-direction: column; }
    .SolutionsWeOffer-content .solutions-tabs { width: 100%; }
    .SolutionsWeOffer-content .solutions-tabs .tabsNav{ display: flex; gap: 25px; }
    .SolutionsWeOffer-content .solutions-tabs .tabsNav button {
        margin-bottom: 0;
        padding-bottom: 10px;
        border-bottom: solid 2px var(--white);
    }
    .SolutionsWeOffer-content .solutions-tabs .tabsNav button[aria-selected="true"]{
        border-bottom: solid 2px var(--primary-color);
    }

    .SolutionsWeOffer-content .solutions-tabsContent{
        padding: 0;
        border: 0;
    }

}

  @media (max-width: 768px) {
    .ourExperience-section > .d-flex {
        flex-direction: column;
    }
    .ourExperience-section > .d-flex > .leftSide{
        width: 100%;
    }
    .SolutionsWeOffer-content .solutions-tabsContent{
        flex-direction: column;
        align-items: flex-start;
    }

  }


.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item{
    background-color: #F3F3F3;
    border-radius: 12px;
}

.accordion-header {
  padding: 14px 40px 14px 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}

.accordion-header::after {
    height: 24px;
    width: 24px;
    content: "";
    position: absolute;
    right: 14px;
    top: 14px;
    background: var(--primary-color) url(../images/main-arrow.svg) no-repeat;
    background-size: contain;
    transform: rotate(-45deg);
    border-radius: 50%;
}

.accordion-header.active::after {
    transform: rotate(145deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
}

.accordion-content p {
    font-size: 14px;
}

.accordion-item.active .accordion-content{
    max-height: 100% !important;
}

.caseStudy-slider {
  position: relative;
}

.caseStudy-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 440px;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;

  z-index: 1;
  top: -60px;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}


/* Show back item */
.caseStudy-item.back {
  z-index: 2;
  top: -130px;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.6;
}

/* Show front */
.caseStudy-item.front,
.caseStudy-item.front.back {
  z-index: 3;
  top: 0px;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* Show next item */
.caseStudy-item.front.done {
  z-index: 4;
  top: 50px;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0;
}

.devStratrgy-grid{
    display: flex;
    gap: 20px;
}

.devStratrgy-grid .grid-col{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.devStratrgy-grid .grid-col.mt-120{
    margin-top: 120px;
}
.devStratrgy-grid .grid-item{
    border-radius: 14px;
    background-color: white;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.devStratrgy-grid .grid-item p{
    margin: 0; 
    color: #7A8189;
}

.devStratrgy-grid .grid-item .item-head{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.grid-item .item-head h3{
    margin-bottom: 0;
    color: var(--black);
}

.devStratrgy-grid .grid-item .item-head .item-icon img{
    display: block;
}

.webTechnology-secion{
    background-color: var(--background-light);
    padding: 70px 0;
}

.webTechnology-secion .section-head h2{
    margin-bottom: 30px;
    line-height: 1.3;
}


.tab-list {
    overflow-x: auto;
}

.tab-list ul {
    display: flex;
    list-style: none;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* web Technology tabs */
.webTechnology-tabs .tabsNav{
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.webTechnology-tabs .tabsNav li{
    padding: 10px 16px;
    margin: 0;
    background-color: var(--transparent-color);
    color: var(--black);
    border-radius: 6px;
    line-height: 1.4;
    white-space: nowrap;
}
.webTechnology-tabs .tabsNav li[aria-selected="true"]{
    background-color: var(--black);
    color: var(--white);
}

.webTechnology-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    position: relative;
}

.webTechnology-grid::after{
    content: "";
    position: absolute;
    right: 0;
    top: 1px;
    width: 2px;
    height: 100%;
    background-color: var(--background-light);
}

.webTechnology-grid .webTechnology-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    border: solid 1px var(--light-border-color);
    border-width: 1px 1px 0 0;
    padding: 20px;
}

.webTechnology-grid .webTechnology-item .webTechnology-icon{
    width: 60px;
}

.tabsContent.hidden{display: none;}

.case-study-section{padding: 70px 0;}

/* .caseSlider{display: flex; gap: 10px;} */

 .case-study-section.horizontal-case-study .section-head{
        width: 94%;
        margin: 0 auto 60px;
    }

.case-study-section.horizontal-case-study .section-head p{
    font-size: 15px;
}

.case-study-section.horizontal-case-study .custom-carousel-track .slide.active .item-container h4{
    font-size: 18px;
}


.custom-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.custom-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.custom-carousel-track .slide {
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
  transition: width 0.3s ease;
    padding: 0 5px;
}

.custom-carousel-track .slide img{
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.custom-carousel-track .slide .item-container{position: relative;
    border-radius: 16px; overflow: hidden;}
.custom-carousel-track .slide .item-container h4{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    color: var(--white);
}

.custom-carousel-track .slide.active .item-container h4{
    text-align: left;
}

.custom-carousel-track .slide .item-container img{
    width: 100%;
}


/* app Development page  */
.info-section{
    padding: 70px 0;
}


.appDevelopmentPage .info-section .section-head{
    margin-bottom: 40px;
}
.appDevelopmentPage .info-section .section-head h2{
    margin-bottom: 20px;
}

.appDevelopmentPage .info-section .col-6:first-child{ 
    padding-right: 4%;
}
.appDevelopmentPage .info-section .col-6:last-child{
    justify-content: center;
}

.appDevelopmentPage .info-section .col-6:last-child img{
    max-width: 90%;
}

.appDevelopmentPage .info-section .devStratrgy-grid{
    gap: 40px;
}

.appDevelopmentPage .info-section .devStratrgy-grid .grid-col{
    gap: 40px;
}

.appDevelopmentPage .info-section .devStratrgy-grid .grid-item p{
    font-size: 14px; 
    line-height: 1.7;
}



.info-section .devStratrgy-grid h3{
    color: var(--black);
}
.devStratrgy-grid .grid-item.button-item{
    box-shadow: none;
    padding-top: 100px;
    align-items: center;
}

.appsBenefits-section{
    padding: 60px 0 90px;
}

.appsBenefits-section .section-head{ margin-bottom: 80px; }
.appsBenefits-section h3{
    font-size: 34px;
}

.circularShape-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}
.circularShape-text .appsBenefits-list{ display: flex; flex-direction: column; gap: 30px;}

.circularShape-text .appsBenefits-list h4{font-size: 20px;}

.circularShape-text .appsBenefits-list p{
    margin: 0; 
    font-size: 14px;
    color: #7A8189;
    line-height: 2;
}

.circularShape-text .appsBenefits-list li{max-width: 340px;}
.circularShape-text .appsBenefits-list.leftList{
    text-align: right;
}

.circularShape-text .appsBenefits-list.leftList li:first-child p{
    padding-right: 20px;
}
.circularShape-text .appsBenefits-list.leftList li:nth-child(2){
    padding-right: 40px;
}
.circularShape-text .appsBenefits-list.leftList li:last-child h4{
    padding-right: 20px;
}

.circularShape-text .appsBenefits-list.rightList li:first-child p{
    padding-left: 20px;
}
.circularShape-text .appsBenefits-list.rightList li:nth-child(2){
    padding-left: 40px;
}
.circularShape-text .appsBenefits-list.rightList li:last-child h4{
    padding-left: 20px;
}


.os-sets{display: flex; gap: 12px; padding-top: 30px; margin-bottom: 50px;}

.hireAppDev-section .os-sets{ margin-bottom: 80px;}

.os-sets .os-item{ padding: 8px 20px; background-color: #EBEBEB; border-radius: 4px; width: 150px;
    display: flex; align-items: center;
}
.os-sets .os-item img{display: block; margin: auto;}


/* Hire app dev  */

.hireAppDev-section{
    background-color: var(--background-light);
    padding: 70px 0;
}

.hireAppDev-section h2{ margin-bottom:  18px;}

.hireAppDev-section p{ font-size: 16px;}

.appDev-img img{ margin-left: 20px; display: block;}

.appDevApproch-section {
    padding: 70px 0;
}
.appDevApproch-section .section-head{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.appDevApproch-tabs{
    max-width: 1000px;
    margin: 0 auto;
}

.appDevApproch-tabs .tabsNav{ display: flex;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.appDevApproch-tabs .tabsNav li{
    border: solid 1px var(--secondary-color);
    background-color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    margin: 0;
}

.appDevApproch-tabs .tabsNav li[aria-selected="true"]{
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.appDevApproch-tabs .tabsContent-wrapper{
    background-color: var(--background-gray);
    border-radius: 20px;
    padding: 25px;
}

.appDevApproch-tabs .tabsContent-wrapper h4,
.appDevApproch-tabs .tabsContent-wrapper p{
    color: white;
    margin-bottom: 20px;
}

.appDevApproch-tabs .tabsContent-wrapper h4{
    font-size: 28px;
}

.appDevApproch-tabs .tabsContent-wrapper .col-3{
    width: 42%;
    padding-right: 1%;
}


 .tabsContent-wrapper .img-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-grayLight);
    border-radius: 14px;
    padding: 20px 10%;
 }
 .tabsContent-wrapper .img-wrapper.overflowImg{
    padding: 0 13% 20px;
 }
  .tabsContent-wrapper .img-wrapper.overflowImg img{margin-top: -50px;}

  .notransition{}

  /* artificial page */
  .weUnderstand-section{

  }

  h3.blue-title{
    font-size: 38px;
    margin-bottom: 30px;
  }

    .ourExperience-section.webStratrgy-section > .container {
        gap: 13%;
    }

  .atrificial-intelligencePage .weUnderstand-section.ourExperience-section .leftSide{padding: 0; 
    display: block;
    text-align: left;
}
  .weUnderstand-section.ourExperience-section .leftSide img{width: 100%;}

  .weUnderstand-section.ourExperience-section .rightSide .twoCol-grid .grid-item{
    border-bottom: solid 1px #C4C4C4;
    padding-bottom: 12px;
  }

  
    .weUnderstand-section.ourExperience-section .rightSide h3.blue-title{
        font-size: 45px;
    }

    .weUnderstand-section.ourExperience-section .twoCol-grid .item-head h4{
        font-size: 20px;
    }

    .weUnderstand-section.ourExperience-section .twoCol-grid .item-content p{
        font-size: 15px;
    }

  
  .twoCol-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 20px;
  }

  .twoCol-grid .item-head{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }

  .twoCol-grid .item-head .item-icon{
    width: 35px;
    display: block;
  }

  .twoCol-grid .item-head .item-icon img{display: block;}

  .twoCol-grid .item-head h4{flex: 1;
    color: var(--black);
    font-size: 18px;
    margin: 0;
}

.twoCol-grid .item-content p{
    font-size: 13.5px;
    color: var(--black);
    margin: 0;
}

.homePage .solutions.dark-section{
    padding-left: 12px;
    padding-bottom: 105px;
}

.homePage .solutions.dark-section .tag-line.no-dot{
    font-size: 17px;
    margin-bottom: 2px;
}

.homePage .solutions.dark-section .section-head{
    margin-bottom: 70px;
}
.homePage .solutions.dark-section .section-head h2{
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.1;
}

.homePage .solutions.dark-section .section-head .col-5 {
    max-width: 470px;
    line-height: 1.6;
}

.solutions-grid{
    gap: 50px 12px;
}

.homePage .solutions-grid{
    padding-right: 20px;
}

.solutions-grid .see-more-item .arrow-icon.right-up{
        top: 24px;
}

.industries .container{
    padding-right: 48px;
}
.industries .tag-line{ margin: 0; font-size: 17px; line-height: 1.4;}
.industries .section-head {margin-bottom: 10px;}
.industries .section-head h2{line-height: 1;letter-spacing: 0.6px; margin-bottom: 12px;}
.industries .section-head .col-5{max-width: 468px;}
.industries .section-head p {line-height: 1.6;}
.industries .industries-tabs {
    gap: 4.9%;
    margin-bottom: 37px;
    position: relative;
}

.team-slider .slick-slide .testimonial-content{
    top: 10px;
}

/* software development page  */

.benefits-section > .container .col-6:first-child img{
    width: 90%;
    border-radius: 14px;
}

.benefits-section .section-head{margin-bottom: 30px;}

.accordion-item .accordion-content{
    padding-right: 12%;
}

/* Digital Marketing page  */

.digitalMarketingPage .ourExperience-section.webStratrgy-section .container{
    gap: 17%;
}

/* servicesTailored Section */
.servicesTailored-section .section-head{
    margin: 0 auto 30px;
    max-width: 800px;
}

.services-tailored-tabs .tab-list{
    margin-bottom: 30px;
}

.services-tailored-tabs .tab-list ul{
    justify-content: space-between;
    gap: 25px;
    overflow: scroll;
}

.services-tailored-tabs .tab-list ul li{
    width: 23%;
    min-width: 245px;
    white-space: initial;
}

.services-tailored-tabs .tab-list ul li > * {
    color: #7A8189;
}

.services-tailored-tabs .tab-list ul li.active > * {
    color: var(--primary-color);
}

.services-tailored-tabs .tab-list ul li .sn{
    font-size: 26px;
    font-weight: 600;
}
.services-tailored-tabs .tab-list ul li h3{
    font-size: 24px;
    font-weight: 600;
}
.services-tailored-tabs .tab-list ul li p{
    font-size: 14px;
}


.services-tailored-tabs .tab-content-wrapper .tab-content{
        margin: 0 auto 30px;
}


@media (min-width: 1024.2px) {

.services-tailored-tabs .tab-list ul{
        overflow: auto;
    }
.services-tailored-tabs .tab-content-wrapper .tab-content{
        display: block !important;
        opacity: 1 !important;
        margin: 0 auto 30px;
    }


.services-tailored-tabs .tab-content-wrapper .tab-content:nth-child(2){
    width: 90%;
}

.services-tailored-tabs .tab-content-wrapper .tab-content:nth-child(3){
    width: 80%;
}

.services-tailored-tabs .tab-content-wrapper .tab-content:nth-child(4){
    width: 70%;
}

}

.services-tailored-tabs .tab-content-wrapper .tab-content .circle-content{
    position: relative;
    padding: 50px;
}
.services-tailored-tabs .tab-content-wrapper .tab-content .circle-content > *{position: relative;}
.services-tailored-tabs .tab-content-wrapper .tab-content .circle-content::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: solid 1px #7A8189;
    top: 0;
    left: 0;
}

.services-tailored-tabs .tab-content-wrapper .tab-content .circle-content .sn{
    position: absolute;
    right: 100%;
    margin-right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #7A8189;
    font-weight: 600;
}

.services-tailored-tabs .tab-content-wrapper .tab-content .circle-content .buttons-group{
    max-width: 422px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
    display: none;
}

.services-tailored-tabs .tab-content-wrapper .tab-content.active .circle-content::before{
    border-color: var(--primary-color);
}
.services-tailored-tabs .tab-content-wrapper .tab-content.active .circle-content .sn{
    color: var(--primary-color);
    right: auto;
    left:  20px;
    font-size: 27px;
}
.services-tailored-tabs .tab-content-wrapper .tab-content.active .circle-content .buttons-group{
    display: flex;
}

@media (max-width: 1024px) {
    
    .digitalMarketingPage .ourExperience-section.webStratrgy-section .container{
        gap: 40px;
    }


}

.digitalMarketingPage .ourExperience-section.webStratrgy-section .leftSide{
    width: 38%;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
}

.two-images{display: flex; gap: 20px; margin-bottom: 30px;}
.two-images img{border-radius: 15px;}

.digitalMarketingPage .ourExperience-section.webStratrgy-section .leftSide h2{font-size: 38px;}
.digitalMarketingPage .ourExperience-section.webStratrgy-section .leftSide p{margin-bottom: 36px;}

.devStratrgy-grid.number-list .grid-item{
    padding: 25px;
    position: relative;
}

.devStratrgy-grid.number-list .grid-item .sn {
    position: absolute;
    right: 12px;
    top: 8px;
    color: #A9A9A9;
    font-size: 22px;
    font-weight: 500;
}

.devStratrgy-grid.number-list .item-head{
    flex-direction: column;
    align-items: flex-start;
}

.devStratrgy-grid.number-list .item-icon {
    margin-bottom: 30px;
}
.devStratrgy-grid.number-list .item-icon img {
        width: 80% !important;
    }

.devStratrgy-grid.number-list h3{ font-size: 22px;}
.devStratrgy-grid.number-list p{
    font-size: 16px;
}

/* digital Transformation Page */

.digitalTransformationPage .devStratrgy-grid{
    display: flex;
    flex-direction: column;
}

.digitalTransformationPage .devStratrgy-grid .grid-item{
    padding: 40px 30px;
}
.digitalTransformationPage .devStratrgy-grid .grid-item .item-head{
    margin-bottom: 30px;
}
.digitalTransformationPage .devStratrgy-grid .grid-item h3{
    font-size: 36px;
}

.grid-item .item-head h3{ font-size: 36px; }

.digitalTransformationPage .devStratrgy-grid .grid-item p{
    font-size: 14px;
    color: #7A8189;
    line-height: 2;
}

.digitalTransformationPage .serviceWeProvide .image-wrapper img{
    width: 88%;
    border-radius: 18px;
}

.digitalTransformationPage .benefits-section .image-wrapper img{
    border-radius: 18px;
    width: 80%;
}

.empoweringTransformation-section .section-head{
    max-width: 1000px;
    margin: auto;
}

.empoweringTransformation-section .section-head h2{
    font-size: 44px;
    margin-bottom: 30px;
}

.empoweringTransformation-section .section-head p{
    font-size: 20px;
    max-width: 680px;
    margin: auto;
}

.empoweringTransformation-section .three-col-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.three-col-grid .grid-item .itemImg{
    margin-bottom: 20px;
}
.three-col-grid .grid-item .itemImg img{
    border-radius: 18px;
}
.three-col-grid .grid-item h3{
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}
.three-col-grid .grid-item p{
    font-size: 18px;
    color: #7A8189;
}


/* CRM page  */

.crmHelps-section{
    padding: 70px 0;
}

.crmHelps-section .container {
    width: 80%;
    max-width: 1200px;
    padding: 60px;
    background-color: var(--background-light3);
    border-radius: 25px;
}

.crmHelps-section .section-head{text-align: center; margin-bottom: 50px;}

/* .crmHelps-section .section-head h2{font-size: 47px;} */

.crmHelps-section .section-content{display: flex; gap: 7%;}

.crmHelps-section .left-content {width: 40%; 
min-width: 290px;}

.crmHelps-section .left-content .points-list li{display: flex; gap: 20px; align-items: center; margin-bottom: 16px;}

.crmHelps-section .left-content .points-list .icon-point {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crmHelps-section .left-content .points-list .icon-point img{
    display: block;
}

.crmHelps-section .left-content .points-list{
    font-size: 18px;
}

.crmHelps-section .left-content .point-content{flex: 1;}

.crmHelps-section .right-content{display: flex; gap: 20px;}
.crmHelps-section .right-content .percentage-list:last-child{margin-top: 100px;}

.percentage-list {display: flex; gap: 20px; flex-direction: column; width: calc(50% - 10px);}
.percentage-list li{border-radius: 12px; color: var(--primary-color); color: white; background-color: var(--primary-color);
    padding: 20px;
}
.percentage-list li h3{
    color: white;
    font-size: 42px;
    font-weight: 600;
}


/* why choose section  */

.whyChooseMD-section{
    padding: 70px 0;
}

.whyChooseMD-section .section-head{
    text-align: center;
    margin-bottom: 80px;
}

.whyChooseMD-section .section-head h2{
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 12px;
}

.whyChooseMD-section .section-head p{
    max-width: 750px ;
    margin: auto;
    font-size: 17px;
}

.whyChoose-tabs{
    display: flex;
    gap: 3%;
    max-width: 1200px;
    margin: auto;
}

.whyChoose-tabs .tab-content-wrapper{ width: 55%;}

.whyChoose-tabs .tab-content-wrapper img {border-radius: 20px;}

.whyChoose-tabs .tab-list{flex: 1;}

.whyChoose-tabs .tab-list ul{
    flex-direction: column;
    white-space: normal;
    gap: 20px;
}

.whyChoose-tabs .tab-list li h3,
.whyChoose-tabs .tab-list li p{
    color: #CCCCCC;
}

.whyChoose-tabs .tab-list li h3{
    font-size: 23px;
    margin-bottom: 12px;
}

.whyChoose-tabs .tab-list li p{
    font-size: 16px;
}

.whyChoose-tabs .tab-list li.active h3{
    color: var(--primary-color);
}

.whyChoose-tabs .tab-list li.active p{
    color: var(--black);
}

/* Become partner  */

.becomePartner-section {padding: 70px 0;}
.becomePartner-section .section-head{text-align: center; margin-bottom: 50px;}
.becomePartner-section .head-icon{display: inline-block;}

.becomePartner-steps{display: flex; gap: 4%; max-width: 1200px; margin: auto; margin-bottom: 50px;}

.partner-step{position: relative;}
.partner-step::after{position: absolute;
    content: "";
    height: 77px;
    width: 2px;
    background-color: var(--primary-color);
    left: -25px;
    top: 42px;
}

.partner-step:first-child::after{
    display: none;
}

.becomePartner-steps .partner-step .sn{
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    margin-bottom: 20px;
}
.becomePartner-steps .partner-step h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.becomePartner-steps .partner-step p{
    color: #7A8189;
    font-size: 16px;
}

/* How Earn  */
.howEarn-section{
    padding: 70px 0;
    background-color: #F4F4F6;
}

.howEarn-section .container{
    max-width: 1200px;
}

.howEarn-section .section-head{text-align: center; margin-bottom: 50px;}
.howEarn-section .head-icon{display: inline-block;}


.earning-calculator{
    display: flex;
    gap: 30px;
}

.earning-calculator .calculator{width: 50%; display: flex; gap: 30px;}
.earning-calculator .range-setting {width: 50%;}

.setting-row{
    margin-bottom: 20px;
}

.setting-row label{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.setting-row label > span {
    color: #1FB041;
}

.setting-row input[type="range"]{
    width: 100%;
}


/* Remove default appearance */
input[type=range] {
  -webkit-appearance: none; /* For Chrome & Safari */
  width: 100%;
  background: transparent; /* Otherwise white in Firefox */
}

/* Track styling */
input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: #ccc;
  border-radius: 2px;
}

input[type=range]::-moz-range-track {
  height: 4px;
  background: #ccc;
  border-radius: 2px;
}

input[type=range]::-ms-track {
  height: 4px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/* Thumb styling */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: #007bff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -8px; /* Adjust based on track height */
}

input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  background: #007bff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

input[type=range]::-ms-thumb {
  height: 20px;
  width: 20px;
  background: #007bff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Focus style */
input[type=range]:focus {
  outline: none;
}

/* Example: Change track fill color up to thumb (for Chrome only) */
input[type=range]::-webkit-slider-runnable-track {
  background: #ccc;
}

.outcome-cards h3{font-size: 16px; font-weight: normal; 
    color: #7A8189;
}

.earning-calculator .outcome-cards {flex: 1; display: flex; flex-direction: column; gap: 12px;}

.earning-calculator .outcome-cards .card-item{
    background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.earning-calculator .outcome-cards .card-item p {color: #7A8189; margin: 0; font-size: 15px;}
.earning-calculator .outcome-cards .card-item .amount-range{font-size: 20px; color: black; margin-bottom: 10px;}

.earning-calculator .outcome-cards .card-item.total{
    background-color: #1FB041;
    
}
.earning-calculator .outcome-cards .card-item.total > *{color: white;}
.earning-calculator .graph-container{flex: 1; padding-top: 50px;}

.earning-calculator .graph-container h3{ text-align: center; color: black; font-weight: normal; font-size: 17px; margin-bottom: 20px; }

.whyChooseMD-section .tab-content-wrapper{ position: relative; }

.whyChooseMD-section .tab-content-wrapper .tab-content{ position: sticky; top: 100px;}

#earningsChart{max-width: 100%;}

.businessSolutions-section .section-head h2{
    font-size: 42px;
}

.businessSolutions-section .section-head p{
    font-size: 16px;
    font-weight: normal;
}


.tab-wrapper.whyChoose-tabs.imgOnRight{
    gap: 12%;
    max-width: 80%;
}

.tab-wrapper.whyChoose-tabs.imgOnRight .tab-content-wrapper{
    width: 47%;
}

/* product engineering section  */

.IndustriesWeProvide-section{
    padding: 70px 0;
}

.IndustriesWeProvide-section .section-head{
    margin-bottom: 60px;
}


.IndustriesWeProvide-section .section-head p {
    font-size: 18px;
    max-width: 950px;
    margin: auto;
}


.four-col-grid{
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax( 306px, 1fr ));
}

.four-col-grid .grid-item{
        border: 1px solid #CCCCCC;
        border-radius: 12px;
        display: grid;
        align-items: center;
        justify-content: center;
        padding: 24px;
        text-align: center;
}

/* News  */

.newsTop-section {
    padding: 60px 0 0;
}

.newsTop-section > .container{
    display: flex;
    gap: 5%;
} 

.newsTop-section .newsinfo{
    width: 70%;
}

.newsinfo .section-head{
    margin-bottom: 30px;
}

.newsinfo .section-head small{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.newsinfo .section-head h1{
    font-size: 52px;
    max-width: 600px;
}

.head-info{
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 13px; line-height: 1.4;
}

.updates-date > *{ display: block;}  
.updates-date span { color:  #707070;}

.rating-output a,
.review-count a {display: flex; gap: 8px; align-items: center; } 
.rating-output a img,
.review-count a img{width: 17px; display: block; margin-top: -4px;}

.review-count a img{width: 21px;}

.rating-output a {border: solid 1px grey; border-radius: 20px; padding: 5px 12px 2px 8px; overflow: hidden; }

.featured-img{margin-bottom: 30px;}
.featured-img img { border-radius: 16px; }

ul.unordered-list {padding-bottom: 10px;}

ul.unordered-list li{
    position: relative;
    padding-left: 20px ;
    margin-bottom: 16px;
}

ul.unordered-list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.heading3{ font-size: 38px;}

.three-cols{display: grid;
    grid-template-columns: repeat(auto-fit, minmax( 240px, 1fr ));
    gap: 20px;
    margin-bottom: 20px;
}

.newsinfo-threeCols .cols-item{
    padding-right: 10%;
    position: relative;
    padding-top: 16px;
}

.newsinfo-threeCols .cols-item::before{
    content: "";
    height: 8px;
    width: 34px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

.newsinfo-threeCols .cols-item strong{
    font-size: 42px;
}

/* four cols  */

.four-cols{display: grid;
    grid-template-columns: repeat(auto-fit, minmax( 240px, 1fr ));
    gap: 20px;
}

.newsinfo-fourCols{
    margin-bottom: 30px;
}

.newsinfo-fourCols .cols-item{
    padding-right: 10%;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsinfo-fourCols .cols-item strong{
    font-size: 28px;
}

.item-icon{display: inline-block; }

.newsAuthor{ flex: 1; position: relative; }
.author-content { position: sticky; top:  120px; }

.newsAuthor h4{ font-size: 18px; font-weight: 600; color: black; }

.author-img{ border: solid 2px var(--primary-color); 
    border-radius: 50%; 
    overflow: hidden;
    height: 63px;
    width: 63px;
}
.author-info{ display: flex; gap: 12px;}
.author-details {display: flex; flex-direction: column; flex: 1;}
.author-details strong{font-size: 18px; font-weight: 600;}
.author-details span { color: #707070; font-size: 13px;}

.Logistics-section.blog-section{
    margin-bottom: 100px;
}

.Logistics-section.blog-section .section-head{margin-bottom: 50px;}

.Logistics-section.blog-section h2{
    font-size: 38px;
}

.Logistics-section.blog-section .section-head p{
    font-size: 17px;
    font-weight: normal;
}


/* Trending Section  */

.Trending-section{
    margin-bottom: 60px;
}

.Trending-section .section-head{
    margin-bottom: 20px;
}

/* .Trending-section .solution-item::before{
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    z-index: 1;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
} */

.Trending-section .solution-item .hover-text{
    z-index: 2;
}

/* case Studies Page  */

.caseStudies-section{
    padding: 70px 0 0;
}

.caseStudies-section .section-head{margin-bottom: 50px;}

.caseStudies-section h1{font-size: 58px; 
    font-weight: 600;
    color: black;
    line-height: 1;
}

.caseStudies-section .section-head p{
    font-weight: normal;
    font-size: 14px;
}

.caseStudies-wrapper .topBar{
    border-bottom: solid 1px #E1E1E1;
    padding:  50px 0;
    text-align: center;
}

.custom-filter-wrapper {
  position: relative;
  display: inline-block;
  width: 250px;
    background-color: #F9FAFB;
    border-radius: 12px;
}

.custom-filter-wrapper .custom-filter {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  border: 0 none;
  
    position: relative;
    z-index: 2;
    padding: 30px 20px 20px;
    background-color: transparent;
    font-size: 18px;
    color: var(--primary-color);

}

.custom-filter-wrapper .custom-filter:focus {
  outline: none;
  border-color: #007BFF;
}

/* Custom arrow */
.custom-filter-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #333;
    height: 24px;
    width: 24px;
  background-image: url(../images/custom-filter-icon.svg);
  background-repeat: no-repeat;
  background-position: center center ;
  background-size: 20px;

}

.custom-filter-wrapper > span{
    position: absolute;
    z-index: 1;
    padding:  10px 20px;
    color: #707070;
    font-size: 15px;
}

.caseStudies-grid{display: flex;
    gap: 40px;
    position: relative;
    padding: 60px 0;
    flex-wrap: wrap;
}

.caseStudies-grid::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #E1E1E1;
    left: 50%;
    top: 0;
}

.caseStudies-grid .grid-col{
    width: calc(50% - 20px);
    min-width: 320px;
}


.caseStudies-grid .grid-item{
    border-bottom: solid 1px  #E1E1E1;
    margin-bottom: 20px;
}

.caseStudies-grid .grid-item .item-img{ 
    margin-bottom: 20px;
 }

 .caseStudies-grid .grid-item .item-img img{border-radius: 16px; 
    display: block;
}

.caseStudies-grid .grid-item small{
    font-size: 14px;
    display: block;
}

.caseStudies-grid .grid-item h3{
    font-size: 32px;
    color: black;
    background: url(../images/right-arrow-blue.svg) right top no-repeat ;
}

.caseStudies-grid .grid-item p{
    font-size: 18px;
}


.gridCol-title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.gridCol-title .projectsNumbers{
    font-size: 45px;
    font-size: 600;
    padding-right: 20px;
    color: var(--primary-color);
}
.gridCol-title .projectsTitle{
    font-size: 22px;
    line-height: 1;
    font-size: 600;
    color: var(--primary-color);
    padding-left: 20px;
    border-left: solid 1px #707070;
}



/* caseStudies Inside */

/* banner start  */

.caseStudiesInside-Banner{
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    height: calc(100vh - 96px);
    min-height: 480px;
}

.caseStudiesInside-Banner .container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.caseStudiesInside-Banner .container *{
    color: var(--white);
}

.caseStudiesInside-Banner .banner-head{
    display: flex;
    gap: 30px;
}

.caseStudiesInside-Banner .banner-head small{
    display: block;
    margin-bottom: 8px ;
}
.caseStudiesInside-Banner .banner-head h1{
    font-size: 32px;
    margin-bottom: 8px;
}

.caseStudiesInside-Banner .banner-head p{
    max-width: 760px;
}

.caseStudiesInside-Banner .banner-bottom{
    display: flex;
    align-items: flex-end;
    gap: 7%;
    font-size: 18px;
}

.caseStudiesInside-Banner .banner-bottom strong{
    font-size: 38px;
}

.caseStudiesInside-Banner .banner-bottomLeft{
    width: 44%;
}

.caseStudiesInside-Banner .banner-bottomLeft p{
    max-width: 460px;
    margin: 0;
}

.caseStudiesInside-Banner .banner-bottomCenter div{
    display: flex;
    flex-direction: column;
    padding: 0 0 0 12px;
    border-left: solid 3px var(--white);
}

.caseStudiesInside-Banner .banner-bottomRight{
    display: flex;
    flex-direction: column;
    margin-right: 5%;
}

.arrow-blackCircle{
    display: block;
    height: 41px;
    width: 41px;
    border-radius: 50%;
    background-color: var(--black);
}

/* banner end  */

/* project details section  */

.project-details-section{
    padding: 70px;
}

.project-details-section .container{
    display: flex;
    gap: 40px;
    border-top: solid 1px  #E1E1E1;
    position: relative;
}

.project-details-section .container::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background-color: #E1E1E1;
}

.project-details-section .container .left-content{
    width: calc(50% - 20px);
    padding: 40px 0;
}

.item-tagLine{display: flex; 
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.item-tagLine::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.content-Item{margin-bottom: 60px;}
.content-Item:last-child{margin-bottom: 0px;}

.project-details-section .container .right-content{
    flex: 1;
    padding: 40px 0;
}

.project-details-section .right-content strong{
    font-weight: normal;
    color: var(--primary-color);
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
}

.inshort-info{display: flex; 
    gap: 20px; 
    border-bottom: solid 1px  #E1E1E1; 
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.inshort-info .info-item{
    display: flex;
    flex-direction: column;
}

.inshort-info .info-item span{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14.5px;
}

.inshort-info .info-item span img{
    height: 18px;
    width: auto;
}

.services-info{
    border-bottom: solid 1px  #E1E1E1; 
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.services-info a{font-size: 16px;
text-transform: capitalize;}

.info-content ul {display: flex; gap: 10px; flex-wrap: wrap;} 
.info-content ul li{font-size: 16px;}
.info-content ul li::before{ 
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--black);
    margin-right: 8px;
}


/* inside Tabs section */

.insideTabs-section{
    padding: 70px 0;
}

.insideTabs-section .container{
    display: flex;
    gap:  40px;
    min-height: 200px;
}

.insideTabs-section .container > *{
    flex: 1;
}


.insideTabs-section h2{
    font-size: 47px;
    color: var(--black);
    font-weight: 600;
}

.insideTabs-section .tab-list > ul{display: flex;
    flex-direction: column;
    gap: 10px;
}

.insideTabs-section .tab-list > ul > li.active{
    border-left: solid 3px var(--primary-color) ;
    padding-left: 10px;
}

.insideTabs-section .tab-content {
    padding-top: 20px;
}

.insideTabs-section .tab-content h4{
    font-size: 21px;
    font-weight: 600;
    color: var(--black);
}

.insideTabs-section .tab-content li{
    position: relative;
    padding-left: 40px;
    max-width: 500px;
    margin-bottom: 12px;
}

.insideTabs-section .tab-content li:last-child{
    margin-bottom: 0;
}

.insideTabs-section .tab-content li::before{
    content: "";
    width: 28px;
    height: 28px;
    background: url(../images/icon-tick.svg) center center no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.suppourt-section{padding: 70px 0 100px;}

.suppourt-section .container{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.suppourt-section strong{
    font-size: 58px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}


/* industries page  */

div.iti{
    display: block;
}
.phone {
  width: 100%;
  font-size: 16px;
}

.defaultField,
.phone{
    border: #F3F3F3;
    background-color: #F3F3F3 ;
    border-radius: 15px;
    padding: 20px;
    display: block;
    width: 100%;
    font-size: 16px;
}

.industries-section .left-sidebar {
    width: 390px;
    position: relative;
}

.industries-section .left-sidebar .bookaCallForm-wrapper{
    position: sticky;
    top: 100px;
}

.industries-section .left-sidebar p{ font-size: 16px;}

.bookaCallForm [for="addInfo"]{
    font-size: 13px;
    color: #919191;
}

.form-row{margin-bottom: 18px;}
.check-row{display: flex; 
    gap: 10px;
    line-height: 1.2;
    align-items: flex-start;
}

.fullWidth{
    width: 100%;
}

.big-btn{
    padding: 18px;
    border-radius: 15px;
}


.industries-section .serviceWeProvide-content{
    padding: 0 0;
}

.industries-section .serviceWeProvide-content .container{
    width: 100%;
    gap: 7%;
}

.industries-section .service-info{
    flex-direction: column;
}

.industries-section .service-category-item h2{
    border-bottom: solid 3px #707070;
    padding: 30px 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-category-item{
    padding-bottom: 50px;
    border-bottom: 1px solid #CFCFCF;
}

.service-category-containt{
    gap: 6%;
}

.service-category-item:last-child{
    border-bottom: 0;
}


.Trending-section .section-head.no-border{
    border: 0;
    margin-bottom: 0;
}

.pr-1{ padding-right: 10%; }
.pr-15{ padding-right: 15%; }
.pr-2{ padding-right: 20%; }

/* logistic Page */

.logisticPage .serviceWeProvide .section-head h2{
    font-size: 58px;
}

.logisticPage .serviceWeProvide .section-head p{
    font-size: 18px;
    font-weight: normal;
}

.logisticPage .Trending-section {
    margin-bottom: 0px;
}

.Logistics-section.blog-section.centerAligned{padding: 70px 0;
    margin: 0;
}

.Logistics-section.blog-section.centerAligned .section-head{
    text-align: center;
    padding-bottom: 20px;
    border-bottom: solid 1px var(--light-border-color);
}

.Logistics-section.blog-section.centerAligned .section-head h2{
    font-size: 40px;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 600;
    line-height: 1.4;
}
.Logistics-section.blog-section.centerAligned .section-head p{
    font-size: 18px;
    max-width: 1000px;
    margin: 0 auto 10px;
}

.Logistics-section.blog-section.centerAligned .accordion-header{font-size: 24px;}


.logisticPage .appDevApproch-tabs{
    max-width: 1200px;
}

.logisticPage .appDevApproch-tabs .section-head p{
    font-size: 18px;
    font-weight: normal;
}

.logisticBlock .tabsContent-wrapper .img-wrapper{
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
}

.logisticBlock .appDevApproch-tabs .tabsContent-wrapper .accordion-content p{
    color: black;
}


.section-head.noBorder{
    border: 0 none !important;
}

.Logistics-section.blog-section.centerAligned.secondBlock .section-head.noBorder h2{
    font-size: 39px;
    line-height: 1.2;
}

.Logistics-section.blog-section.centerAligned.secondBlock .section-head.noBorder p{
    max-width: 680px;
}

.Logistics-section.blog-section.centerAligned.secondBlock .serviceWeProvide-content{
    width: 80%;
    margin: auto;
}

.blue-accordion.plan-bg .accordion-item{
    border-bottom: solid 1px var(--light-border-color);
    border-radius: 0;
    background-color: var(--transparent-color);
}
.blue-accordion.plan-bg .accordion-header{
    padding: 0 0 12px 0;
}
.blue-accordion.plan-bg .accordion-header::after{top: 12px;}
.blue-accordion.plan-bg .accordion-item .accordion-content{
    padding-left: 0;
}

.solutions-grid.two-cols{
        grid-template-columns: repeat(2, minmax(49%, 1fr));
        gap: 20px;
}

.retailTechnologies-section.Trending-section {
    padding: 70px 0;
}

.retailTechnologies-section.Trending-section .section-head{
    padding-bottom: 20px;
}

.ourExpert-section .section-head{
    margin-bottom: 50px;
}

.ourExpert-section .section-head h2,
.ourExpert-section h3{
    color: white;
    font-weight: 600;
}

.ourExpert-section .section-head h2{
    font-size: 37px;
    text-align: center;
    margin-bottom: 8px;
}

.ourExpert-section .section-head p{
    text-align: center;
    font-weight: normal;
    max-width: 660px;
    margin: auto;
    font-size: 18px;
}

.fourCols-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.fourCols-container .col-item{
    border: solid 1px var(--white);
    border-radius: 18px;
    padding: 40px 30px;
}

.fourCols-container .col-item .item-icon{
    margin-bottom: 20px;
}

.fourCols-container .col-item h3{
    font-size: 22px;
    margin-bottom: 20px;
}

.fourCols-container .col-item p{
    font-size: 18px;
    line-height: 1.7;
}

.technologiesWeOffer {
    padding: 70px 0;
}
.technologiesWeOffer .section-head{
    max-width: 1100px;
    margin: 0 auto 40px;
    text-align: center;
}

.technologiesWeOffer .section-head h2{
    font-size: 50px;
    font-weight: 600;
}

.technologiesWeOffer .section-head p{
    font-size: 18px;
    font-weight: normal;
    width: 90%;
    margin: auto;
}

.technologiesWeOffer .section-content{
    display: flex;
    width: 1100px;
    margin: auto;
    gap: 5%;
}

/* healthCare Page */

.solutions-grid.fourCols{
    grid-template-columns: repeat(auto-fit, minmax(32.5%, 1fr));
}

.healthcareCards .item-head h3{
    font-size: 32px;
    font-weight: 600;
}

.serviceWeProvide-content .healthcareCards.devStratrgy-grid {
    width: 50% !important;
}

.healthcareCards.devStratrgy-grid .grid-item{margin: 0;}
.healthcareCards.devStratrgy-grid .grid-item p{
    font-size: 14px;
}

.healthCarePage .serviceWeProvide-content{
    max-width: 1320px;
    margin: auto;
}

.healthCarePage .serviceWeProvide-content .imgWrapper{
    padding-left: 4%;
    position: relative;
}

.healthCarePage .serviceWeProvide-content .imgWrapper img{
    position: sticky;
    top: 100px;
}

/* health Care Apps Section */

.healthCareApps-section{
    padding: 70px 0;
}

.healthCareApps-section .section-head{
    padding-bottom: 20px;
    border-bottom: solid 1px var(--light-border-color);
    margin-bottom: 0;
}

.healthCareApps-tabs{
    display: flex;
    gap: 40px;
}

.healthCareApps-tabs{}

.healthCareApps-tabs .tab-list{
    width: 20%;
    padding: 40px 20px 40px 0;
    border-right: solid 1px var(--light-border-color);
}

.healthCareApps-tabs .tab-list ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.healthCareApps-tabs .tab-list li{
    padding: 0px 10px;
    border-left: solid 3px var(--transparent-color);
    font-size: 18px;
}
.healthCareApps-tabs .tab-list li.active{ 
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding-left: 10px;
}

.healthCareApps-tabs .tab-content-wrapper{
    padding: 40px 0;
    flex: 1;
}

.healthCareApps-tabs .two-col-grid{
    width: 100%;
}

.healthcareCards.devStratrgy-grid .grid-item h3{
    font-size: 30px;
}


.section-content.threeCols{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.ai-industryPage .section-content.threeCols{
    max-width: 1200px;
    margin: auto;
}

.ai-industryPage .section-content.threeCols .item-head strong{
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
}
.ai-industryPage .section-content.threeCols h3{
    font-size: 28px;
    font-weight: 600;
}

.ai-industryPage .section-content.threeCols p{
    font-size: 18px;
}

.mapBG{
    background: url(../images/worldMap.jpg) center 120px no-repeat;
    background-attachment: fixed;
}

.ai-industryPage .blue-accordion.plan-bg .accordion-header::after{
    top: 6px;
}

.blockchainDev-section .head-icon{ margin-bottom: 30px; display: inline-block;}
.blockchainDev-section .section-head h2{font-size: 40px;}
.blockchainDev-section .section-head p{font-size: 20px; font-weight: normal;}

.blockchainDev-section .becomePartner-steps.fourCols{
    max-width: 1400px;
}

.blockchainDev-section .becomePartner-steps .partner-step .sn{ margin-bottom: 30px;}

.businessSolutions-section.blockchainServices .section-head h2{
    font-size: 50px;
    margin-bottom: 20px;
}

/* contact page  */

.cotactTop-section{
    padding: 70px 0;
}

.cotactTop-section .container{
    display: flex;
    justify-content: space-between;
    gap: 5%;
    max-width: 86%;
}

.cotactTop-section .container .left-side{
    max-width: 500px;
}

.cotactTop-section h1{
    font-size: 56px;
    font-weight: 700;
    color: black;
}

.cotactTop-section p{
    font-size: 18px;
}

.cotactTop-section .container .right-side{
    /* max-width: 680px; */
    margin-right: 4%;
    width: 46%;
}

.formTab-section {
    padding: 70px 0;
}

.formTab-section .container .tab-wrapper{
    display: flex;
    gap: 40px;
    border-top: 1px solid #CFCFCF;
}

.formTab-section .tab-list > ul {
    flex-direction: column;
}

.formTab-section .tab-list{
    width: 20%;
    min-width: 250px;
    padding: 40px 50px 0 0;
    border-right: 1px solid #CFCFCF;
}

.formTab-section .tab-list li{
    font-size: 18px;
    padding: 0 0 0 16px;
    margin-bottom: 8px;
    border-left: solid 3px var(--transparent-color);
}

.formTab-section .tab-list li.active{
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.formTab-section .tab-content-wrapper{
    padding: 40px 0 0 0;
    flex: 1;
}

.formTab-section .tab-content-wrapper h2{
    font-size: 60px;
    font-weight: 700;
    color: black;
    max-width: 620px;
    margin-bottom: 20px;
}

.formTab-section .tab-content-wrapper .formWrapper{
    width: 85%;
}

.formWrapper .form-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.formWrapper .form-row.bottom-row{
    display: flex;
    justify-content: space-between;
}

.formWrapper .form-row .form-col .input-field{
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background-color: #F3F3F3;
    border: solid 1px #F3F3F3;
    font-size: 17px;
    color: #6E6E6E;
}

.formWrapper .form-row .btn{
    padding: 12px 20px;
    font-size: 17px;
    white-space: nowrap;
    font-weight: normal;
    text-transform: capitalize;
}

.map-section .container{
    border-radius: 25px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.map-section .container img{
    display: block; 
    position: relative; 
    z-index: 1;
            min-height: 400px;
        object-fit: cover;
        object-position: right center;
}

.map-section .contactMap{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 320px;
}

.map-section .contactMap h2{
    font-size: 45px;
    color: var(--white);
}

.map-section .contactMap p{
    color: var(--white);
}


.bottom-line{
    padding: 80px 0;
}

.bottom-line .container{
    width: 80%;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.bottom-line .container h2{
    font-size: 48px;
    color: var(--black);
}

.bottom-line .container h2 b{
    color: var(--primary-color);
}


/* career page  */

.careerSlider-section {
    padding: 70px 0;
}

.careerSlider-section .section-head h2 {
    color: var(--black);
    font-size: 38px;
    max-width: 590px;
    margin-bottom: 40px;
}

.careerSlider-wrapper .careerSlider{width: 80%;}

.careerSlider .slideItem{
    display: flex;
}

.careerSlider .slideItem .slideItem-img{
    width: 60%;
}
.careerSlider .slideItem .slideItem-img img{
    height: 100%;
    object-fit: cover;
}

.careerSlider .slideItem .slideItem-content{
    width: 40%;
    min-width: 280px;
    padding: 25px;
}

.careerSlider .slideItem .slideItem-content h3{
    font-size: 33px;
}
.careerSlider .slideItem .slideItem-content p{
    font-size: 16px;
}

.careerSlider-section {
    overflow: hidden;
}
.careerSlider .slick-list{
    overflow: visible !important;
}

.careerSlider-wrapper .custom-controls{
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    margin-top: 30px;
}

.careerSlider-wrapper .custom-controls .slick-arrow{
    height: 38px;
    width: 38px;
    background-color: var(--primary-color);
    border: solid 1px var(--primary-color) ;
    font-size: 0;
    position: relative;
}

.careerSlider-wrapper .custom-controls .slick-arrow::after{
    content: "";
    display: block;
    height: 13px;
    width: 13px;
    border: solid 2px var(--white);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    position: absolute;
    top: 11px;
    left: 7px;
}

.careerSlider-wrapper .custom-controls .slick-prev.slick-arrow::after{
    border-width: 0 0 2px 2px;
    left: 14px;
}

.careerSlider-wrapper .custom-controls .slick-arrow.slick-disabled{
    background-color: var(--light-border-color);
    cursor: default;
    border-color: var(--light-border-color);
}

.careerSlider-wrapper .custom-controls .slide-counter{width: 80px;
    text-align: center;
    line-height: 38px;
    font-size: 22px;
    font-weight: normal;
}

.career-connect-section .section-head h2{
    font-size: 52px;
}

.career-connect-section .section-head p {
    font-size: 18px;
}

.becomePart-section{
    padding: 70px 0;
}


.career-connect-section .Trending-section{
    margin-bottom: 0;
}

.becomePart-section .section-head{
    text-align: center;
    margin-bottom: 50px;
}

.becomePart-section .section-head h2{
    color: var(--black);
    font-size: 62px;
    margin-bottom: 30px;
}

.becomePart-section .section-head h2 b{
    color: var(--primary-color);
}

.becomePart-section .section-head p{
    font-size: 16px;
    max-width: 950px;
    margin: auto;
}

.becomePart-section .becomePart-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

.becomePart-section .becomePart-grid::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    background-color: var(--light-border-color);
}

.becomePart-section .becomePart-grid .grid-item{
    text-align: center;
    border-top: solid 1px var(--light-border-color);
    padding: 40px 60px;
}

.becomePart-section .becomePart-grid .grid-item .item-icon{
    margin-bottom: 20px;
}

.becomePart-section .becomePart-grid .grid-item h3{
    color: var(--black);
    font-size: 40px;
}

.becomePart-section .becomePart-grid .grid-item p{
    color: #575757;
    font-size: 20px;
    max-width: 613px;
    margin: auto;
}

/* About Us page  */

.aboutSlider .page-banner{display: flex !important;}

.aboutSlider-wrapper .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 25px;
    width: 50px;
    height: 50px;
    background: url(../images/main-arrow.svg) center center no-repeat;
    background-size: contain;
    font-size: 0;
    border: 0;
    left: auto;
    right: 20px;
    z-index: 10;
}

.aboutSlider-wrapper .slick-arrow.slick-prev {
    left: 20px;
    right: auto;
    transform: rotate(-180deg) translateY(50%);
}

.aboutSlider-wrapper .slick-dots{
    display: flex;
    gap: 20px;
    width: 90%;
    margin: 0;
    left: 5%;
    position: absolute;
    bottom: 40px;
    padding: 0 20px;
}
.aboutSlider-wrapper .slick-dots > *{flex: 1;}

.aboutSlider-wrapper .slick-dots li button{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 0 none;
    border-radius: 10px;
    font-size: 0;
    height: 9px;
    position: relative;
    overflow: hidden;
}

.aboutSlider-wrapper .slick-dots li button::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    transition: width 2s ease 0.1s;
    opacity: 0;
}

.aboutSlider-wrapper .slick-dots li.slick-active button::before{
    opacity: 1;
    width: 100%;
}

.fixed-header .page-banner{
    height: calc(100vh - 81px);
}

.ourJouney-tabs .tab-wrapper .tabList-wrapper{border-bottom: solid 1px var(--light-border-color);}
.ourJouney-tabs .tab-wrapper .tab-list ul {gap: 30px; justify-content: space-between;}
.ourJouney-tabs .tab-wrapper .tab-list ul li{
    font-size: 18px;
    color: #0078C891;
    padding: 20px;
    border-top: solid 3px var(--transparent-color);
    position: relative;
    overflow: hidden;
    min-width: 80px;
    text-align: center;
}

.ourJouney-tabs .tab-wrapper .tab-list ul li.active{
    border-color: var(--primary-color);
    color:  var(--primary-color);
    font-weight: bold;
}

.ourJouney-tabs .tab-wrapper .tab-list ul li.active::after{
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    transform: rotate(45deg) translateX(-50%);
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
}

.ourJouney-tabs .tab-content{
    padding: 40px 0;
}

.ourJouney-tabs .tab-content .content-head{margin-bottom: 40px;}

.ourJouney-tabs .tab-content .content-head h2{
    font-size: 45px;
    font-weight: bold;
}

.ourJouney-tabs .tab-content .content-head p{font-size: 20px;}

.ourJouney-tabs .content-main{display: flex; gap: 30px; align-items: center;}

.ourJouney-tabs .content-main .image-wrapper{
    width: 44%;
}

.ourJouney-tabs .content-main .image-wrapper img{border-radius: 20px;}

.ourJouney-tabs .content-wraper{flex: 1;}

.ourJouney-tabs .content-main h3{
    font-size: 38px;
}

.ourJouney-tabs .content-main .content-wraper > strong{
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
}

.ourJouney-tabs .content-main .content-wraper p{font-size: 16px;}


/* The Leaders */

.theLeaders-section{
    padding: 70px 0;
}

.theLeaders-section .section-head{
    text-align: center;
    margin-bottom: 40px;
}

.theLeaders-section .section-head h2{
    font-size: 60px;
    margin-bottom: 20px;
}

.theLeaders-section .section-head p{
    font-size: 17px;
}

/* leaders list */

.leaders-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.leaders-list .leader-img{
    margin-bottom: 20px;
}

.leaders-list .leader-img img{ 
    display: block;
    width: 100%;
    border-radius: 16px;
}

.leaders-list .leader-name{
    display: block;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.leaders-list .leader-profile{
    display: block;
    font-size: 17px;
    color: #717171;
}

.creatingInnovative-section {
    padding: 0 0 70px 0;
}

.creatingInnovative-section .section-head{
    margin-bottom: 50px;
    max-width: 900px;
}

.creatingInnovative-section .section-content .two-cols{
    display: flex;
    gap: 30px;
}

.creatingInnovative-section  h3{
    font-size: 38px;
    margin-bottom: 20px;
}
.creatingInnovative-section .two-cols p{
    font-size: 26px;
    font-weight: 600;
    color: var(--black);
}

.helpingStartups-section{
    padding: 70px 0;
}

.helpingStartups-section .two-cols-bordered-card{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45% , 1fr));
    gap: 30px;
}

.helpingStartups-section .two-cols-bordered-card > *{
    border: solid 1px var(--light-border-color);
    border-radius: 16px;
    padding: 40px;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.helpingStartups-section .two-cols-bordered-card h3{font-size: 38px;
    max-width: 430px;
}

.testimonial-section{
    padding: 70px 0;
    background: var(--background-light);
}

.testimonial-section .section-head{
    margin-bottom: 40px;
}

.testimonial-section .section-head h2{ 
    font-size: 52px;
    font-weight: 600;
    max-width: 617px;
}

.testimonial-section  .two-cols-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45% , 1fr));
    gap: 30px;
}

.testimonial-section  .two-cols-cards > *{
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #ECECEC;
    padding: 25px;
}

.two-cols-cards p{
    font-size: 20px;
    margin-bottom: 25px;
}

.two-cols-cards .authorDetils{display: flex; 
    gap: 30px;
    border-bottom: solid 1px var(--light-border-color);
    padding-bottom: 20px;
    margin-bottom: 14px;
}

.two-cols-cards .authorDetils .authorImg{width: 204px; 
    height: 204px; 
    overflow: hidden; 
    border-radius: 50%;
}

.two-cols-cards .authorinfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.two-cols-cards .authorinfo .authorName{
    font-size: 26px;
    color: var(--primary-color);
}

.two-cols-cards .authorinfo .authorProfile{
    font-size: 20px;
}

.two-cols-cards .bottom-links{
    display: flex;
    gap: 30px;
}
.two-cols-cards .bottom-links a{
    flex: 1;
    font-size: 26px;
    font-weight: 600;
    display: flex;
    gap: 20px;
    align-items: center;
}

.two-cols-cards .bottom-links a:hover{
    color: var(--primary-color);
}

/* Homepage update  */


.page-banner.video-container{
    position: relative;
    display: block;
    background-color: black;
}

.page-banner.video-container .bannerVideo{
    position: absolute;
    z-index: 1;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
    max-width: 100% ;
    max-height: 100%;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.page-banner.video-container .banner-Content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;

    display: flex;
    align-items: center;
    text-align: center;
}


/* booking appointment popup */

 .modal.appointment-modal {
      display: none;
      position: fixed;
      top: 0; left: 0; right:0; bottom:0;
      background: rgba(0,0,0,0.8);
      z-index: 999;
      justify-content: center;
      align-items: center;
    }

 .modal.appointment-modal   .modal-content {
      background: #fff;
      color: #333;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 1065px;
      position: relative;
    }

.modal.appointment-modal .close {
      position: absolute;
      top: 15px;
      right: 20px;
      cursor: pointer;
      font-size: 20px;
    }

.modal.appointment-modal .step {
      display: none;
    }

.modal.appointment-modal .step.active {
      display: block;
    }

    .modal.appointment-modal .modal-header {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .modal.appointment-modal .time-slots button {
      margin: 5px;
      padding: 10px 15px;
      border: 1px solid #007bff;
      border-radius: 5px;
      background: none;
      cursor: pointer;
    }

    .modal.appointment-modal .time-slots button.selected {
      background: #007bff;
      color: #fff;
    }

    .modal.appointment-modal .modal-threeCols{
        display: flex;
        gap: 30px;
    }

.modal.appointment-modal .modal-threeCols .left-col{
    border-right: solid 1px var(--light-border-color);
    width: 32%
}
.modal.appointment-modal .modal-threeCols .logo-wrapper{
    border-bottom: solid 1px var(--light-border-color);
    padding: 20px 30px 10px 0 ;
}

.modal.appointment-modal .modal-threeCols .left-col .left-content{
        padding: 20px 20px 10px 0 ;
}

.modal.appointment-modal .modal-threeCols .left-col p{
    font-size: 14px;
    line-height: 1.3;
}

.modal.appointment-modal .infoList li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal.appointment-modal .modal-threeCols .center-col{
    flex: 1;
}
.modal.appointment-modal .modal-threeCols .center-col h4{
    text-align: center;
    font-size: 24px;
}

.modal.appointment-modal .button-next-month,
.modal.appointment-modal .button-previous-month{
    height: 37px;
    width: 37px;
    border-radius: 25px !important;
    background:  var(--primary-color) !important;
    cursor: pointer !important;
    position: relative;
}

.modal.appointment-modal .button-next-month svg,
.modal.appointment-modal .button-previous-month svg {
    opacity: 0 !important;
}

.modal.appointment-modal .button-next-month::before,
.modal.appointment-modal .button-previous-month::before {
    content: "";
    position: absolute;
    height: 37px;
    width: 37px;
    background:  url(../images/calenar-arrow.svg) center center no-repeat !important;
    background-size: 8px auto !important;
    left: 1px;
    top: 0;
}

.modal.appointment-modal .button-previous-month::before {
    transform: rotate(-180deg);
    left: -1px;
}

.modal.appointment-modal .litepicker .container__months .month-item-header div{
    font-size: 14px;
    color: var(--primary-color);
}

.modal.appointment-modal #inlineCalendar{
    margin-bottom: 20px;
}



.modal.appointment-modal .timeZone strong{
    display: block;
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 4px;
}

.modal.appointment-modal .timeZone > div{
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal.appointment-modal .modal-threeCols .right-col {
    padding-top: 30px;
    width: 25%;
    min-width: 200px;
}

.modal.appointment-modal .modal-threeCols .right-col.right-logo{
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.modal.appointment-modal #selectedDateText{
    font-size: 14px;
    margin-bottom: 12px;
}

.modal.appointment-modal .time-slots{
    margin-bottom: 20px;
}

.modal.appointment-modal .left-align{text-align: left !important;}

.modal.appointment-modal #appointmentForm .formRow{
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal.appointment-modal #appointmentForm .formRow.buttonSet{
    flex-direction: initial;
    justify-content: center;
}

.modal.appointment-modal #appointmentForm .formRow.buttonSet button{
    white-space: nowrap;
}

.default-field{
    border: solid 1px var(--light-border-color);
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 5px;
    font-size: 15px;
}

label em{
    color: red;
}

.modal.appointment-modal .step3 .modal-threeCols .logo-wrapper{
    border-bottom: 0;
}


.iti--separate-dial-code .iti__selected-flag{
    background-color: var(--transparent-color) !important;
}

/* .litepicker .container__days{gap: 6px;}
.litepicker .container__days .day-item.is-start-date.is-end-date,
.litepicker .container__days .day-item{height: 42px; width: 42px !important; border-radius: 25px; line-height: 32px;} */

/* Responsive --------------- */

@media (min-width: 1024.9px) {
    .vertical-tabs.tab-list ul{
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .appDevApproch-tabs .tabsNav{ 
        justify-content: center;
    }
}

@media (max-width: 1024.9px) {


/* Mobile nav  */

.header{ background: var(--header-scrolled-bg); box-shadow: var(--box-shadow); }
.header .container {padding: 8px 20px;}
.header *{color: var(--black);}
.header #Group_231 path { fill: var(--secondary-color); }
.header .custom-select { background-image: url(../images/arrow-down.png);}

.header .nav, .header-links{gap: 12px;}

.header .logo svg{
    height: 34px !important;
}

    .nav-list {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: calc(100vh - 56px);
        background: var(--white);
        flex-direction: column;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow: auto;
        padding: 20px;
    }

    body.active{
        overflow: hidden;
    }
    .nav-list.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-list li a{display: block;
        border-bottom: solid 1px  var(--light-border-color);
        font-weight: 600;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        display: block;
    }

    .nav-list .dropdown li a { font-weight: normal;}

    .nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
        display: block;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1000;
    }


    .container { max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px; 
        padding-right: 20px;}


    /* case studies  */

    .caseStudies-grid::after{
        display: none;
    }

    .caseStudies-grid{flex-direction: column;}
    .caseStudies-grid > *{width: 100% !important;}

    .caseStudies-grid > .grid-col:first-child{
        order: 2;
    }

    .benefits-section .container{
        flex-direction: column;
    }
    .benefits-section .container > *{
        width: 100%;
    }

    .crmHelps-section .section-content{flex-direction: column; gap: 20px;}
    .crmHelps-section .section-content > *{width: 100%;}

    .whyChooseMD-section .tab-content-wrapper .tab-content {
        margin-bottom: 30px;
    }

    .whyChoose-tabs{
        flex-direction: column;
    }
    .whyChoose-tabs > *{
        width: 100% !important;
    }
    .whyChoose-tabs .tab-list ul {
        flex-direction: initial;
        white-space: nowrap;
        gap: 20px;
    }

    .whyChoose-tabs .tab-list ul li{
        white-space: normal;
        min-width: 280px;
    }

    .becomePartner-steps{
        flex-direction: column;
        gap: 30px;
    }
    .partner-step::after{display: none;}

    .earning-calculator{
        flex-direction: column;
    }

    .earning-calculator .calculator {
        width: 100%;
    }

    /* News  */

    .newsTop-section > .container{flex-direction: column; gap: 30px;}
    .newsTop-section > .container > *{width: 100%;}
    .newsTop-section > .container .newsinfo{order: 2;}

    .solutions-grid{
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .Logistics-section.blog-section .serviceWeProvide-content > *{width: 100%;}

    .Logistics-section.blog-section .serviceWeProvide-content{
        flex-direction: column;
        gap: 30px;
    }

    /* case studies  Inside */

    .project-details-section .container{
        flex-direction: column;
        gap: 30px;
    }
    .project-details-section .container::before{display: none;}
    .project-details-section .container > *{ width: 100% !important;}

    .insideTabs-section .container{
        flex-direction: column;
    }

    .insideTabs-section .tab-list > ul {
        flex-direction: initial;
        padding-bottom: 20px;
    }

    .insideTabs-section .tab-list > ul > li {
        padding: 8px 15px;
        border-bottom: solid 1px #E1E1E1;
    }

    .insideTabs-section .tab-list > ul > li.active {
        border-left: 0 none ;
        border-width: 3px;
        border-color: var(--primary-color);
    }

    .suppourt-section strong {
        font-size: 45px;
        line-height: 1.3;
    }

    .industries-section .serviceWeProvide-content .container {
        flex-direction: column;
        gap: 30px;
    }

    .industries-section .serviceWeProvide-content .container > * {
        width: 100%;
    }

    .appDevApproch-tabs.tab-wrapper .tabsContent > .d-flex{
        flex-direction: column;
        align-items: initial;
    }

    .appDevApproch-tabs.tab-wrapper .tabsContent > .d-flex > *{
        width: 100%;
    }

    .logisticBlock .tabsContent-wrapper .img-wrapper img{width: 100%;}

    .logisticBlock .tabsContent-wrapper .col-3{order: 2;}

    .solutions-grid.two-cols{
        grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
        gap: 20px;
    }


    .healthCareApps-tabs{
        flex-direction: column;
        gap: 0;
    }

    .healthCareApps-tabs .tab-list{
        width: 100%;
        border: 0;
        padding-right: 0;
    }

    .healthCareApps-tabs .tab-list ul{
        flex-direction: initial;
        gap: 20px;
    }
    .healthCareApps-tabs .tab-list li{
        border-left: 0px ;
        border-bottom: solid 3px var(--transparent-color);
        padding: 10px 0 !important;
        font-size: 20px;
    }

    .healthCareApps-tabs .tab-list{
        padding-bottom: 0;
    }

    .serviceWeProvide-content .healthcareCards.devStratrgy-grid {
        width: 100% !important;
    }

    /* contact page  */

    .cotactTop-section .container,
    .formTab-section .container .tab-wrapper{
        flex-direction: column;
        gap: 30px;
    }

    .cotactTop-section .container .right-side{
        width: 100%;
    }

    .formTab-section{
        padding-top: 0;
    }

    .formTab-section .tab-list{
        width: 100%;
        padding-right: 0 ;
        border: 0;
        border-bottom: 1px solid #CFCFCF;
        padding-bottom: 20px;
    }

    .formTab-section .tab-list > ul{
        flex-direction: initial;
        gap:  20px;
    }

.formTab-section .tab-list li{
    padding: 0 0 10px;
    border-left: 0;
    border-bottom: solid 3px var(--transparent-color);
}

.formTab-section .tab-list li.active{
    border-color: var(--primary-color);
}

    .formTab-section .tab-content-wrapper {
        padding: 0 0;
    }

    .formTab-section .tab-content-wrapper .formWrapper{width: 100%;}

    .formWrapper .form-row.bottom-row{
        flex-direction: column;
    }

    .map-section .contactMap{
        position: static;
        transform: translateY(0);
        padding: 50px 0 0;
        max-width: 100%;
    }

    .map-section .container img{
        border-radius: 25px;
    }

    .map-section .contactMap h2,
    .map-section .contactMap p{
        color: var(--black);
    }

    .bottom-line .container{
        flex-direction: column;
    }

    .bottom-line .container h2 br{display: none;}

.becomePart-section .becomePart-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.becomePart-section .becomePart-grid::after{
    display: none;
}

.careerSlider-wrapper .careerSlider{width: 100%;}
.careerSlider .slick-list {
    overflow: hidden !important;
}
.careerSlider .slideItem{flex-direction: column;}
.careerSlider .slideItem .slideItem-img,
.careerSlider .slideItem .slideItem-content{
    width: 100%;
}

.career-connect-section .solutions-grid.fourCols
 {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
 }
 

 /* about us  */
.ourJouney-tabs .content-main,
.creatingInnovative-section .section-content .two-cols{
    flex-direction: column;
}

.ourJouney-tabs .content-main > *{width: 100% !important;}

.helpingStartups-section .two-cols-bordered-card,
.testimonial-section .two-cols-cards{
    display: flex;
    flex-direction: column;
}

.helpingStartups-section .two-cols-bordered-card > *{
    min-height: auto;
}


/* homepage update  */

.modal.appointment-modal .modal-content{
    max-height: 70vh;
    display: flex;
    padding: 40px 10px 20px 30px;
}

.modal.appointment-modal .modal-content .step{
    flex: 1;
    overflow: auto;
}

.modal.appointment-modal .modal-threeCols{
    flex-direction: column;
}

.modal.appointment-modal .modal-threeCols > * {width: 100% !important;}

.modal.appointment-modal .modal-threeCols .center-col h4{text-align: left;}

.modal.appointment-modal .modal-threeCols .right-col.right-logo{display: none;}

.modal.appointment-modal .close{
    top: 6px;
    right: 10px;}

}

@media (min-width: 1915px) {

body { font-size:  18px;}

.header .logo svg{height: 55px;}

.nav-item a{font-size: 19px;}

    /* homepage  */

.page-banner .banner-title{ font-size: 50px;}
.page-banner .sub-title strong{ font-size: 26px;}
.page-banner .btn{font-size: 17px;}

.section-head h2 { font-size: 55px; font-weight: bold;}
.section-head p {font-size:  26px; font-weight: normal;}

.why-choose-us-content .stat h3 { font-size: 46px;}
.why-choose-us-content .stat strong {
    font-size: 26px;}

.why-choose-us-content .stat p{font-size: 17px;}

.service-offering-container .tabs button strong{
    font-size: 34px;
}
.service-offering-container .tabs button span{
    font-size: 22px;
}

.service-offering-container .tabs button{
    padding-left: 50px;
}

.service-offering-container .tabs button i{ width: 28px;}

.homePage .solutions.dark-section .section-head .col-5{max-width: 648px;}

.solution-item .hover-text{padding: 50px 30px;}
.solution-item p{padding: 0 30px;}

.solution-item h3{ font-size: 38px;}
.solution-item p{font-size: 26px;}

.solution-item:hover .hover-text p, .solution-item:focus .hover-text p{
        bottom: 130px;
}
.solution-item:hover .hover-text .white-arrow, .solution-item:focus .hover-text .white-arrow{
        bottom: 40px;
}

.industries .section-head .col-5 {
    max-width: 640px;
}

.industries-tabs button{font-size: 24px; font-weight: 500;}

.join-team .section-head h2{font-size: 72px;}

.team-slider .slick-list {
    max-width: 1000px;}

.team-slider .slick-slide .testimonial-content{
    width: 812px;
    padding: 20px 0 0;
}
.team-slider .slick-slide {
    padding-top: 68px;
}
.team-member p{font-size: 22px;}
.team-member h4{
    font-size: 37px;
}

.team-member h4 span{font-size: 20px;}

.worldwide .section-head h2{
    font-size: 62px;
}

.worldwide .section-head p{
    font-size: 20px;
}

.stat-title{font-size: 22px;}
.stat-content h3{font-size: 71px;}
.stat-content p{font-size: 18px;}

.cta{ padding-top: 40px; padding-bottom: 70px;}
.cta h2 {font-size: 48px;}

.cta p {
    max-width: 800px;
    font-size: 24px;}

.cta .btn {
    padding: 10px 20px;
    font-size: 18px;
}

.news h2{ font-size: 42px; }
.news-item p{ font-size: 24px; }
.news-item h4{font-size: 36px;
    max-width: 64%;
}
.footer-links h4{font-size: 18px;}
.copywrite-footer,
.footer-newsLetter form label,
.footer-newsLetter form .btn.btn-white,
.footer-links .linksList li{font-size: 16px;}

.footer-newsLetter form .input-field,
.footer-newsLetter form .btn.btn-white{
    padding: 8px 15px;
}

.header .custom-select,
.header .header-links .btn{font-size: 19px;}

.sm-list a{ max-width: 34px;}


    .tag-line{ font-size:  16px;}

    .join-team .tag-line,
    .service-offering .tag-line,
    .industries .tag-line{ font-size: 22px;}

    .homePage .solutions.dark-section .tag-line.no-dot{ font-size: 26px;}

    /* ui-ux Design page */

    .caseStudy-section .tag-line{font-size: 16px;}

   .caseStudy-item .leftSide strong{
        font-size: 20px;
    }
    .caseStudy-item h3{
        font-size: 46px;
    }

    .caseStudy-item .leftSide p{
        font-size: 18px;
        line-height: 1.8;
    }

    .ourExperience-section .section-head h2{
        font-size: 62px;
    }

    .ourExperience-section .leftSide p{
        font-size: 18px;
    }

    .ourExperience-section .work-item-grid{
        padding-top: 40px;
    }

    .ourExperience-section .work-item-grid h3{
            font-size: 123px;
    }

    .ourExperience-section .work-item-grid p{
        font-size: 35px;
    }


    .SolutionsWeOffer .section-head{
        padding-bottom: 4px;
    }
    .SolutionsWeOffer-content .section-head h2{
        font-size: 62px;
    }

    .SolutionsWeOffer-content .solutions-tabs li{
        font-size: 18px;
    }

    .SolutionsWeOffer-content .solutions-tabs{
        width: 18%;
        padding-top: 50px;
    }
    .SolutionsWeOffer-content .tabsContent-wrapper{
        padding-top: 50px;
    }

    .SolutionsWeOffer-content .solutions-tabsContent .imageWrapper{
        width: 38%;
    }

    .SolutionsWeOffer-content .solutions-tabsContent .imageWrapper img{
        width: 100%;
    }

    .SolutionsWeOffer-content .solutions-tabsContent h3{
        font-size: 35px;
    }

    .SolutionsWeOffer-content .solutions-tabsContent .sub-title{
        font-size: 26px;
    }

    .SolutionsWeOffer-content .solutions-tabsContent .listItem li{
        font-size: 17px;
        gap: 15px;
    }

    .SolutionsWeOffer-content .solutions-tabsContent .listItem li::before{
        height: 14px;
        width: 14px;
    } 


    /* web development page  */

    .serviceWeProvide .section-head{
        align-items: center;
    }

    .serviceWeProvide .section-head .col-6:first-child{width: 43%;}

    .serviceWeProvide .section-head h2{
        font-size: 62px;
    }

    .serviceWeProvide .section-head p{
        font-size: 20px;
        width: 80%;
    }

    .serviceWeProvide-content .col-6:first-child{
        width: 43%;
    }
    .serviceWeProvide-content .col-6:first-child img{
        width: 87%;
        border-radius: 14px;
    }

    .serviceWeProvide-content .accordion-header{ font-size: 25px;
        padding: 18px 46px 18px 18px;
    }

    .serviceWeProvide-content .accordion-header::after{
        width: 30px;
        height: 30px;
        right: 18px;
        top: 20px;
    }

    .serviceWeProvide-content .accordion-content{
        padding-right: 12%;
    }

    .serviceWeProvide-content .accordion-content p{
        font-size: 17px;
    }

    .ourExperience-section.webStratrgy-section .section-head h2{
        font-size: 45px;
    }

    .ourExperience-section.webStratrgy-section > .container{
        gap: 13%;
    }

    .ourExperience-section.webStratrgy-section .leftSide{
        width: 33%;
    }

    .ourExperience-section.webStratrgy-section .devStratrgy-grid{
        width: 84%;
        gap: 30px;
    }

    .ourExperience-section.webStratrgy-section .devStratrgy-grid h3
    { color: var(--black); line-height: 1;
        font-size: 28px;
    }

    .ourExperience-section.webStratrgy-section .devStratrgy-grid .grid-item .item-head .item-icon img{
        width: 45px;
    }
    .ourExperience-section.webStratrgy-section .devStratrgy-grid  p{
        font-size: 14px;line-height: 2;
    }

    .case-study-section.horizontal-case-study .section-head{
        width: 94%;
        margin: 0 auto 60px;
    }

    .case-study-section.horizontal-case-study .section-head p{
        font-size: 18px;
    }

    .case-study-section.horizontal-case-study .custom-carousel-track .slide.active .item-container h4{
        font-size: 22px;
    }

    .ourExperience-section{padding-bottom: 100px;}

    .ourExperience-section .leftSide{
        padding-right: 8%;
    }

    .news{padding-bottom: 40px;}
    .news h2{margin-bottom: 40px;}
    .news-carousel{padding-bottom: 50px;}
    .news-carousel .slick-arrow{left: 65px;}
    .news-carousel .slick-arrow svg{width: 42px; height: 42px;}


    /* footer  */

    .footer-left{
        padding-right: 4%;
    }

    .footer-logo{max-width: 150px;}
    .footer-newsLetter form .input-field{width: 100%; margin-bottom: 10px;}

    .footer-links .footer-linksList:first-child{
        max-width: 210px;
    }
    .footer-links .footer-linksList:nth-child(2){
        max-width: 220px;
    }
    .footer-links .footer-linksList:nth-child(3){
        max-width: 150px;
    }
    

    .footer-linksList .sm-list a {
        max-width: 39px;
    }

    /* App Development page */

    .appDevelopmentPage .info-section .section-head{
        margin-bottom: 40px;
    }
    .appDevelopmentPage .info-section .section-head h2{
        width: 96%;
        font-size: 46px;
        margin-bottom: 20px;
    }
    .appDevelopmentPage .info-section .section-head p{
        font-size: 20px;
    }

    .appDevelopmentPage .info-section .col-6:first-child{ 
        padding-right: 4%;
    }
    .appDevelopmentPage .info-section .col-6:last-child{
        justify-content: center;
    }

    .appDevelopmentPage .info-section .devStratrgy-grid{
        gap: 40px;
    }

    .appDevelopmentPage .info-section .devStratrgy-grid .grid-col{
        gap: 40px;
    }
    
    .appDevelopmentPage .info-section .devStratrgy-grid .grid-item p{font-size: 14px; 
        line-height: 1.7;
    }

    /* apps Benefits section  */

    .appsBenefits-list h4{
        font-size: 24px;
    }

    .circularShape-text .appsBenefits-list{
        gap: 40px;
    }

    .circularShape-text .appsBenefits-list h4{font-size: 24px;}
    
    .hireAppDev-section .section-head h2{ font-size: 44px;}
    .hireAppDev-section p{ font-size: 18px;}

    .hireAppDev-section .col-6:first-child{padding-right: 8%;}

    /* appDevApproch section */

    .appDevApproch-section .section-head{
        max-width: 1000px;
    }

    .appDevApproch-tabs{
        max-width: 1300px;
    }

    .appDevApproch-tabs .tabsNav li{
        font-size: 24px;
    }

    .appDevApproch-tabs .tabsContent-wrapper h4{
        font-size: 33px;
        margin-bottom: 20px;
    }

    .appDevApproch-tabs .tabsContent-wrapper p{
        font-size: 18px;
    }

    .weUnderstand-section.ourExperience-section .rightSide h3.blue-title{
        font-size: 56px;
    }

    .weUnderstand-section.ourExperience-section .twoCol-grid .item-head h4{
        font-size: 24px;
    }

    .weUnderstand-section.ourExperience-section .twoCol-grid .item-content p{
        font-size: 16px;
    }

    .weUnderstand-section.ourExperience-section .rightSide .twoCol-grid{
        width: 80%;
    }


    
.benefits-section > .container .col-6:first-child{
    width: 43%;
}

.benefits-section > .container .col-6:first-child img{
    width: 87%;    
}

.benefits-section .section-head {
    margin-bottom: 60px;
}

.accordion-header {
    font-size: 24px;
}

.accordion-header::after {
    right: 16px;
    top: 20px;
}

.accordion-item .accordion-content {
    padding-right: 24%;
}


.digitalMarketingPage .ourExperience-section.webStratrgy-section .leftSide h2{font-size: 47px;}
.digitalMarketingPage .devStratrgy-grid.number-list .grid-item .sn {font-size: 27px;}
.digitalMarketingPage .devStratrgy-grid.number-list h3{ font-size: 27px;}
.digitalMarketingPage .devStratrgy-grid.number-list p{font-size: 18px;}

.devStratrgy-grid.number-list .item-icon img { width: 100% !important; }
.servicesTailored-section .section-head{ max-width: 1000px; }
.servicesTailored-section .section-head h2{ font-size: 49px; }



.three-col-grid .grid-item h3{
    font-size: 38px;
}
.three-col-grid .grid-item p{
    font-size: 24px;
}

/* crm page  */

.crmHelps-section .section-head h2{font-size: 47px;}

.crmHelps-section .left-content .points-list{
    font-size: 22px;
}

.percentage-list li h3{
    font-size: 56px;
}



.whyChooseMD-section .section-head h2{
    font-size: 62px;
}

.whyChooseMD-section .section-head p{
    font-size: 20px;
}


.whyChoose-tabs .tab-list li h3{
    font-size: 28px;
}

.whyChoose-tabs .tab-list li p{
    font-size: 18px;
}



.becomePartner-steps .partner-step .sn{
    width: 47px;
    height: 47px;
    line-height: 47px;
    font-size: 20px;
}
.becomePartner-steps .partner-step h3{
    font-size: 20px;
}

.becomePartner-steps .partner-step p{
    font-size: 18px;
}




.outcome-cards h3{font-size: 17px;}

.earning-calculator .outcome-cards .card-item p { font-size: 16px;}
.earning-calculator .outcome-cards .card-item .amount-range{font-size: 23px;}

.earning-calculator .graph-container h3{ font-size: 17px; }


.IndustriesWeProvide-section .section-head p {
    font-size: 20px;
    max-width: 1000px;
}


.businessSolutions-section .section-head h2{
    font-size: 56px;
}

.businessSolutions-section .section-head p{
    font-size: 20px;
    max-width: 980px;
}

.four-col-grid{
    grid-template-columns: repeat(auto-fit, minmax( 23%, 1fr ));
}

/* News  */


.newsinfo .section-head small{
    font-size: 18px;
}

.newsinfo .section-head h1{
    font-size: 52px;
}


.heading3{ font-size: 46px;}

.newsinfo-threeCols .cols-item strong{
    font-size: 52px;
}

.newsinfo-fourCols .cols-item strong{
    font-size: 32px;
}

.newsAuthor h4{ font-size: 18px;}

.author-details strong{font-size: 19px;}

.Logistics-section.blog-section h2{
    font-size: 46px;
}

.Logistics-section.blog-section .section-head p{
    font-size: 20px;
}


/* case studies  */

.caseStudies-section h1{font-size: 78px; }

.caseStudies-grid .grid-item h3{ font-size: 37px;}

.gridCol-title .projectsNumbers{
    font-size: 57px;}

.gridCol-title .projectsTitle{
    font-size: 28px;}


/* case studies  Inside */

.caseStudiesInside-Banner .banner-head h1{ font-size: 37px;}


.caseStudiesInside-Banner .banner-bottom strong{
    font-size: 44px;
}

.project-details-section .right-content strong{
    font-size: 18px;
}

.inshort-info .info-item span{
	font-size: 16px;
}

.insideTabs-section h2{
    font-size: 55px;}


.insideTabs-section .tab-content h4{
    font-size: 24px;
}


.suppourt-section strong{
    font-size: 69px;
}


.industries-section .left-sidebar p{ font-size: 18px;}

/* logistic Page */

.logisticPage .serviceWeProvide .section-head h2,
.technologiesWeOffer .section-head h2{
    font-size: 62px;
}

.Logistics-section.blog-section.centerAligned .section-head h2{
    font-size: 46px;
}

.logisticPage .serviceWeProvide .section-head p,
.logisticPage .appDevApproch-tabs .section-head p,
.Logistics-section.blog-section.centerAligned .section-head p,
.ourExpert-section .section-head p,
.fourCols-container .col-item p,
.technologiesWeOffer .section-head p
{
    font-size: 20px;
}

.Logistics-section.blog-section.centerAligned .accordion-header{font-size: 24px;}

.Logistics-section.blog-section.centerAligned.secondBlock .section-head.noBorder h2,
.ourExpert-section .section-head h2{
    font-size: 44px;
}

.fourCols-container .col-item h3{
    font-size: 26px;
}

/* contact page  */

.cotactTop-section h1{
    font-size: 72px;
}

.cotactTop-section p{
    font-size: 20px;
}

.formTab-section .tab-content-wrapper h2{
    font-size: 72px;
}

.formWrapper .form-row .form-col .input-field,
.formWrapper .form-row .btn{
font-size: 19px;
}

.map-section .contactMap h2{
    font-size: 55px;
}

.bottom-line .container h2{
    font-size: 57px;
}


.careerSlider-section .section-head h2 {
    font-size: 47px;}

.careerSlider .slideItem .slideItem-content h3{
    font-size: 39px;
}
.careerSlider .slideItem .slideItem-content p{
    font-size: 18px;
}

.careerSlider-wrapper .custom-controls .slide-counter{
    line-height: 48px;
    font-size: 28px;}

.career-connect-section .section-head h2{
    font-size: 62px;
}

.career-connect-section .section-head p {
    font-size: 20px;
}

.becomePart-section .section-head h2{
    font-size: 72px;}


.becomePart-section .section-head p{
    font-size: 18px;}

.becomePart-section .becomePart-grid .grid-item h3{
    font-size: 47px;
}

.becomePart-section .becomePart-grid .grid-item p{
    font-size: 24px;
}

/* About Us  */

.ourJouney-tabs .tab-content .content-head h2{
    font-size: 55px;}

.ourJouney-tabs .tab-content .content-head p{font-size: 26px;}


.ourJouney-tabs .content-main h3{
    font-size: 46px;
}

.ourJouney-tabs .content-main .content-wraper > strong{
    font-size: 26px;}

.ourJouney-tabs .content-main .content-wraper p{font-size: 17px;}



.theLeaders-section .section-head h2{
    font-size: 72px;}

.theLeaders-section .section-head p{
    font-size: 18px;
}

.leaders-list .leader-name{
    font-size: 24px;}

.leaders-list .leader-profile{
    font-size: 20px;
}


.creatingInnovative-section  h3{
    font-size: 44px;
}


.creatingInnovative-section .two-cols p{
    font-size: 32px;
}

.helpingStartups-section .two-cols-bordered-card h3{font-size: 44px;}


.testimonial-section .section-head h2{ 
    font-size: 62px;
}


.two-cols-cards p{
    font-size: 24px;
}

.two-cols-cards .authorinfo .authorName{
    font-size: 30px;}

.two-cols-cards .authorinfo .authorProfile{
    font-size: 24px;
}

.two-cols-cards .bottom-links a{
    flex: 1;
    font-size: 30px;
}

}

