*{
    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-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom center;
        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{
    background-color: #E4F3FC;
    
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.hero-content img{
    width: 500px;
    height: 400px;
    object-fit: cover;
}
.hero-banner .first-col{
    padding: 80px 0px 100px 0px;
    width: 40%;
}
.hero-banner .second-col{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    
}
    h1{
        width: 80%;
        font-family: ARP;
        font-size: 32px;
        color: #0D1929;
        margin-bottom: 20px;
    }
    .mob-img{
      display: none;
    }
    .hero-content p{
        width: 90%;
        font-size: 18px;
        line-height: 150%;
        color: #0D1929;
        margin-bottom: 50px;
    }
    .hero-content form{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .hero-content form input{
        background-color: transparent;
        
        margin-bottom: 45px;
        outline: 0;
        border-width: 0 0 1px;
        border-color: #0D1929;
        color: #001e48;
        font-size: 15px;
        
        line-height: 150%;
    }
    .hero-content form button{
        width: fit-content;
        transition: .5s;
        background-color: #001e48;
        border: none;
        font-size: 18px;
        border-radius: 8px;
        padding: 15px 30px;
        color: #FFF;
    }
    .hero-content form button:hover{
      background-color: #E4F3FC;
      border: 1px solid #0D1929;
      color: #0D1929;
    }
    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    #infinite{
      display: none;
    }
    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 50s 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;
  }
  
    .our-branches{
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        background: linear-gradient(-45deg, #000112, #001e48, #000112, #001e48);
        background-size: 400% 400%;
        animation: gradient 7s ease infinite;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .our-branches .first{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .our-branches hr{
        border:  .5px solid #E4F3FC;
        width: 50%;
        margin:  30px;
    }
    .our-branches h2{
        font-family: ARP;
        font-size: 36px;
        color: #E4F3FC;
        margin-bottom: 40px;
    }
    .our-branches h3{
        font-size: 36px;
        color: #E4F3FC;
        margin-bottom: 20px;
    }
    .our-branches p{
        width: 50%;
        font-size: 18px;
        color: #E4F3FC;
        margin-bottom: 20px;
        line-height: 150%;
    }

      footer{
        padding: 50px 70px;
        background-color: #E4F3FC;
        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{
          margin-top: 30vh;
        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;
        }
      
        h1{
            font-size: 24px;
        }
        .hero-content img{
          width: 300px;
          height: 200px;
          object-fit: cover;
      }
      .hero-banner .first-col{
        padding: 50px 0px 30px 30px;
        width: 100%;
    }
    .hero-content {
      align-items: flex-start;
  }
  .hero-content form {
    gap: 10px;
}
.hero-content form input{
  margin-bottom: 25px;
  font-size: 14px;
}
.hero-content form button{
  font-size: 15px;
  padding: 10px 24px;
}
.our-branches hr{
  border:  .5px solid #E4F3FC;
  width: 80%;
  margin:  20px;
}
.our-branches h2{
  font-size: 27px;
  margin-bottom: 30px;
}
.our-branches h3{
  font-size: 27px;
  margin-bottom: 15px;
}
.our-branches p{
  width: 50%;
  font-size: 16px;
  margin-bottom: 15px;
}
      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: 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);
    }
        h1{
            text-align: center;
            font-size: 24px;
        }

        .mob-img{
          display: block;
        }
        .hero-content .second-col{
          display: none !important;
        }

        #infinite{
          display: block;
        }
.hero-content{
  background-color: #E4F3FC;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hero-content img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero-banner .first-col{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 100%;
}

  .hero-content p{
      width: 90%;
      text-align: center;
      font-size: 16px;
      margin-bottom: 30px;
  }
  .hero-content form{
      gap: 20px;
      align-items: center;
      margin-bottom: 30px;
  }
  .hero-content form input{
    width: 80vw;
      margin-bottom: 25px;
      font-size: 14px;
  }
  .hero-content form button{
      font-size: 14px;
      border-radius: 8px;
      padding: 10px 20px;
  }

  .our-branches{
      padding: 30px 20px;
      margin-bottom: 30px;
  }

  .our-branches hr{
    width: 70vw;
      margin:  20px;
  }
  .our-branches h2{
      font-size: 24px;
      margin-bottom: 40px;
  }
  .our-branches h3{
      font-size: 20px;
      margin-bottom: 20px;
  }
  .our-branches p{
    width: 90%;
      font-size: 15px;
      margin-bottom: 10px;
  }

          footer{
            display: none;
          }
          footer img{
            width: 200px;
          }
          footer ul{
            gap: 40px;
          }
          footer ul li a{
            font-size: 15px;
          }
          .hero-content {
            display: flex;
            overflow: hidden;
            position: relative;
        }
        
        .image-slider {
            display: flex;
            overflow: hidden;
        }
        
        .mob-img {
            max-width: 100%;
            height: 300px !important;
            transform-origin: 0 50%;
            animation: slide 10s linear infinite;
        }
        @keyframes slide {
          0% {
              transform: translateX(0%);
          }
          33.33% {
              transform: translateX(-100%);
          }
          66.66% {
              transform: translateX(-200%);
          }
          100% {
              transform: translateX(0%);
          }
          
      }
     
      div.carousel-slider {
        width: 100%;
        height: 300px;
        
    }
    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{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    object-fit: cover;
  }
  #thankYouMessage{
    margin-top: 10px;
    margin-bottom: 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: 280px;
        }
      }
      @media (min-width: 401px) and (max-width: 690px){
        .second-col form input{
          width: 320px;
        }
      }