*{
    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; 

}
.featured-works{
  padding-top: 50px;
  margin-bottom: 40px;
}
.featured-works h1{
  text-align: center;
  font-family: ARP;
  font-size: 30px;
  margin-bottom: 40px;
  color: #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;
  }
}
@font-face {
    font-family: "ARP";
    src: url("fonts/ARP-150.ttf");
    }
    .side-menu{
      display: none;
    }
    .hero-banner{
        background-color: #FFF;
        width: 100%;
     
    }
    nav{
   
        padding: 20px 30px;
        background-color: #FFF;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
  nav .logo{
      cursor: pointer;
  }
  nav .logo img{
      width: 200px;
  }
  nav ul{
      display: flex;
      gap: 35px;
  }
  nav ul li{
      list-style: none;
  
  }
  nav ul li a{
      cursor: pointer !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-content{
        height: 100px;
        background-color: transparent;
        padding: 30px 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        background-size:     cover;                      /* <------ */
        background-repeat:   no-repeat;
        background-position: top center;   
    }
    .hero-content h1{
        font-family: ARP;
        font-size: 30px;
        color: #001e48;
    }
    
      .contact-us{
        background-color: #E4F3FC;
        padding: 75px;
      }
      .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;
      }
      .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;
      }
      .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;
  }
      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;
      }
      .works {
        padding: 10px;
        margin-top: 0px !important;
        margin-bottom: 50px;
    }
    
    .two-row,
    .three-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
       
    }
    
    .image-container {
        position: relative;
        width: 33%; /* Adjust as needed */
        overflow: hidden;
    }
    .featured-works .image-container{
      height: 400px;
    }
    .image-container.one{
      width: 49.7% !important;
    }
    
    .image-container img {
      object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7); /* Adjust overlay background color and opacity */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding-left: 30px;
       
    }
    
    .image-container:hover .overlay {
        opacity: 1;
        width: 100%;
    }
    
    .overlay h3 {
        color: white;
        font-size: 18px;
        padding-bottom: 10px;
    }
    
    .overlay p {
      width: 90%;
        color: white;
        font-size: 14px;
        padding-bottom: 15px;
    }
    @keyframes slideInFromLeft1 {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(0);
      }
    }
    
    @keyframes slideInFromLeft2 {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(0);
      }
    }
    
    @keyframes slideInFromLeft3 {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(0);
      }
    }

    h2{
      font-family: ARP;
      text-align: center;
      color: #E4F3FC;
      font-size: 27px;
      line-height: 150%;
  }
    .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;
  
    }





    .two-row .image-container.one:nth-child(1) {
      animation: slideInFromLeft1 1.5s;
    }
    
    .two-row .image-container.one:nth-child(2) {
      animation: slideInFromLeft2 1.2s;
    }
    
    .three-row .image-container.two:nth-child(1) {
      animation: slideInFromLeft1 1.5s;
    }
    
    .three-row .image-container.two:nth-child(2) {
      animation: slideInFromLeft2 1.2s;
    }
    
    .three-row .image-container.two:nth-child(3) {
      animation: slideInFromLeft3 1s;
    }
    
    .overlay button{
      cursor: none;
        font-size: 13px;
        width: fit-content;
        transition: .5s;
        color: #E4F3FC;
        background-color: transparent;
        border:  .5px solid #E4F3FC;
        border-radius: 8px;
        padding: 8px 12px;
        margin-bottom: 30px;
    }
    .overlay button:hover{
      background-color: #E4F3FC;
      color: #001e48;
    }

    #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){
      .featured-works .image-container{
        height: 200px;
      }
      nav{
        padding: 15px 20px;
    }
    nav .logo img{
        width: 170px;
    }
    nav ul{
        gap: 25px;
    }
    nav ul li a{
        font-size: 16px;
    }
  
    .hero-content{
      height: 100px;
      padding: 30px 50px;
  }
  .hero-content h1{
      font-size: 21px;
  }
  .hero-content p{
      margin-top: 15px;
      font-size: 18px;
      width: 90%;
  }

  

.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;
  }
  .overlay {
    padding-left: 20px;
   
}


.overlay h3 {
    font-size: 16px;
    padding-bottom: 8px;
}

.overlay p {
    font-size: 13px;
    padding-bottom: 10px;
}
  .overlay button{
      font-size: 11px;
      padding: 6px 10px;
      margin-bottom: 20px;
  }
  #thankYouMessage{
    font-size: 15px;
    line-height: 150%;

  }

    }


    @media (min-width: 300px) and (max-width: 690px){
      #cursor {
        display: none;
    }
      .featured-works .image-container{
        height: 200px;
      }
      nav{
        width: 100%;
        padding: 0px;
        padding-top: 20px;
        }
        nav .logo{
          padding-left: 10px;
           width: 150px;
        }
    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-content{
        height: fit-content;
        padding: 30px 20px;
    }
    
    .hero-content h1,.featured-works h1{
        font-size: 21px !important;
        color: #001e48;
    }
    .hero-content p{
        font-size: 15px;
        width: 100%;
    }


   
    .works.brand{
      margin-top: 40vh;
    }

    .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 input{
      width: 320px;
      margin-bottom: 35px;
      font-size: 13px;
    }
    
    .second-col form button{
      margin-top: 8px;
      padding: 8px 15px;
      font-size: 13px;
    }

    .works {
      padding: 10px;
      margin-top: 60px;
      margin-bottom: 50px;
  }
  
  .two-row,
  .three-row {
      display: flex;
    flex-direction: column;
    gap: 5px;
     
  }
  
  .image-container {
      position: relative;
      width: 100% !important; /* Adjust as needed */
      overflow: hidden;
      height: 60vh;
  }
  .image-container.one{
    width: 100% !important;
  }
.overlay{
  padding-left: 15px;
}
  .overlay h3 {
    padding-bottom: 5px;
    font-size: 16px;
    width: 90%;
}

.overlay p {
    font-size: 13px;
    padding-bottom: 20px;
}


.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{
  height: fit-content;
  padding: 20px;
  width: 300px;
  padding: 15px;
}
.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;

}
.second-col form {
  padding: 20px !important;
}
.sliders_row .ind_test_container:nth-child(3){
  display: none !important;
}
.sliders_row .ind_test_container:nth-child(2){
  display: none !important;
}
    .contact-us hr{
      display: none;
    }
    footer{
      display: none;
    }
    footer img{
      width: 200px;
    }
    footer ul{
      gap: 40px;
    }
    footer ul li a{
      font-size: 15px;
    }
    .featured-works .overlay{
      opacity: .6!important;
    }
    .overlay {
      padding-left: 12px;
     
  }
  
  
  .overlay h3 {
      font-size: 13px;
      padding-bottom: 8px;
  }
  
  .overlay p {
      font-size: 10px;
      padding-bottom: 10px;
      display: none;
  }
    .overlay button{
        font-size: 10px;
        padding: 5px 8px;
        margin-bottom: 20px;
    }
    #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: 280px;
      }
      .next {
        right: -10px;
        
      }
      .prev{
        left: -10px;
      }
    }
    @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: 410px !important;
    }
    }