*{
    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;
  }
}
@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: 300px;
        background-color: #0D1929;
        padding: 30px 150px;
        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: 24px;
        color: #E4F3FC;
    }
    .hero-content p{
        margin-top: 20px;
        color: #E4F3FC;
        font-size: 20px;
        width: 70%;
        line-height: 150%;
    }
    .time-container{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      margin: 40px 0px;
    }
    .timeline-container::before,.list-updates::before, .list-updates .update::before{
      content: "";
    }
    .timeline-container::before, .list-updates::before, .list-updates .update::before, .all-updates{
      position: absolute;
    }
    .timeline-container, .list-updates .update, .list-updates{
      position: relative;
    }
    .list-updates{
      list-style: none;
    } 
    .list-updates::before{
      height: 85%;
      width: 1.5px;
      background-color: #0D1929;
      left: -1rem;
      top: 2rem;
    }
    .list-updates.grpahic::before,  .list-updates.web::before{
      height: 75% !important;
    }
    .list-updates .update{
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: .6rem;
    }
    .list-updates .update p{
      opacity: .7;
      font-size: 18px;
      width: 220px;
    }
    .list-updates .update p:hover{
      opacity: 1;
      
    }
    .list-updates .update::before{
      height: 12px;
      width: 12px;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      left: calc(-1rem -5px);
    }
    
    .all-updates{
      left: 0;
      right: 0;
      text-align: center;
      padding: 2rem 0;
    }
    .all-updates .all{
      cursor: pointer;
      padding: .7rem 2rem;
      background-color: #0D1929;

    }
    .list-updates .update::before{
      height: 12px;
      width: 12px;
      background-color: #0D1929;
      top: 50%;
      transform: translateY(-50%);
      left: -21px;
    }
    .timeline-desc{
      width: 50vw;
      font-size: 27px;
      font-weight: 600;
      line-height: 150%;
    }
    .list-updates .update:hover {
      font-weight: bold;
  }
  

    .social-icon{
        margin-top: 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }
      .social-icon-box{
        padding: 30px 40px;
        width: fit-content;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        display: flex;
        gap: 40px;
      }
      .social-icon-box img{
        filter: grayscale(100%);
        width: 150px;
      }
      .social-icon-box img:hover{
        filter: none;
      }
      .social-icon p{
        margin-top: 20px;
        margin-bottom: 50px;
        font-weight: 600;
        font-size: 20px;
      }
      .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: 20px;
        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;
    }
    .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 {
        color: white;
        font-size: 14px;
        width: 90%;
        padding-bottom: 40px;
        line-height: 150%;
    }
    @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);
      }
    }
    .works-digital-mobile{
      display: none;
    }
    .works.digital{
      display: none !important;
    }
    .works-digital{
      margin-top: 80px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }







    .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;
    }
    
    #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){
      #thankYouMessage{
        font-size: 15px;
        line-height: 150%;

      }
      nav{
        padding: 15px 20px;
    }
    nav .logo img{
        width: 170px;
    }
    nav ul{
        gap: 25px;
    }
    nav ul li a{
        font-size: 16px;
    }
  
    .hero-content{
      height: 300px;
      padding: 30px 50px;
  }
  .hero-content h1{
      font-size: 21px;
  }
  .hero-content p{
      margin-top: 15px;
      font-size: 18px;
      width: 90%;
  }

  .time-container{
    height: 100vh;
    gap: 20px;
    margin: 30px 0px;
  }

  .list-updates .update{
    padding: 1rem;
    margin-bottom: .2rem;
  }
  .list-updates .update p{
    font-size: 18px;
    width: 220px;
  }
  .list-updates .update::before{
    height: 10px;
    width: 10px;
  }
  
  .all-updates{
    padding: 1rem 0;
  }
  .all-updates .all{
    padding: .1rem 2rem;

  }
  .list-updates .update::before{
    height: 12px;
    width: 12px;
  }
  .timeline-desc{
    width: 50vw;
    font-size: 21px;
  }
  .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; 
  }
    }
    @media (min-width: 300px) and (max-width: 360px){
      .works-digital-mobile img{
        object-fit: cover;
        width: 100%;
        height: 300px;
      }
      .image-container {
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 400px;
    }
    } 
    @media (min-width: 361px) and (max-width: 400px){
      .works-digital-mobile img{
        object-fit: cover;
        width: 100%;
        height: 320px;
      }
      .image-container {
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 420px;
    }
    } 
    @media (min-width: 401px) and (max-width: 430px){
      .works-digital-mobile img{
        object-fit: cover;
        width: 100%;
        height: 400px;
      }
      .image-container,.image-container.one {
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 400px;
    }
    }
    @media (min-width: 431px) and (max-width: 500px){
      .works-digital-mobile img{
        object-fit: cover;
        width: 100%;
        height: 450px;
      }
      .image-container,.image-container.one {
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 450px;
    }
    }
    @media (min-width: 501px) and (max-width: 530px){
      .works-digital-mobile img{
        object-fit: cover;
        width: 100%;
        height: 500px;
      }
      .image-container,.image-container.one {
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 420px;
    }
    }
    @media (min-width: 531px) and (max-width: 670px){
      .works-digital-mobile img{
        object-fit: cover;
        width: 100%;
        height: 700px;
      }
      .image-container,.image-container.one {
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 500px;
    }
    }
    @media (min-width: 300px) and (max-width: 400px){
      .image-container {
        position: relative;
        width: 100% !important; /* Adjust as needed */
        overflow: hidden;
        height: 60vh;
    }
    .image-container.one{
      width: 100% !important;
    }
    }
    @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: 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;
        flex-direction: column;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 40px;
    }
    .hero-content h1{
        font-size: 21px;
        text-align: left;
        color: #E4F3FC;
    }
    .hero-content p{
      margin-top: 10px;
      text-align: left;
        font-size: 15px;
        width: 100%;
    }
    .time-container{
      justify-content: flex-start;
      padding: 40px 60px;
    }

    .list-updates::before{
      height: 85%;
      width: 1.5px;
      background-color: #0D1929;
      left: -1rem;
      top: 2rem;
    }
    .list-updates.grpahic::before,  .list-updates.web::before{
      height: 75% !important;
    }
    .list-updates .update{
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: .6rem;
    }
    .list-updates .update p{
      font-size: 16px;
      width: 250px;
    }
    .list-updates .update::before{
      height: 9px;
      width: 9px;
      left: calc(-1rem -5px);
    }
    
    .all-updates{
      left: 0;
      right: 0;
      text-align: center;
      padding: 1rem 0;
    }
    .all-updates .all{
      cursor: pointer;
      padding: .5rem 1rem;
      background-color: #0D1929;

    }
    .list-updates .update::before{
      height: 12px;
      width: 12px;
      background-color: #0D1929;
      top: 50%;
      transform: translateY(-50%);
      left: -21px;
    }
    .list-updates .update p:hover {
      font-weight: 500;
  }
    .list-updates .update, .list-updates .update::after{
      font-weight: 500 !important;
    }
    .timeline-desc{
      display: none !important;
    }
    .time-container{
      margin: 10px 0px;
    }
  
  
    .works-digital-mobile{
      
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 30px;
    }
  
    .works-digital{
      display: none !important;
    }
    .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: 20px;
    }
    .second-col form input{
      margin-bottom: 35px;
      font-size: 13px;
    }
    
    .second-col form button{
      margin-top: 8px;
      padding: 8px 15px;
      font-size: 13px;
    }

    .works {
      padding: 10px;
      
      margin-bottom: 50px;
  }
  
  .two-row,
  .three-row {
      display: flex;
    flex-direction: column;
    gap: 5px;
     
  }
  
 
  .overlay {
    padding-left: 15px;
  }
  .overlay h3 {
    width: 90%;
    font-size: 16px;
}

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

    .contact-us hr{
      display: none;
    }
    footer{
      display: none;
    }
    footer img{
      width: 200px;
    }
    footer ul{
      gap: 40px;
    }
    footer ul li a{
      font-size: 15px;
    }
    #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: 400px){
      .second-col form input{
        width: 260px;
      }
      .list-updates .update p {
        width: fit-content !important;
    }
    }
    @media (min-width: 401px) and (max-width: 690px){
      .second-col form input{
        width: 320px;
      }
    }