*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
html {
  cursor: none;
}




#cursor {
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid gray;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: absolute;
  z-index: 99999999999999;
}
::-webkit-scrollbar {
  width: 5px;
  height: 15px;
  background-color:gray;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/*style the thumb of your scrollbar*/
::-webkit-scrollbar-thumb {
  background: #001e48; 
  border-radius: 10px;
  box-shadow: 0px 0px 15px #001e48; 

}

@keyframes cursorAnim {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(.7);
  }
}

@keyframes cursorAnim2 {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(.4);
  }
}

@keyframes cursorAnim3 {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(3);
  }
  100% {
      transform: scale(1);
      opacity: 0;
  }
}
a,button{
    cursor: none;
}
@font-face {
    font-family: "ARP";
    src: url("fonts/ARP-150.ttf");
    }
    .side-menu{
      display: none;
    }
.hero-banner{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(-45deg, #000112, #001e48, #000112, #001e48);
	background-size: 400% 400%;
	animation: gradient 7s ease infinite;
    justify-content: space-between;
}
.hero-banner.services{
  height: 60px;
}
nav{

    padding: 20px 30px;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo{
  cursor: none;
}
nav .logo img{
  width: 200px;
}
nav ul{
  display: flex;
  gap: 35px;
}
nav ul li{
  list-style: none;

}
nav ul li a{
  cursor: none !important;
  color: #0D1929;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
nav ul li.dropdown:hover .dropdown-menu {
display: block;
}

nav ul li.dropdown {
position: relative;
}

nav ul li .dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #E4F3FC;
width: 200px;
text-align: left;
z-index: 3;
transition: 0.3s;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
nav ul li .dropdown-menu li:hover{
background-color: #001e48;
color: #E4F3FC;
}
nav ul li .dropdown-menu li:hover a {
color: #E4F3FC;
}
nav ul li .dropdown-menu li {
transition: .5s;
border-bottom: .5px solid #001e48;
display: block;
padding: 20px;
}
nav ul li .dropdown-menu li a{
color: #001e48;
font-size: 14px;
}
.dropdown-menu-mobile{
display: none;
}
.hero-banner-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.hero-banner-content h1{
    width: 51vw;
    text-align: center;
    font-family: ARP;
    color: #E4F3FC;
    font-size: 36px;
    line-height: 125%;
}
.hero-banner-content p{
    width: 50vw;
    text-align: center;
    color: #E4F3FC;
    font-size: 20px;
    line-height: 150%;
}
.hero-banner-button{
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 15px;
  border:  1px solid #FFF;
  background: transparent;
  color: #E4F3FC;
  font-size: 16px;
  transition: .5s;
}
.hero-banner-button:hover{
  background-color: #E4F3FC;
  color: #001e48;
}
div.carousel-slider {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 40vh;
}
div.carousel-slider div.carousel-barrier {
    overflow: hidden;
    position: relative;
}
div.carousel-slider ul.carousel-lane {
    display: flex;
    height: 100%;
}
div.carousel-slider ul.carousel-lane li.carousel-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #343434;
}
div.carousel-slider ul.carousel-lane li.carousel-item img{
    object-fit: cover;
    width: 25vw;
}
@keyframes translatestf {
    0% {
        transform: translateX(100%);
   }
    100% {
        transform: translateX(-500%);
   }
}
#stffull div.carousel-barrier ul.carousel-lane {
    width: 500%;
}
#stffull div.carousel-barrier ul.carousel-lane li.carousel-item {
    animation: translatestf 30s linear infinite;
}
#stffull div.carousel-barrier ul.carousel-lane li.carousel-item h4 {
    font-size: 28px;
}
@keyframes translateinfinite {
    100% {
        transform: translateX(calc(-180px * 12));
   }
}
#infinite div.carousel-barrier {
    background: #fff;
    box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.3);
}
#infinite div.carousel-barrier::before, #infinite div.carousel-barrier::after {
    content: " ";
    position: absolute;
    z-index: 9;
    width: 180px;
    height: 100%;
}

