    *{
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;

    }
    :root{
            --blue: #1e90ff;
            --white: #ffffff;
            --black:#000000;
            --primary:#03A2EB;
            --secondary: #00008B;
            --gray: rgb(127, 127, 127);
            
    }
    body {
      height: 100%;
      width: 100%;
        font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
     
    }

    ::-webkit-scrollbar{
      width: 5px;
    }
    ::-webkit-scrollbar-track{
      background: #000;
    }
    ::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom, #03A2EB, #00008B);

    }

    /* preloader design */

    .black-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color:transparent;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items:center;
      z-index: 2;
      overflow: hidden;
      transition: background-color 1s ease-in-out;
  }

  #upper-half,
  #lower-half {
      width: 100%;
      height: 50%;
      background-color: black;
      transform-origin: top;
      transform: scaleY(1);
      transition: transform 1s ease-in-out;
  }

  #lower-half {
      transform-origin: bottom;
  }

  #white-screen {
     
      width: 100%;
      height: 100%;
      background-color: white;
      align-items: center;
      justify-content: center;
      z-index: 1;
      opacity: 0;
      transition: opacity 1s ease-in-out;
  }
  #loading-line {
      position: fixed;
      top: 50%;
      width: 100%;
      height: 2px;
      background-color: white;

      animation: lineAnimation 2s linear forwards;
  }

  #black-screen p{
      position: fixed;
      top: 45%;
      color: white;
  }

  @keyframes lineAnimation {
      0% {
          width: 0;
      }
      100% {
          width: 100%;
      background:transparent;

      }
  }

    /* home page designs */

    section{
        height: 100vh;
        width: 100vw;
        padding:0.1px;
    }


    /* main content designs */
    .main-content{
       /* background-image: url("../assets/images/main-bg.png");*/
        background: #03A2EB;
        background-size: cover;
        background-position: center;
       position: relative;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       align-items: center;
      }
    header{
    
   
    

        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 78vw;
        padding: 0vw 3vw;
        margin: auto;
        border-radius: 0.5rem;
        background: var(--white);
        margin-top: 6vmin;
    }
    
    

    .logo img{
        height: 5vw;
    }
    .logo img.white-logo-header{
      display: none;
    }

    .nav-list ul{
        display: flex;
    }
    .nav-list ul li{
        font-size: 0.938vw;
        list-style: none;
        padding: 0 1vw;
    }
    .nav-list ul li a{
      color: var(--black);
      text-decoration: none;
    }
    .mobile-menu{
      display: none;
    }
    #menu-container{
      display: none;
    }
  
    .contact-logo-wasp img{
        padding: 0 0.7vw;
        height: 2.5vw;
    }

    header.sticky-header{
      display: none;
      position: fixed;
      z-index: 9999;
      top:-6vmin;
      display: flex;
      justify-content: space-between;
    background: linear-gradient(to bottom, #03A2EB,#03A2EB);

      /* background: linear-gradient() #80c63be1; */
      padding: 0vw 3.5vw 0vw 2.5vw;
      
      align-items: center;
    }
    header.sticky-header .nav-list ul li a{
      color: var(--white);
      text-decoration: none;
    }
    

    .intro-section p,h1{
        color: var(--white);
    }
    .intro-section{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        width: 83.5vw;
        height: 52vh;
        margin: auto;
    }
    p.left-text{
        font-size: 1.7vw;
        line-height:5vmin;
    }

    button.free-quote-btn {
      position: relative;
      margin-top: 4vmin;
      padding: 0.7vw 1.5vw;
      /* background: var(--primary); */
      background: #03A2EB;
      /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
      border: none;
      outline: none;
      font-size: 0.856vw;
      color: var(--white);
      clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 20% 100%, 0 85%);  
      transition: all 1s ease;
      animation: sideChange 3s infinite;
    } 

    @keyframes sideChange {
      0%{
      background-color: var(--primary);
    /* background: linear-gradient(to right, var(--primary), var(--secondary)); */

      clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 20% 100%, 0 85%);  
      
      }
      50%{
        background-color: var(--secondary);
    /* background: linear-gradient(to left, var(--primary), var(--secondary)); */

        clip-path: polygon(20% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 20%);
  
        }
      100%{
        background-color: var(--primary);
        /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
   
        clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 20% 100%, 0 85%);  
        
      }
      
    }
    
    .left-text img.text-line{
        width: 10vw;
    }
    h1.right-text{
        font-family: "Raleway", sans-serif;
        text-align: right;
        font-size: 5.104vw;
        line-height: 16.094vmin;
    }
    .mobile-content{
      display: none;
    }

    .navigate-text{
      position: absolute;
      top:70.5vmin;
      left: -2vw;
    }
    .navigate-text p{
      font-size: 1.042vw;
      line-height: 1.563vw;
      color: var(--white);
      transform: rotate(-90deg);
    }
    .language-box{
        display: flex;
        width: 83.5vw;
        height:23vh;
        margin: auto;
        margin-top: 4vmin;
        overflow: hidden;
    }
    .left-language-box{
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

    }
    .desktop-lang-box{
      width: 100%;
      height: 100%;
    }
    .mobile-lang-table-box{
      display: none;
    }
    table {
      width: 100%;
      border-collapse: collapse;
    }
    td {
      text-align: center;
      height: 55px;
      width: 30px;
    }
    td {
      overflow: hidden;
      font-size: 13px;
      color:var(--white)
    }
    table img{
      /* width: 65%;
      height: 65%; */
      width: 50px;
      height: 50px;
      /* border:1px solid white; */
    }
    

    .mobile-lang-box{
      display: none;
    }
    .diagonal-item{
      height: 100%;
    }
    .diagonal-item img{
      width: 5vw;
      height: 5vw;
      /* border:1px solid white; */
    }
.item1{
    display: flex;
    justify-content: flex-start;
    align-items: end;
    /* height: 5vw; */

}
.item2{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* height: 5vw; */

}
.six-box{
    width:21.063vw;
}