#infinite div.carousel-barrier ul.carousel-lane {
    width: calc(180px * 24);
}
#infinite div.carousel-barrier ul.carousel-lane li.carousel-item {
    width: 25vw;
    animation: translateinfinite 25s linear infinite;
}


.about-us{
    background-color: #E4F3FC;
    text-align: center;
    padding: 70px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.about-us h6{
    width: 70vw;
    font-size: 21px;
    font-weight: 400;
    color: #0D1929;
    line-height: 150%;
    margin-bottom: 50px;
}
.about-us h6 span{
    font-size: 17px;
    font-family: ARP;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 400% 400%;
    background-image:linear-gradient(-45deg,#03295a, #6aa6cb, #03295a, #182e4b, #6aa6cb,#182e4b);
    animation:  animate 5s ease infinite;
}
@keyframes animate{
    0%{
        background-position: 0 0;
    }
    25%{
        background-position: 100% 0;
    }
    50%{
        background-position: 100% 100%;
    }
    75%{
        background-position: 0 100%;
    }
    100%{
        background-position: 0 0;
    }
}
.about-us a{
    width: fit-content;
    border: 1px solid #0D1929;
    color: #0D1929;
    border-radius: 5px;
    padding: 8px 25px;
    font-size: 16px;
    text-decoration: none;
    transition: .5s;
}
.about-us a:hover{
    background-color: #03295a;
    color: #FFF;
}


/*Our services*/
.our-services{
  background: linear-gradient(-45deg, #000112, #001e48, #000112, #001e48);
	background-size: 400% 400%;
	animation: gradient 1 ease infinite;
    padding: 40px 90px 0px 90px; /*change left-right padding if required for responsivness*/
}
 h2{
    font-family: ARP;
    text-align: center;
    color: #E4F3FC;
    font-size: 27px;
    line-height: 150%;
}

.our-services .ind-services {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When in view, reveal the elements */
.our-services .ind-services.in-view {
    opacity: 1;
    transform: translateY(0);
}

.our-services hr {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}

/* When in view, reveal the elements */
.our-services hr.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Initially, hide the elements by moving them up and setting opacity to 0 */
.our-services .ind-services ul li{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.our-services .ind-services a{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}
.our-services .ind-services a.in-view{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}
/* When in view, reveal the elements */
.our-services .ind-services.in-view ul li{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Delayed animation for li items */
.our-services .ind-services.in-view ul li:nth-child(1) {
    transition-delay: 0.5s; /* 0.5s delay for the first li */
}

.our-services .ind-services.in-view ul li:nth-child(2) {
    transition-delay: 0.55s; /* 0.6s delay for the second li */
}

.our-services .ind-services.in-view ul li:nth-child(3) {
    transition-delay: 0.6s; /* 0.7s delay for the third li */
}

.our-services .ind-services.in-view ul li:nth-child(4) {
    transition-delay: 0.65s; /* 0.9s delay for the fourth li */
}

.our-services .ind-services.in-view ul li:nth-child(5) {
    transition-delay: .7s; /* 1s delay for the fifth li */
}
.our-services .ind-services.in-view ul li:nth-child(6) {
    transition-delay: .75s; /* 1s delay for the fifth li */
}



.our-services p{
    padding: 15px 150px 0px 15px;
    font-size: 18px;
    text-align: center;
    color: #E4F3FC;
    line-height: 150%;
    margin-bottom: 30px;
}
.ind-services{
    padding: 40px 0px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.ind-services .first-col h3{
    font-weight: 600;
    color: #E4F3FC;
    font-size: 32px;
    line-height: 150%;
}
.ind-services .first-col ul{
    padding: 15px 0px 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ind-services .first-col ul li{
    font-weight: 400;
    color: #E4F3FC;
    font-size: 18px;
    line-height: 150%;
}
.ind-services .first-col a{
    border: 1px solid #E4F3FC;
    border-radius: 5px;
    padding: 8px 25px;
    font-size: 16px;
    text-decoration: none;
    transition: .5s !important;
    color: #E4F3FC;
}
.ind-services .first-col a:hover{
  transition: .5s !important;
  color: #03295a;
  background-color: #E4F3FC;
}
.ind-services .second-col img{
    height: 320px; /*make responsive*/
}
.our-services hr{
    border:  .3px solid #E4F3FC;
}
.our-works h2{
    color: #0D1929;
}
.our-works{
    padding: 60px 0px;
  
}
.slding-text.services{
  margin-bottom: 120px;
}
.button-row-custom{
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-works button{
  margin-top: 20px;
  text-align: center;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background-color: #03295a;
  color: #FFF;
  font-size: 16px;
  transition: .5s;
}
.our-works button:hover{
  background-color: #FFF;
  color: #001e48;
}
.our-works p{
    padding: 15px 150px 40px 150px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #0D1929;
    line-height: 150%;
    margin-bottom: 30px;
}
.ind_project{
    padding: 120px 90px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (min-width: 1200px) and (max-width: 1500px){
  .ind_project{
    padding: 150px 90px;
}
}
@media (min-width: 1500px) and (max-width: 3000px){
  .ind_project{
    padding: 180px 90px;
}
}
.ind_project h3{
    font-family: ARP;
    margin-bottom: 10px;
    font-size: 24px;
    color: #FFF;
}
.ind_project p{
    text-align: left;
    width: 32vw;
    padding: 0px;
    color: #FFFF;
}
.ind_project a{
    border: 1px solid #FFF;
    border-radius: 5px;
    padding: 8px 25px;
    font-size: 16px;
    text-decoration: none;
    transition: .5s;
    color: #FFF;
    transition: .5s;
}
.ind_project a:hover{
  background-color: #E4F3FC;
  color: #0D1929;
}
.ind_project.second h3{
    color: #E4F3FC;
}
.ind_project.second p{
    color: #E4F3FC;
}
.ind_project.second a{
    border: 1px solid #E4F3FC;
    transition: .5s;
    color: #E4F3FC;
}
.ind_project.second a:hover{
  background-color: #E4F3FC;
  color: #0D1929;
}
.ind_project.third h3{
  color: #0D1929;
}
.ind_project.third p{
  color: #0D1929;
}
.ind_project.third a{
  border: 1px solid #0D1929;
  transition: .5s;
  color: #0D1929;
}
.ind_project.third a:hover{
  background-color: #0D1929;
  color: #E4F3FC;
}
/* Apply the transitions to h3, p, and a elements */
.ind_project h3,
.ind_project p,
.ind_project a {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Add a class for animations */
.ind_project.animate h3,
.ind_project.animate p,
.ind_project.animate a {
    transform: translateY(0);
    opacity: 1;
}

.icon-text-row {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.icon-text-row.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Initially hide the hr elements */
.hr-one,
.hr-two,
.hr-three,
.hr-four,
.hr-five,
.hr-six {
    opacity: 0;
   
}
.hr-one{
    transition: opacity 0.5s ease-in-out,  transform 0.5s ease;;
}

.hr-two{
    transition: opacity 0.65s ease-in-out,  transform 0.5s ease;;
}
.hr-three{
    transition: opacity 0.8s ease-in-out,  transform 0.5s ease;;
}
.hr-four{
    transition: opacity 0.95s ease-in-out,  transform 0.5s ease;;
}

.hr-one.animate,
.hr-two.animate,
.hr-three.animate,
.hr-four.animate,
.hr-five.animate,
.hr-six.animate{
    opacity: 1;
    transform: translateY(0);
}

.work-with-us{
  background: linear-gradient(-45deg, #000112, #001e48, #000112, #001e48);
	background-size: 400% 400%;
	animation: gradient 1 ease infinite;
    padding: 40px 90px;
}
.work-with-us .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.work-with-us .row hr{
    border: .4px solid #E4F3FC;
}
.icon-text-row{
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 25px 0px;
}
.icon-text-row img{
    width: 50px;
}
.icon-text-row h6{
    color: #E4F3FC;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}
.icon-text-row p{
    width: 32vw;
    font-size: 15px;
    color: #E4F3FC;
    line-height: 150%;
}
.work-with-us .row .vr{
    height: 300px;
    border: .5px solid #E4F3FC;
}
.mobile-work-withus-hr{
  display: none;
} 


.sliding-container {
  background-color: #E4F3FC;
  display: flex;
  align-items: center;
  height: 10vh;
  overflow: hidden;
}

.scroll-text {
  white-space: nowrap;
  margin: 0 2em;
}

.scroll-text div {
  display: flex;
  gap: 2em;
}

.scroll-text h5 {
  color: #0D1929;
  opacity: .32;
  font-family: ARP;
  font-size: 27px;
  text-align: center;
  margin-bottom: 0;
  line-height: 10px;
}

.righttoleft {
  animation: RightToLeft 10s infinite linear;
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}




  
  .scroll-text h5 {
    float: left;
    width: 50%;
    color: #0D1929;
    opacity: .32;
    font-family: ARP;
    font-size: 27px;
    text-align: center;
  }
  


.testimonials{
    padding: 60px 20px;
  }
  .testimonail_content h2{
    color: #0D1929;
  }
  .slideshow-container {
   
    max-width: 90%;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    margin-top: 20px;
    display: none;
    
  }
  .sliders_row{
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 27px;
    height: 27px;
    margin-top: -22px;
    padding: 16px;
    color: #000;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    cursor: pointer;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: -80px;
    
  }
  .prev{
    left: -80px;
  }
  .prev img, .next img{
    width: 18px;
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  .ind_test_container{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 420px;
  }
  .ind_test_container:hover{
    /* box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.05); */
  }
  .ind_test_container h4{
    color: #0D1929;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    text-transform: capitalize;
    margin-bottom: 10px;
  }
  .ind_test_container img{
    margin-bottom: 10px;
    width: 40px;
  }
  .ind_test_container p{
    text-align: justify;
    color: #0D1929;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 32.4px */
    line-height: 150%;
  }
  .ind_test_container .testimonails-desc{
    height: 300px;
  }
  .ind_test_container hr{
    margin: 15px 0px;
  }
  .ind_test_container h6, .ind_test_container .name{
    font-size: 15px;

  }
  
.blog-content h2{
  color: #0D1929;
}
.blog-section .vr{
  border: .5px solid #0D1929;
}
.blog-section{
  margin: 30px 0px 60px 0px;
}
.blog-row {
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}
.blog-box{
  width: 35vw;
  transition: .5s;
}
.blog-box:hover img{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.blog-box img{
  transition: .5s;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-box h4{
  margin: 10px 0 5px 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 21px;
  font-weight: 500;
  line-height: 150%;
  color: #0D1929;
}
.blog-box p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: #0D1929;
  margin-bottom: 15px;
}
.blog-box  button{
  font-size: 15px;
  color: #0D1929;
  padding: 5px 10px;
  border: 1px solid #0D1929;
  background-color: transparent;
  border-radius: 6px;
  transition: .5s;
}
.blog-box button:hover{
  color: #E4F3FC;
  background-color: #000112;
}
.blog-col{
  display: flex;
  flex-direction: column;
  gap: 40px;
}


  .contact-us{
    background-color: #E4F3FC;
    padding: 75px;
    min-height: auto;
  }
  .contact-content{
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .contact-content .first-col h2{
    color: #001e48;
    text-align: left;
  }
  .contact-content .first-col p{
    margin-top: 10px;
    width: 90%;
    font-size: 18px;
    line-height: 150%;
    color: #0D1929;
  }
  .contact-content .first-col h2,
.contact-content .first-col p,
.contact-content .second-col {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.5s ease, opacity 0.65s ease 0.15s;
}

.contact-content .second-col {
  transition-delay: 0.6s;
}

  .second-col{
    background-color: #0D1929;
  }
  .second-col form{
    padding: 50px 50px 30px 50px;
    display: flex;
    box-shadow: #0D1929 0px 8px 24px;
    flex-direction: column;
  }
  .second-col form input{
    background-color: transparent;
    width: 550px;
    margin-bottom: 45px;
    outline: 0;
    border-width: 0 0 1px;
    border-color: #E4F3FC;
    color: #E4F3FC;
    font-size: 15px;
    line-height: 150%;
  }
  ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #E4F3FC;
    opacity: 1; /* Firefox */
  }
  
  .second-col form button{
    margin-top: 15px;
    border: 1px solid #0D1929;
    border-radius: 5px;
    padding: 10px 25px;
    background-color: #E4F3FC;
    font-size: 16px;
    text-decoration: none;
    transition: .5s;
    color: #0D1929;
    width: fit-content;
    font-weight: 600;
  }
  .contact-us hr{
    margin: 50px 0px;
    border: .5px solid #0D1929;
  }
  footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer img{
    width: 300px;
  }
  footer ul{
    gap: 40px;
    display: flex;
    align-items: center;
  }
  footer ul li{
    list-style: none;
  }
  footer ul li a{
    cursor: none !important;
    text-decoration: none;
    color: #0D1929;
    font-size: 18px;
  }
  #thankYouMessage{
    font-size: 18px;
    line-height: 150%;
    

  }
  /* newline added */
  footer .footer-img{
    width: 30px;
  }
  .mobile-footer{
  display: none !important;
}
  /* newline added */
  footer ul ul {
    gap: 15px;
  }

  @media (min-width: 691px) and (max-width: 1072px){
    nav{
        padding: 15px 20px;
    }
    nav .logo img{
        width: 170px;
    }
    nav ul{
        gap: 25px;
    }
    nav ul li a{
        font-size: 16px;
    }
    .hero-banner-content{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        
    } 
    .hero-banner-content h1{
        width: 90vw;
        font-size: 27px;
    }
    .hero-banner-content p{
        width: 70vw;
        font-size: 18px;
    }
    div.carousel-slider {
        width: 100%;
        height: 200px;
    }

.about-us{
    padding: 50px 0px;
    margin-top: 90px;
}
.about-us h6{
    width: 70vw;
    font-size: 18px;
    margin-bottom: 30px;
}
.about-us h6 span{
    font-size: 15px;
}
.about-us a{
    border-radius: 5px;
    padding: 6px 20px;
    font-size: 14px;
}




/*Our services*/
.our-services{
    padding: 30px 50px 0px 50px; /*change left-right padding if required for responsivness*/
}
 h2{
    font-size: 24px;
}

.our-services .ind-services {
    transform: translateY(10px);
}


.our-services p{
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
}
.ind-services{
    padding: 30px 0px;
}
.ind-services .first-col h3{
    font-size: 24px;
}
.ind-services .first-col ul{
    padding: 15px 0px 30px 15px;
    gap: 6px;
}
.ind-services .first-col ul li{
    font-size: 14px;
}
.ind-services .first-col a{
    padding: 8px 25px;
    font-size: 15px;
}
.ind-services .second-col img{
    height: 200px; /*make responsive*/
}

.our-works{
    padding: 30px 0px;
}
.our-works button{
  margin-top: 20px;
  padding: 8px 12px;
  font-size: 14px;
}
.slding-text.services{
  margin-bottom: 70px;
}
.our-works p{
    padding: 15px 50px;
    font-size: 16px;
    margin-bottom: 30px;
}
.ind_project{
    padding: 40px 40px;
}
.ind_project h3{
    margin-bottom: 10px;
    font-size: 18px;
}
.ind_project p{
    padding: 0px;
    font-size: 14px;
    width: 32vw;
}
.ind_project a{
    padding: 4px 15px;
    font-size: 14px;
}

.work-with-us{
    padding: 30px 30px;
}
.work-with-us .row{
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}
.icon-text-row{
    gap: 8px;
    margin: 15px 0px;
}
.icon-text-row img{
    width: 30px;
}
.icon-text-row h6{
    font-size: 18px;
    margin-bottom: 7px;
}
.icon-text-row p{
    width: 32vw;
    font-size: 13px;
}
.work-with-us .row .vr{
    height: 300px;
}
.slding-text{
    padding: 10px 0px;
}

  .scroll-text h5 {
    font-size: 20px;
  }
  

  .blog-section{
    margin: 25px 0px 45px 0px;
  }
  .blog-row {
    margin-top: 20px;
  }
  .blog-box{
    width: 35vw;
  }
  .blog-box img{
    width: 100%;
    height: 180px;
  }
  .blog-box h4{
    margin: 10px 0 5px 0;
    font-size: 18px;
  }
  .blog-box p{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .blog-box  button{
    font-size: 15px;
    padding: 4px 8px;
  }
  .blog-col{
    gap: 30px;
  }

.testimonials{
    padding: 30px 10px;
  }

  .mySlides {
    margin-top: 15px;
  }
  .sliders_row{
    display: flex;
    gap: 10px;
  }
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -22px;
    padding: 12px;
    font-size: 18px;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: -60px;
    
  }
  .prev{
    left: -60px;
  }
  .prev img, .next img{
    width: 12px;
  }
  .ind_test_container{
    padding: 20px;
    width: 320px;
    height: 430px;
    padding: 15px;
  }
  .ind_test_container img{
    margin-bottom: 10px;
    width: 30px;
  }
  .ind_test_container p{
    font-size: 11px;
  }
  .ind_test_container .testimonails-desc{
    height: 300px;
  }
  .ind_test_container hr{
    margin: 15px 0px;
  }
  .ind_test_container h6, .ind_test_container .name{
    font-size: 13px;
  
  }


  .contact-us{
    background-color: #E4F3FC;
    padding: 60px;
  }
  .contact-content .first-col h2{
    font-size: 20px;
  }
  .contact-content .first-col p{
    margin-top: 10px;
    width: 90%;
    font-size: 15px;
  }

  .second-col form{
    padding: 30px 30px 20px 30px;
  }
  .second-col form input{
    width: 350px;
    margin-bottom: 45px;
    font-size: 15px;
  }
  
  .second-col form button{
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 14px;
  }
  .contact-us hr{
    margin: 50px 0px;
    border: .5px solid #0D1929;
  }
  footer img{
    width: 200px;
  }
  footer ul{
    gap: 40px;
  }
  footer ul li a{
    font-size: 15px;
  }
  #thankYouMessage{
    font-size: 15px;
    line-height: 150%;

  }
  }

  @media (min-width: 575px) and (max-width: 690px){
  .ind_test_container{
    height: 250px;
  }
  .work-with-us{
    padding: 20px 20px;
  }
  .work-with-us h2{
    font-size: 21px;
  }
}
  @media (min-width: 300px) and (max-width: 574px){
    .ind_test_container{
      height: 350px;
    }
    .work-with-us{
      padding: 20px 5px;
    }
    .work-with-us h2{
      font-size: 18px;
    }
}
  @media (min-width: 300px) and (max-width: 690px){
    #cursor {
      display: none;
  }
    nav{
      width: 100%;
      padding: 0px;
      padding-top: 20px;
      }
      nav .logo{
        padding-left: 10px;
         width: 170px;
      }
  nav .side-menu{
      padding-right: 20px;
  }
  .nav-links{
      position: absolute;
      background: #E4F3FC;
      width: 200px;
      height: 100vh;
      top: 0;
      right: -200px;
      text-align: left;
      align-items: center;
      z-index: 2;
      transition: 1s;
      display: none;
  
  }
  .nav-links ul li{
      display: block;
      padding-top: 20px;
      margin-bottom: 20px;
      align-items: center;
   
  }
  nav .side-menu{
      width: 20px;
      display: block;
      color: #000;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
      
  }
  .nav-links ul li{
    padding-right: 0px;
  }
  .nav-links ul{ 
      padding: 10px 40px;
      flex-direction: column;
      text-align: left;
      justify-content: center;
      gap: 10px;
      
  }
  .nav-links ul li a{
    font-size: 14px;
    line-height: 21px;
    color: #001e48;
  }
  .dropdown-menu{
    display: none !important;
  }
  .dropdown-menu-mobile {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: left !important;
    padding:0px 20px !important;
    margin: 0 !important;
}
.nav-links ul li{
  margin-bottom: 0px !important;
}

.dropdown-menu-mobile li a{
  font-size: 12px !important;
text-align: left !important;
}
/* Show the mobile menu with animation */
.dropdown-menu-mobile.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
  .hero-banner-content{
      gap: 20px;
      padding-top: 90px;
      padding-bottom: 40px;
      
  } 
  .hero-banner-content h1{
      width: 90vw;
      line-height: 150%;
      font-size: 18px;
  }
  .hero-banner-content p{
      width: 90vw;
      font-size: 16px;
  }
  div.carousel-slider {
      width: 100%;
      height: 200px;
  }
  div.carousel-slider ul.carousel-lane li.carousel-item {
    object-fit: cover !important;
    width: 20% !important;
}
div.carousel-slider ul.carousel-lane li.carousel-item  img{
  width: 100%;
  object-fit: cover;
}

.about-us{
  padding: 40px 0px;
  margin-top: 0px;
}
.about-us h6{
  width: 90vw;
  font-size: 16px;
  margin-bottom: 30px;
}
.about-us h6 span{
  font-size: 13px;
}
.about-us a{
  border-radius: 5px;
  padding: 6px 20px;
  font-size: 14px;
}




/*Our services*/
.our-services{
  padding: 30px 10px 0px 10px; /*change left-right padding if required for responsivness*/
}
h2{
  font-size: 20px;
}

.our-services .ind-services {
  transform: translateY(10px);
}
.our-services p{
  padding: 15px;
  font-size: 14px;
  margin-bottom: 20px;
}
.ind-services{
  padding: 20px 20px;
  flex-direction: column;
  gap: 30px;
}
.ind-services .first-col h3{
  font-size: 22px;
}
.ind-services .first-col ul{
  padding: 15px 0px 30px 15px;
  gap: 6px;
}
.ind-services .first-col ul li{
  font-size: 15px;
}
.ind-services .first-col a{
  padding: 8px 15px;
  font-size: 13px;
}
.ind-services .second-col img{
  display: none; 
}

.our-works{
  padding: 30px 0px 60px 0px;
}
.our-works button{
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 13px;
}
.our-works p{
  padding: 15px 20px;
  font-size: 14px;
  margin-bottom: 30px;
}
.slding-text.services{
  margin-bottom: 40px;
}
.ind_project{
  background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 30px;
  height: 30vh;
  position: relative;
}
.ind_project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust the color and opacity as needed */
}
.ind_project h3{
  margin-bottom: 10px;
  font-size: 16px;
}
.ind_project p{
  padding: 0px;
  font-size: 14px;
  width: 50vw;
}
.ind_project a{
  text-align: left;
  padding: 3px 12px;
  font-size: 13px;
}
.ind_project.third h3 {
  color: #E4F3FC;
}
.ind_project.third a {
  border: 1px solid #E4F3FC;
  color: #E4F3FC;
}
.ind_project.ind_project.third{
  background-image: url('assets/saanjh-home-mockup mobile.png') !important;
}
.button-row-custom{
  margin-top: 20px;
}

.work-with-us .row{
  gap: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.work-with-us .first-col{
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}
.icon-text-row{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0px 0px;
}
.icon-text-row .text{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.icon-text-row img{
  width: 36px;
  margin-bottom: 5px;
}
.icon-text-row h6{
  font-size: 16px;
  margin-bottom: 9px;
}
.icon-text-row p{
  width: 80vw;
  font-size: 14px;
  margin-bottom: 30px;
}
.mobile-work-withus-hr{
  display: block !important;
  width: 100%;
  border: .1px solid #E4F3FC;
}
.work-with-us .row .vr{
  display: none;
}
.work-with-us hr{
  display: none;
}
.slding-text{
  padding: 10px 0px;
}

.scroll-text h5 {
  font-size: 16px;
}




.testimonials{
  padding: 30px 10px;
}

.mySlides {
  margin-top: 15px;
}
.sliders_row{
  display: flex;
  gap: 10px;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -22px;
  padding: 12px;
  font-size: 18px;
}

/* Position the "next button" to the right */

.prev img, .next img{
  width: 12px;
}
.ind_test_container{
  padding: 20px;
  width: 300px;
 
}
.ind_test_container img{
  margin-bottom: 10px;
  width: 25px;
}
.ind_test_container p{
  font-size: 12px;
}
.ind_test_container .testimonails-desc{
  height: fit-content;
}
.ind_test_container hr{
  margin: 15px 0px;
}
.ind_test_container h6, .ind_test_container .name{
  font-size: 12px;

}
.sliders_row .ind_test_container:nth-child(2){
  display: none !important;
}
.sliders_row .ind_test_container:nth-child(3){
  display: none !important;
}
.blog-section{
  margin: 25px 0px 45px 0px;
}
.blog-col{
  gap: 40px;
}
.blog-row {
  margin-top: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.blog-section .vr{
  display: none !important;
}
.blog-box{
  width: 80vw;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.blog-box img{
  width: 80vw;
  height: 180px;
}
.blog-box h4{
  margin: 10px 0 5px 0;
  font-size: 16px;
}
.blog-box p{
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
  font-size: 13px;
  margin-bottom: 8px;
  -webkit-box-orient: vertical;

}
.blog-box  button{
  font-size: 14px;
  padding: 4px 8px;
}
.blog-col{
  gap: 30px;
}



.contact-us{
  background-color: #E4F3FC;
  padding: 30px 20px;
}
.contact-content {
  flex-direction: column;
  gap: 30px;
}
.contact-content .first-col h2{
  text-align: center;
  font-size: 18px;
}
.contact-content .first-col p{
  margin-top: 10px;
  width: 100%;
  font-size: 14px;
  text-align: center;
}

.second-col form{
  padding: 30px 30px 20px 30px;
}


.second-col form button{
  margin-top: 8px;
  padding: 8px 15px;
  font-size: 13px;
}
.contact-us hr{
  display: none;
}
footer{
  display: none;
}
footer img{
  width: 200px;
}
footer ul{
  gap: 40px;
}
footer ul li a{
  font-size: 15px;
}
.our-works .ind_project p{
  display: none;
}
#thankYouMessage{
  margin-top: 20px;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
}

.mobile-footer{
  margin-top: 40px;
  list-style: none;
  display: flex !important;
  justify-content: center;
  gap: 15px;
}
.mobile-footer .footer-img{
  width: 20px;
}
}
@media (min-width: 300px) and (max-width: 430px){
  .ind_test_container{
    width: 300px;
    height: fit-content;
  }
  .ind_test_container .testimonails-desc{
    height: fit-content;
  }
}
@media (min-width: 300px) and (max-width: 400px){

  .second-col form input{
    width: 260px;
  }
}
@media (min-width: 300px) and (max-width: 400px){
  
  .second-col form input{
    width: 280px;
  }
  .next {
    right: -10px;
    
  }
  .prev{
    left: -10px;
  }
}
@media (min-width: 300px) and (max-width: 344px){
  .work-with-us h2{
    padding: 0px 40px;
  }
}
@media (min-width: 344px) and (max-width: 400px){
  .work-with-us h2{
    padding: 0px 70px;
  }
}
@media (min-width: 401px) and (max-width: 690px){
  .second-col form input{
    width: 320px;
  }
  .next {
    right: -10px;
  }
  .prev{
    left: -10px;
  }
}
@media (min-width: 1073px) and (max-width: 1273px){
  .ind_test_container {
    height: 440px !important;
}
.ind_test_container .testimonails-desc {
    height: 350px !important;
}
}
@media (min-width: 1072px) and (max-width: 1358px){
  .ind_test_container p{
    font-size: 14px !important;
  }
  .ind_test_container .name{
    font-size: 12px !important;
  }
}