.item3{
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    width: 10vw;
    height: 5vw;
}
.item4{
  display: flex;
  flex-wrap: wrap;
}


/* customer section css */

section.customer-section{
    width: 100vw;
    height: 100%;
}

.customer-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 78vw;
    margin: auto;
    padding:2vw 3vw;
    margin-top: 8vmin;
    border-radius: 1rem;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.311) 0px 1px 20px;
}
.customer-box p{
    font-size: 2.083vw;
    line-height:3.125vw;
    background: #03A2EB;
    /*background: linear-gradient(to right, var(--primary), var(--secondary));*/
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.customer-box p::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%; /* Center the underline */
    transform: translateX(-50%); /* Center the underline */
    width: 20%; /* Adjust the width of the underline */
    height: 0.3vw; /* Adjust the height/thickness of the underline */
    background-color: #03A2EB; /* Adjust the color of the underline */
  }
  .reviews-box{
    margin-top: 6vmin;
  }
  .reviews-box img{
    width: 35vw;;
  } 
  .companies-box{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 6vmin;
    height: 5vw;
    width: 70vw;
  }

.companies-box img{
  height: 5vw; 
    width: 5vw;
    bottom: 0;
      animation: moveUpAndDown 3s ease infinite; /* Adjust the animation duration as needed */
    }

    @keyframes moveUpAndDown {
      0% {
        transform: translateY(30%);
        opacity: 0;
      }
      20%, 80% {
        transform: translateY(0);
        opacity: 1;
      }
      100% {
        transform: translateY(-30%);
        opacity: 0;
      }
    }
.three-pillar-approach-section{
    display: flex;
    justify-content: flex-end; 
    width: 100vw;
    height: 30.042vw;
    margin-top: 10vmin;
}
.three-pillar-approach-mobile-section{
  display: none;
}
.three-pillar-approach-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-image: url("../assets/images/three-pillar-bg.png"); */
    background: #03A2EB;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 95vw;
    height: 31vw;
}
.laptop-img{
    height:26.438vw;
    width: 34.438vw;
    margin-left: 2vw;
}
.laptop-img img{
    height: 100%;
    width: 100%;
}
.three-pillar-text{
  margin-right: 5vw;
}
.three-pillar-text h1{
    font-size: 3.333vw;
    line-height: 5vw;
}
.three-pillar-text p{
    font-size: 1.042vw;
    line-height: 1.563vw;
    color: var(--white);
}
.three-circle{
    display: flex;
}
.circle-logo img{
    width: 1.5vw;
}
.circle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 6vmin;
    height: 10.021vw;
    width: 10.021vw;
    padding: 1vw;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: var(--white);
    transition: all 1s ease;
    animation:scaleBig 2s infinite;
}
@keyframes scaleBig {
  0%{
  transform: scale(0.8);
  }
 100%{
  transform: scale(0.9);

  }
  
}
/* 
.circle:hover{
  transform: scale(1.2);
} */
.productized-circle,.innovation-circle{
    margin-left: 2vw;
}
.circle-text p{
    color: var(--black);
}
.circle-text p.circle-title{
    font-size: 1.042vw;
    line-height: 1.563vw;
    font-weight: 600;
}
p.normal-text{
    font-family: "Poppins";
font-size:0.621vw;
line-height: 0.781vw;
margin-top: 0.5vw;
}

/* business design code */

.business-section{
    height: 100%;
}
.business-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 78vw;
    padding:2vw 3vw;
    margin-top: 8vmin;

}

.left-business-text h1{
    color: var(--black);
    font-size: 2.083vw;
    line-height: 3.125vw;
}
.right-business-text p{
    font-size: 1.042vw;
    line-height: 1.563vw;
}

.business-cards{
  /* scroll-snap-type: x mandatory; */
    margin: auto;
    margin-top: 2vmin;
    margin-left: 20vw;
    display: flex; 
    width: 75%;
    overflow-x:hidden;
  overflow-y: hidden;
  height: 34vw;
  padding: 0;
  position: relative;
}



.website-dev-card{
  /* scroll-snap-align: start ; */
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    /* background-image: url("../assets/images/card-bg.png"); */
    background: #03A2EB;
    background-size: cover;
    background-position: center;
    min-width: 20.379vw;
    height: 28vw;
    padding: 1.5vw ;
    animation: snapScrollAuto 20s  linear infinite;
  }

  @keyframes snapScrollAuto {
    /* 0%{
      transform: translateX(0);
    }

   

    100%{
      transform: translateX(calc(-20.379vw * 1.3));
    } */

    0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-425%);
  }
    
  }

  .business-cards:hover .website-dev-card {
    animation-play-state: paused;
  }

  .website-dev-card h1{
    margin-top: 4vmin;
  }










.website-dev-card h1{
    text-align: center;
    font-size: 2.267vw;
    line-height: 3.500vw;
}

.website-dev-card p{
  width: 80% !important;
    margin-top: 1vmin;
    text-align: center;
    color: var(--white);
    font-size: 0.853vw;
    line-height: 1.250vw;
    width:fit-content;
}

.mob-app{
  
  margin-left: 2vw;
}
.web-dev{
    position: absolute;
    top:61%;
    width: 17vw;
    transition: all 1s linear ;
}
.web-dev:hover,.app-dev:hover,.brand-serv:hover,.digital-marketing:hover{
  transform: scale(1.1);
}
.app-dev{
    position: absolute;
    top:61%;
    width: 14vw;
    height: 14vw;
    transition: all 1s linear ;
}
.brand-serv{
  position: absolute;
  top:60%;
    width: 10vw;
    transition: all 1s linear ;

}
.digital-marketing{
    position: absolute;
    top:61%;
    width: 17vw;
    height: 17vw;
    transition: all 1s linear ;

}

/* discover design code */

.discover-section{
    height: 100%;
}

.discover-image-text{
    width: 83vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 15vmin;
    
}
.discover-image-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38.458vw;
    height: 28.042vw;
    /* background: #1357be14; */
    border-radius: 1vw;
    /* padding:1vw; */
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 20px; */

}
.discover-image{
    width: 38.458vw;
    height: 28.042vw;
    /* background: #1357be11; */
}
.discover-image img{
    height: 100%;
    width: 100%;
    transition: all 0.5s linear;

  }
.discover-image img:hover{
  transform: scale(1.05) translateY(-20px);
}
.discover-text{
    margin-left: 2vw;
}
.discover-text h1.dis-wiutech {
  font-size: 3.083vw;
  line-height: 4.125vw;

    /*background: linear-gradient(to right, var(--primary), var(--secondary));*/
    background: #03A2EB;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.discover-text h1.dis-wiutech::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 13%; /* Center the underline */
    transform: translateX(-50%); /* Center the underline */
    width: 6vw; /* Adjust the width of the underline */
    height: 0.3vw; /* Adjust the height/thickness of the underline */
    background: #03A2EB;
  /*  background:  linear-gradient(to right, var(--primary), var(--secondary));*/
  /* background: var(--secondary); */
  }
  .discover-text h2.disc-subtitle{
        margin-top: 4vmin;
        font-size: 2.083vw;
        line-height: 3.125vw;
  }
  p.disc-para{
    margin-top: 4vmin;

    font-size: 1.142vw;
    line-height: 1.563vw;
  }

  button.know-btn {
    position: relative;
    margin-top: 4vmin;
    padding: 0.9vw 1.5vw;
    background-color: var(--primary);
    border: none;
    outline: none;
    font-size: 0.856vw;
    color: var(--white);
    clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 20% 100%, 0 85%);  
    transition: all 1s ease;
  } 

  button.know-btn img{
    height: 10px;
    width: 10px;
  }

button.know-btn:hover {
  cursor: pointer;
  position: relative;
  margin-top: 4vmin;
  padding: 0.9vw 1.5vw;
  background-color: var(--secondary);
  border: none;
  outline: none;
  font-size: 0.856vw;
  color: var(--white);
  clip-path: polygon(20% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 20%);
}
  img.right-arr{
    width: 0.7vw;
    margin-left: 0.5vw;
  }

  /* industry code design */
  .industries-section{
    height: 100%;
  }

.industries-box{
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url("../assets/images/industry-bg.png"); */
    background: #03A2EB;
    background-size: cover;
    background-position: center;
    height: 76.208vmin;
    width: 100vw;
    margin-top: 16vmin;
}
.industries-content{
    margin: auto;
    width: 100%;

}
.industries-content p{
    color: var(--white);
    font-size: 2.500vw;
    line-height:2.917vw;
    text-align: center;
    margin-top: 0;
   font-weight: bold;
}


/* new design code starts here  */


.wrapper {
  width: 80%;
  margin: auto;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.mobile-wrapper{
  display: none;
}

.container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
}

.card {
  width: 80px;
  border-radius: .75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: .6s cubic-bezier(.28,-0.03,0,.99);
  box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

.card > .row {
  color: white;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
}

.card > .row > .icon {
  /* background: #223; */
  background: linear-gradient(to bottom, #03A2EB, #03A2EB);

  color: white;
  width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card > .row > .icon p{
  font-size:0.845vw;
  transform: rotate(-90deg);
}

.card > .row > .description {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 99%;
  padding: 5px 10px;  
  overflow: hidden;
  /* width: 460px; */
  width:70%;
  opacity: 0;
  transform: translateY(0px); 
  transition-delay: .3s;
  transition: all .3s ease;
}

.card > .row > .description img{
  /* height: 100%;
  width: 45%; */
  height: 10vw;
  width: 20vw;
}
.desc-img{

  display: flex;
  gap:10px;
  justify-content: space-between;
}

.description p.desc-data {
  text-align: left;
  color: #b0b0ba;
  font-size: 0.945vw;
  line-height: 1.4vw;
  margin-top: 0;
}

.description h4 {
  text-transform: uppercase;
}
.desc-img{
  display: flex;
}

.desc-img img{
  width: 50%;
  height: 100px;
  /* border:1px solid white; */

}

input {
  display: none;
}

input:checked + label {
  width: 600px;
}

input:checked + label .description {
  opacity: 1 !important;
  /* transform: translateY(0) !important; */
}
.card{
  background: url(../assets/images/big-flex-bg.png);
  background-size: cover;
}
button.get-btn img{
  width: 1vw !important;
  height: 1vw  !important;
}



/* new design code ends here */


/* newest design starts here */

.new-container{
  max-width: 80%;
  height: 60vh;
  margin: 0 auto;
}
  
.new-row{
  display: flex;
}
.new-cards{
  flex-wrap: wrap;
  /* gap:2em; */
  padding:2em 0;
}
.new-card{
  align-items: flex-end;
  justify-content: center;
  position: relative;
  max-width: 80px;
  height: 300px;

 

  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background-image: url(../assets/images/big-flex-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  transition: max-width 1s linear;

}


.new-card-body{
  display: flex;
  height: 100%;
  background: linear-gradient(to bottom, #03A2EB, #03A2EB);
}
.side-green{
  height: 100%;
  max-width: 80px;

  background: linear-gradient(to bottom, #03A2EB, #03A2EB);
}
.side-green p{
  visibility: hidden;
}
.new-card-active{
  max-width: 300px;
}
.new-card-active .new-card-body{
  background: none;
}
.new-title{
  position: absolute;
  inset: 0;
}
.new-card-active .new-title{
  all: unset;
}
.new-title h2{
  font-size: clamp(18px,5vw,48px);
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  transform: rotate(-90deg) translateX(-350px);
}
.new-card-active .new-title h2{
  transform: unset;
}
p.new-content{
  font-size: 18px !important;
  color:#fff;
  margin: 0;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-in-out;
  -webkit-transition: max-height 0.3s ease-in-out;
  -moz-transition: max-height 0.3s ease-in-out;
  -ms-transition:max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
}
.new-card-active p{
  position: relative;
  opacity: 1;
  max-height: 100%;
  transition-delay: 0.5s ;
}



/* newestdesign ends here */


  p.mid-div-title{
  text-align: left;
    font-size: 2.5vmin;
    line-height: 3.68vmin;
  }
  p.mid-div-subtitle{
  text-align: left;
    font-size: 1.666vmin;
    line-height:  2.5vmin;

  }
  
  .industry-img{
    margin-top: 2vmin;
    display: flex;
  }
  .industry-img img{  
    width: 50%;
    margin-top: 2vmin;
  }
  .get-btn{
    display: flex;
    font-size: 0.856vw;
    justify-content: center;
    align-items: center;
    width:120px;
    background: var(--primary);
    color:var(--white);
    padding: 0.8vw 3vmin;
    outline: none;
    border: none;
    clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 20% 100%, 0 85%);  
  }

  /* client review code */

  section.client-review-section{
    height: 100%;
  }
  
  .client-box {
    width: 68vw;
    height: 90vmin;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10vmin;
  }
  
  .client-box h1{
    font-size: 5vmin;
    line-height: 7.500vmin;
    /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
    background: #03A2EB;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-align: center;
}
.client-box h1::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%; /* Center the underline */
    transform: translateX(-50%); /* Center the underline */
    width: 16%; /* Adjust the width of the underline */
    height: 0.6vmin; /* Adjust the height/thickness of the underline */
    background-color: #03A2EB; /* Adjust the color of the underline */
  }
  p.client-subtitle{
    margin-top: 5vmin;
    font-size: 2.284vmin;
    line-height: 3.126vmin;
  }
  .vector-review-box{
    position: relative;
    margin-top: 3vmin;
    overflow: hidden;
    /* width: 120vmin;
    height: 60vmin; */
    width: 100%;
    height: 100%;
}
  .vector-box{
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../assets/images/vector.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 90%;
    height: 85%;
    overflow: hidden;
  }
  .client-card{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 2.8vmin;
    width: 80%;
    height: 28vmin;
    transition: transform 0.5s ease-in-out;
  }
  
  .client-review-card{
    flex:0 0 90%;
    position: relative;
    gap:10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 400;
    padding:4vmin 6vmin;
    border-radius:20vmin;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 20px;
  }
  .left-blue-arr{
    position: absolute;
    left:-1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: var(--primary);
  }
  .left-blue-arr img{
    height: 0.9vw;
    width: 0.9vw;
    transform: rotate(180deg);
  }


  .right-blue-arr{
    position: absolute;
    right:-1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: var(--primary);
  }
  .right-blue-arr img{
    height: 0.9vw;
    width: 0.9vw;
  }



  .client-review-card p{
    text-align: center;
    font-size: 2.084vmin;
    line-height: 3.126vmin;
  } 
 .client-text-info{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2vmin;
  height: 4vw;
  }
  .client-card-img{
    display: flex;
    justify-content: center;
    align-items: center;
      height: 9vmin;
    width: 4.5vw;


  }
  .client-card-img img{
    border-radius: 50%;
   width: 100%;
  }
  .client-info{
    
    margin-left: 0.3vw;
  }

  p.profile-name{
    font-weight: 600;
  }
    
  .client-imgs{
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .client-imgs .img1{
    position: absolute;
    right:5%;
    top:10vmin;
    height: 4vw;
    width: 4vw;
  }
  .client-imgs .img2{
    position: absolute;
    right:5vw;
    top:48vmin;
    height: 8vmin;
    width: 8vmin;

  }
  .client-imgs .img3{
    position: absolute;
    left:14vmin;
    top:50vmin;
    height: 8vmin;
    width: 8vmin;

  }
  .client-imgs .img4{
    position: absolute;
    left:20%;
    top:5vmin;
    height: 4vw;
    width: 4vw;
  }

  /* checking  */

  .card-slider-1 {
    width: 90%; /* Adjust container width */
    overflow: hidden;
    position: relative;
    padding:20px 0px;
  }

  .card-container-1 {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }

  .card-ki {
    flex: 0 0 100%; /* Adjust card width */
    border-radius: 30px; /* Capsule shape */
    display: flex;
    margin-right: 5%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    padding:4vmin 0vmin 6vmin 0vmin;
    border-radius:20vmin;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 10px;

  }

  .card-ki p{
    text-align: center;
    font-size: 2.084vmin;
    line-height: 3.126vmin;
  }
  
  .card-ki p.card-content-review{
    width: 70%;
    text-wrap: wrap;
    text-align: center;
    font-size: 2.084vmin;
    line-height: 3.126vmin;
  }
  button.prev-btn{
    
    position: absolute;
    left:3%;
    border:none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: var(--primary);
    transform: rotate(180deg);
    cursor: pointer;
  }

  button.next-btn{
    position: absolute;
    right:3%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
  }
  button.prev-btn img{
    height: 1vw;
    width: 1vw;

  }
  button.next-btn img{
    height: 1vw;
    width: 1vw;
  }

  /* cards slider */


  
  /* portfolio code  */

  .portfolio-section{
    /* background-image: url("../assets/images/portfolio-bg.png"); */
    background: #03A2EB;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 135vh !important;
  }
  .portfolio-box{
  
    margin: auto;
    width: 80vw;
    height: 100%;
    padding: 0 3vw ;
  }
  h1.portfolio-title{
    text-align: center;
    margin-top: 14vmin;
    font-size: 2.500vw;
    line-height: 3.958vw;
  }

  .btn-section{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 4vmin;
  }
  
  .port-btn{
    border:none;
    outline:none;
    padding: 1vw 2vw;
    background:#ffffff6a;
    color:var(--white);
    clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 20% 100%, 0 85%);  
    font-size: 1.042vw;
    line-height: 1.563vw;
    box-shadow: 10px 10px 10px #000;
    cursor: pointer;
  }
  .green{
    background: var(--secondary);
  }
  .portfolio-img-container{
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .portfolio-img-slider{
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }

  .portfolio-img-section{
    display: flex;
    flex-wrap: wrap;
    gap:15px;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 6vmin;
    padding: 0;
    flex: 0 0 100%;
  }
  .portfolio-img-section img{
    width: 36vw;
    height: 50vh;
    border-radius: 20px;
  }
  
  /* core value code */
  .core-values-section{
    height: 100%;
  }
  
  .core-values-section{
    margin-top: 15vh;
  }
  .core-value-box{
    width: 80vw;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.core-value-box h1{
  text-align: center;
  font-size: 2.500vw;
  line-height:3.750vw;
  /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
  background: #03A2EB;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.core-value-box h1::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%; /* Center the underline */
  transform: translateX(-50%); /* Center the underline */
  width: 7%; /* Adjust the width of the underline */
  height: 0.6vmin; /* Adjust the height/thickness of the underline */
  /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
  background-color: var(--primary);
}


.core-value-cards{
    display: flex;
    justify-content: space-between;
    margin-top: 8vmin;

}
.integrity{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10vw 0 0 10vw;
    box-shadow: rgba(0, 0, 0, 0.49) 0px 1px 20px;

    /* padding: 0.6vw 3vw 0.4vw 0.4vw; */
}
.green-shadow{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6vw 3vw 0.4vw 0.4vw;
    width: 100%;
    border-radius: 10vw 0 0 10vw;

    box-shadow: 2px 2px var(--primary);

}

.integrity img{
  width: 7vw;
  height: 7vw;
}
.integrity p{
  font-size: 1.667vw;
  font-weight: 600;
  margin-left: 2vw;
  line-height: 2.500vw;
  color: var(--primary);
}

.lets-build-approach-section{
    display: flex;
    justify-content: flex-end; 
    width: 100vw;
    margin-top: 10vmin;
}
.lets-build-approach-box{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-left: 2rem;
    /* background-image: url("../assets/images/three-pillar-bg.png"); */
    background: #03A2EB;
    background-size: cover;
    background-position: center;
    width: 90vw;
    height: 30vw;
}
.phone-img{
    height: 28.438vw;
    width: 28.438vw;
}
.phone-img img{
    height: 100%;
    width: 100%;
}
.lets-build-text h1{
    font-size: 3.333vw;
    line-height: 5vw;
}
.lets-build-text p{
  margin-top: 4vmin;
    font-size: 1.042vw;
    line-height: 1.563vw;
    color: var(--white);
}

/* FOOTER DESIGN CODE */

footer{
    background: linear-gradient(to bottom, #1357be00, #1357be82);
    margin-top: 20vmin;
}

.footer-box{
    width: 80vw;
    height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.footer-logo{
    margin-bottom: 3vw;
}
.brand-social-logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
img.footer-logo-img{
    width: 23vw;
}
.social-logo{
    display: flex;
}
.social-logo img{
 width: 5vw;
 height: 5vw;
 border-radius: 50%;
 margin-left: 3vw;
 animation: pulse 2s infinite;
 
}
@keyframes pulse{
  0%{
    box-shadow: var(--secondary) 0 0 0 0;
  }
 
  100%{
    box-shadow: #80c63b39  0 0 0 1.4vw;

  }
}
.contact-logo{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 6vmin;
}
.contact-logo-cards{
    display: flex;
    justify-content: start;
    align-items: center;
    width: max-content;
}
.contact-logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background: var(--primary);
}
.contact-logo-img img{
    height: 1.5vw;
    width: 1.5vw;
}
.location-foot img{
  width: 1.5vw;
  height: 2vw;
}

.contact-text p{
    
    font-size: 1.042vw;
    line-height: 1.875vw;
    width: max-content;
    background: linear-gradient(to right, #1357be00, #1357bea3);
    padding: 0.5vw 1vw;
    color: var(--white);
    border-radius: 5px;
}
.copyright-text{
    display: flex;
    justify-content: center;
    border-top: 1px solid black;
    

}
.copyright-text p{
    font-size: 1.042vw;
    line-height: 1.875vw;
    padding: 0.8vw 0;
    text-align: center;
    font-weight: 500;
}



/* responsiveness code */

/* for tablet view */
@media screen and (max-device-width: 1024px) 
    and (orientation: portrait) {


      /* discover code */

      .discover-image-text{
        margin-top:70px;
      }



      /* industries code */
      .industries-box{
        margin-top: 50px;
      }
      .wrapper{
        height: 500px;
      }
     
      input:checked + label {
        width: 400px;
      }
      .card > .row{
        width: 400px;
      }
      .card .row .icon {
        width: 125px;
      }

      /* client code  */

      .vector-box{
        background-image: none;
      }
      .client-review-card{
        margin-top: 85px;
        border-radius: 20px;
        height: 450px;
        width: 300px;
      }

      /* portfolio code */

      .portfolio-img-section{
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 30px;
        height: 100dvh;
        overflow-y: scroll;
      }
      .portfolio-img-section img{
        width: 90%;
        height: 34.5%;
      }

      /* core value code */
      
      .core-values-section{
        margin-top: 50px;
      }
      .core-value-cards{
        margin-top: 50px;
      }
      .lets-build-approach-section{
        margin-top: 50px;
      }

      /* footer code goes here */

      footer{
        margin-top: 50px;
      }
      
}


/* responsiveness code */

/* for tablet view */


@media screen and (max-device-width: 800px) 
    and (orientation: portrait) {


      /* discover code */

      .discover-image-text{
        margin-top:60px;
      }

      /* client code */

      .client-review-card{
        height:370px;
      }


      /* industries code */
      .industries-box{
        margin-top: 40px;
      }
      .wrapper{
        height: 500px;
      }
    
      input:checked + label {
        width: 300px;
      }
      .card > .row{
        width: 300px;
      }
      .card .row .icon {
        width: 190px;
      }

      /* portfolio code */

      .portfolio-img-section img{
        width: 80%;
        height: 34%;
      }
    
}


/* for better view */


/* For Mobile Portrait View */
@media screen and (max-device-width: 600px) 
    and (orientation: portrait) {

    

    /* main content code   */
    
    header{
      background: transparent;
      width: 90%;
    }
    header.sticky-header{
      display: none !important;
    }
    
    
    
    .nav-list{
      display: none;
    }
    .contact-logo-wasp{
      display: none;
    }

    .navigate-text{
      display: none;
    }

    .logo img.normal-logo{
      display: none;
    }
    .logo img.white-logo-header{
      display: block;
      height: 12vw;
    }
    .quote-btns button.call-btn{
      margin-left: 20px;
    }
    .mobile-menu,#menu-container{
      display: block;
    }
    .mobile-menu{
      display: flex;
    }
    .mobile-menu .get-in-touch p{
      color: var(--secondary);
      margin-right: 20px;
    }
    .get-in-touch p::before {
      content: '';
      display: inline-block;
      justify-content: center;
      align-items: center;
      width: 5px; /* Adjust size as needed */
      height: 5px; /* Adjust size as needed */
      background-color:var(--secondary); /* Adjust color as needed */
      margin-right: 10px; /* Adjust spacing as needed */
      margin-bottom: 3px;
  }
    

      .mobile-menu img {
      
      height: 5vw;
    }
    .main-content{
     /* background: url(../assets/images/mobile-home-banner.png); */
     background: #03A2EB;
      background-size: cover;
      height: 100%;
    }

    #menu-container {
      position: fixed;
      top: 0;
      right: -100%; /* initially hide the menu off-screen */
      width: 100%;
      height: 100%;
      background-color: #000000e2;
      transition: right 0.3s ease-in-out;
      z-index: 1;
      overflow-y: scroll;
      padding-top: 20px;
    }

    #menu-content {
      padding:0 20px;
      color: white;

    }

    #menu-toggle-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      cursor: pointer;
      color: white;
      font-size: 24px;
      z-index: 2;
    }
    .close-btn-sec{
      display: flex;justify-content: space-between;
      align-items: center;
      height: 100%;
      width: 100%;
    }
    .close-btn-sec img{
      height: 50px;
      

    }
    img.cross-btn{
      height: 40px;
    }
    .left-into,.right-intro{
      display: none;
    }
    .mobile-content{
      display: block;
    }
    .mobile-content-title h2{
      font-size: 25px;
      color: var(--white);
      text-align: center;
    }
    .mobile-content-title h2 span{
      color: var(--secondary);
    }
    .mobile-content-title p{
      margin-top: 15px;
      font-size: 13px;
      text-align: center;
    }
    .quote-btns{
      text-align: center;
    }
    

    .close-btn {
      cursor: pointer;
      color: white;
      font-size: 40px;
      position: absolute;
      top: 10px;
      right: 10px;

    }
    #menu-content ul li{
      list-style: none;
      margin-top: 12vmin;

    }
    #menu-content ul a{
      list-style: none;
      text-decoration: none;
      color: var(--white);
      font-size: 18px ;
      text-transform: uppercase;
    }
    #menu-content ul a span{
      list-style: none;
      text-decoration: none;
      color: var(--gray);
      font-size: 10px ;
      text-transform: uppercase;
      margin-right: 2vw;
    }
    .intro-section{
      display: flex;
      justify-content: center;
      flex-direction: column-reverse;
      height: 55dvh;
    }
    .intro-section h1{
      font-size: 10.083vw;
      line-height: 12.125vw;
    }
    p.left-text{
      font-size: 18px;
      line-height: 26px;
      margin-top: 8vmin;
    }
    .left-text img.text-line {
      width: 14vw;
    }
    button.free-quote-btn {
      margin-top: 4vmin;
      padding: 2.5vw 3vw;
      font-size: 3vw;
      animation: sideChange 3s infinite;
    } 

    button.free-quote-btn img{
      width: 10px;
    }
    .language-box{
      display: none;
    }
    .left-language-box{
     display: none;
    }

    .desktop-lang-box{
      display: none;
    }
    .mobile-lang-table-box{
      display: block;
      width: 100%;
    }
    .mobile-lang-table-box table{
      width: 100%;
      height: 100%;

    }
    .mobile-lang-table-box table td{
      width: 20px;
      height: 20px;
    }

    .mobile-lang-table-box img{
      width: 20px;
      height: 20px;
    }


    .mobile-lang-box{
      display: flex;
      flex-wrap: wrap;
      justify-content: end;
      align-items: flex-end;
    }
    .mobile-lang-box img{
      width: 10vw;
      height: 10vw;
    }
 
  /* three pillar approach section */
  .customer-box{
    border-radius: 0px;
    margin-top: 0;
    width: 94%;
    height: 75px;
  }
  .customer-box p{
    display: none;
  }
  .reviews-box{
    display: none;
  }
  .companies-box{
    width: 90vw;
    margin-top: 0px;
  }
  .companies-box img{
    /* height: 100%;  */
    height: 7vw;
    width: 7vw;
  }
    p.normal-text{
      display: none;
    }
    .three-pillar-approach-section{
      display: none;
    
  }
  .three-pillar-approach-mobile-section{
    display: block;
    padding:  3vw;
    position: relative;
  }
  .mobile-three-pillar-text h1{
    font-size: 7.083vw;
  line-height: 9.125vw;
  margin-top: 5vw;
    color: var(--black);
    text-align: center;
  }
  .mobile-three-pillar-text p{
    font-size: 3.542vw;
  line-height: 5.063vw;
  text-align: center;
  }
  .three-pillar-approach-mobile-section .three-circle{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

   }
  .three-pillar-approach-mobile-section .circle{
    width:200px;
    height: 200px;
    border-radius: 50%;
    border:1px solid var(--secondary);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.756);
  }
  .productized-circle,.innovation-circle{
    margin-left: 0px;
}

.three-pillar-approach-mobile-section .three-circle .circle-logo img{
  width: 10vw;
  
}
.three-pillar-approach-mobile-section .circle-text p.circle-title{
  font-size: 5.042vw;
  line-height: 6.563vw;
}

.three-pillar-approach-mobile-section .circle:hover{
  transform: none;
}

/* mobile business codde  */
.business-text{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  width: 90vw;
  padding:0vw;
  margin-top: 8vmin;
}
.left-business-text h1{
  color: var(--black);
  font-size: 7.083vw;
  line-height: 9.125vw;
}

.right-business-text p{
 font-size: 3.542vw;
  line-height: 5.063vw;
}
.business-cards{
scroll-snap-type: none;
width: 96%;
height: 100%;
margin-top: 0;
overflow-x:auto;
overflow-y: hidden;
padding: 0;
margin-left:10px;
margin-top: 30px;

}

::-webkit-scrollbar{
  width: 0px Im !important;
}
::-webkit-scrollbar-track{
  background: none;
}
::-webkit-scrollbar-thumb{
background: none;

}


.website-dev-card{
  position: relative;
  scroll-snap-align: start ;
  flex-wrap: wrap;
  min-width: 200px;
  height: 100vw;
  padding: 0vw 1.5vw;
/* animation: slide 9s linear infinite; */

  animation-play-state: paused; 
  
}
@keyframes slide {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
}

.website-dev-card h1{
  font-size: 5.083vw;
  line-height: 7.125vw;
  margin-top: 35px;
}

.website-dev-card p{
  font-size: 2.042vw;
  line-height: 4.063vw;
}

.not-mob{
  display: none;
}

img.web-dev{
  width: 40vw;
  height: 35vw;
  top:68%;
}

.app-dev{
  top:67%;
  width: 33vw;
  height: 33vw;
}
.digital-marketing{
  width: 47vw;
  height: 39vw;
  top:68%;
}
.brand-serv{
  width: 33vw;
  height: 33vw;
  top:67%;
}

/* discover mobile code */
.discover-section{
margin-top: 20px;
}

.discover-image-text{
  margin-top: 0;
  width: 93vw;
flex-direction: column-reverse;  
}
.discover-image-box{
  width: 100%;
  height: 35dvh;
  background: none;
  margin-top: 30px;
  padding:0;
  box-shadow: none;
}
.discover-image{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30dvh;
  background: none;
  
}
.discover-image img{
  animation: scaleAnimation 2s infinite alternate;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}


.discover-text h1.dis-wiutech{
  font-size: 7.083vw;
  line-height: 9.125vw;

  margin-top: 10px;
}
.discover-text h1.dis-wiutech::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%; /* Center the underline */
  transform: translateX(-50%); /* Center the underline */
  width: 10vw; /* Adjust the width of the underline */
  height: 0.7vw; /* Adjust the height/thickness of the underline */
  background:  linear-gradient(to right, var(--primary), var(--secondary)); /* Adjust the color of the underline */
}
.discover-text h2.disc-subtitle{
  font-size: 4.083vw;
  line-height: 5.125vw;
}
p.disc-para{


  font-size: 3.542vw;
  line-height: 5.063vw;
}
button.know-btn{
  font-size: 3.542vw;
  padding: 2.5vw;


}
button.know-btn img{
  width: 13px;
  height: 13px;
}
button.know-btn:hover{
  font-size: 3.542vw;
}



    /* indusrty mobile code */

    
    .industries-box{
      display: flex;
      align-items: center;
      justify-content: start;
      flex-direction: column;
      height: 100dvh;
      margin-top: 50px;
    }
    .wrapper{
      display: none !important;
      height: 85dvh;
      display: flex;
      justify-content: center;
      flex-direction: column;
      margin-top: 30px;
    }
    .mobile-wrapper{
      display: flex;
      height: 85dvh;
      margin-top: 20px;
    }
    .mobile-container{
      display: flex;
      flex-direction: column;
      width: 80vw;
      margin: auto;
    }
    .panel{
      background-image: url("../assets/images/big-flex-bg.png");
      border-radius:10px;
      height: 40px;
      transition: height 0.5s ease;
      /* flex:1 1 calc(33.333% - 20px); */

    }
    .panel h3{
  background: linear-gradient(to bottom, #03A2EB, #03A2EB);
      text-align: center;
      margin: auto;
      border-radius:10px;
      color: #fff;
      padding: 1dvh;
    }
    .activess{
      height: 100%;
      /* height: calc(100% - 20px); */
      height:55dvh;
    }
    .mob-description{
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      height: calc(100% - 60px);
      padding: 0px 30px;
      overflow: hidden;
    }
    .mob-description p{
      font-weight: 100;
      text-align: left;
    }
    p.content{
      font-size:15px  !important;
      line-height: 20px  !important;
    }
    .mob-dec-img{
      display: flex;
      justify-content: space-between;
    }
    .mob-dec-img img{
      width:45%;
    }




    .industries-content{
      margin-top: 8vw ;
    }
    .industries-content p{
      font-size: 5.083vw;
      line-height: 7.125vw;
    }
    .container{
      height: 40%;
      width: 85dvh;
      
      transform: rotate(90deg);
    }
    input:checked + label {
      /* width: 330px; */
      width: 50dvh;
    }
    .card{
      width: 15vw;
    }
    .card > .row{
      position: relative;
      height: 100%;
      width: 200px;
    }
    .card > .row > .icon p{
      font-size: 2.542vw;
    }
    .card > .row > .description {
      position: absolute;
      left: 30%;
      bottom: 3%;
      justify-content: space-between;
      transform: rotate(-90deg) !important;
      width: 100%;
      height: 200px;
    }
    .card .row .icon {
      width: 14vw;
    }
    .description p.desc-data{
      font-size: 2.542vw;
      line-height: 4.063vw;

    }
    button.get-btn{
      width: 30vw;
      font-size: 2.542vw;
      padding:  2vw;
    }
    
button.get-btn img{
  width: 10px !important;
  height: 10px  !important;
}
    /* new design code */
.new-row{
  flex-direction: column;
}
.new-cards{
  flex-wrap: nowrap;
}
.new-card{
  height: 80px;
  max-width: 300px;
  transition: height 1s linear;

}
.new-card-active{
  height: 300px;
}
.new-card-body{
  flex-direction: column;
  
}
.side-green{
  max-height: 80px;
  max-width: 100%;
}
.new-card-body .side-green{
  display: none;
}
.new-card-active .side-green{
  display: block;
}

    


   /* client section code */
   section.client-review-section{
    height: 100%;
   }
   .vector-review-box{
    position: relative;
    margin-top: 8vmin;
    width: 80vw;
    height: 40vw;
}
.client-box h1{
  font-size: 7.083vw;
  line-height: 9.125vw;
}
p.client-subtitle{
  font-size: 2.542vw;
  line-height: 4.063vw;
  text-align: center;
}
.client-review-card p{
  font-size: 2.542vw;
  line-height: 4.063vw;
  
}
.client-text-info{
  margin-top: 5vmin;
}
.left-blue-arr{
  left: -3vw;
  width: 8vw;
  height: 8vw;
}

.left-blue-arr img{
  height: 2.9vw;
  width: 2.9vw;
  transform: rotate(180deg);
}
.right-blue-arr{
  right: -3vw;
  width: 8vw;
  height: 8vw;
}

.right-blue-arr img{
  height: 2.9vw;
  width: 2.9vw;
}
  .client-imgs .img1{
    position: absolute;
    right:0vw;
    top:11vw;
    height: 6vw;
    width: 6vw;
  }

  .client-imgs .img2{
    position: absolute;

    right:2vw;
    top:25vw;
    height: 4.5vw;
    width: 4.5vw;
  }
  .client-imgs .img3{
    position: absolute;

    left:10vw;
    top:30vw;
    height: 4.5vw;
    width: 4.5vw;
  }
  .client-imgs .img4{
    position: absolute;
    left:14vw;
    top:5vw;
    height: 4vw;
    width: 4vw;
  }
  .vector-box{
    background-image: none;
    width: 100%;
    height: 100%;
  }
  .client-review-card{
    margin-top: 0px;
    border-radius: 20px;
    height: 100px;
    width: 300px;
  }
  .card-slider-1{
    padding:5px;
    border-radius: 20px;
    height: 90%;
    width: 100%;

  }
  .card-container-1{
    border-radius: 20px;
  }
  .card-ki{
    margin-top: 0px;
    border-radius: 20px;
    height: 100px;
    width: 300px;
  }

  button.prev-btn{
    left:0;
    width: 7vw;
    height: 7vw;
  }
  button.next-btn{
    right:0;
    width: 7vw;
    height: 7vw;
  }
  button.prev-btn img{
    height: 2vw;
    width: 2vw;

  }
  button.next-btn img{
    height: 2vw;
    width: 2vw;
  }


  /* portfolio section code */
  .portfolio-box{
    width: 90vw !important;
  }
  .portfolio-section{
   /* background-image: url("../assets/images/mob-portfolio-img.jpg"); */
   background: 03A2EB;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100dvh !important;
    border:1px solid red;
  }
  .portfolio-img-container{
height: 70dvh;
    /* border:1px solid yellow; */
  }
  h1.portfolio-title{
    font-size: 6.083vw;
  line-height: 8.125vw;
    margin-top: 5vmin;
  }
  .btn-section{
    flex-wrap: wrap;
  }
  .port-btn{
    margin-top: 2vw;
    width: 40%;
    padding: 2vw 0vw;
    font-size: 3.542vw;
  line-height: 5.063vw;
  }
  .portfolio-img-section{
display: flex;
flex-wrap: wrap;
height: 65dvh !important;
width: 100%;
gap:0;
/* border:1px solid white; */
align-items: center !important;

    /* gap: 10px !important;
    width: 100%;
    padding: 0;
    overflow-y: scroll; */

  }
  .portfolio-img-section img{
    width:48%;
  }

    /* core value code */
      
    .core-values-section{
      margin-top: 0px;
    }
    .core-value-cards{
      flex-direction: column;
      justify-content: space-between;
      gap:5vw;
      margin-top: 30px;
      
    }
    .green-shadow{
      justify-content: start;
    }
    .core-value-box{
      margin-top: 15vmin;
    }
    .core-value-box h1{
      font-size: 7.083vw;
  line-height: 9.125vw;
    }
    .core-value-cards p{
      font-size: 4.542vw;
      line-height: 5.063vw;
    }

    .integrity img{
      width: 17vw;
      height: 17vw;
    }
    .lets-build-approach-section{
      display: none;
      margin-top: 20px;
    }
    

    /* footer code goes here */

    footer{
      margin-top: 60px;
    }
   
    img.footer-logo-img{
      width: 32vw;
      height: 14vw;
  }
  .contact-logo{
    gap: 3vw;
  }
  
.social-logo img{
  margin-top: 3vw;
  width: 7vw;
  height: 7vw;
  
 }
 
 .contact-text p{
  font-size: 3.542vw;
  padding: 5vw;

 }
 
.contact-logo-img {
 
  width: 8vw;
  height: 8vw;

}

.contact-logo-img img{
  height: 50%;
  width: 50%;
}
.copyright-text p{
  font-size: 3.542vw;
  padding: 5vw;
}
}

 