*{
    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-image: linear-gradient(to bottom, #E4F3FC 0%, #E4F3FC 20%, #E4F3FC 20%, #E4F3FC 40%, #E4F3FC 40%, #E4F3FC 60%, #E4F3FC 60%, #E4F3FC 90%, #0D1929 90%);
    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;
}
.content-row{
  position: relative;
   margin-top: 50px;
    height: 92%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.hero-banner .content-row video{
    width: 25vw;
}
.hero-banner h1{
    color: #0D1929;
    font-size: 24px;
    width: 45vw;
    line-height: 150%;
    font-family: ARP;
}
.content-row .rotating{
  width: 80px;
  height: 80px;
  position: absolute;
  background-color: #051d33;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 10vw;
  bottom: 0vh;
}
.rotating {
  animation: rotate 5s linear infinite; /* Adjust the duration as needed */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content-row .rotating h2{
  color: #E4F3FC;
  font-size: 45px;
  font-family: ARP;
}
.our-story{
    background-color: #0D1929;
    text-align: center;
    padding: 10px 120px 30px 120px;
}
.our-story h2{
    margin-bottom: 12px;
    margin-top: 50px;
    line-height: 150%;
    font-family: ARP;
    font-size: 21px;
    color: #E4F3FC;
}
.our-story p{
    font-size: 20px;
    line-height: 150%;
    color: #E4F3FC;
    font-weight: 400;
}

.our-story h2,
.our-story p {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.5s ease, opacity 0.65s ease;
}


.what-sets-up{
    margin-top: 40px;
    padding: 10px 70px;
    display:grid;
  grid-template-columns: 480px 500px;
  justify-content: center;
  grid-row: auto auto;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}
.ind-box{
    background-color: #FFF;
    padding: 40px 50px;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.what-sets-up h6{
    text-align: left;
    font-size: 20px;
    line-height: 150%;
    color: #0D1929;
    font-weight: 700;
    margin-bottom: 10px;
}
.what-sets-up p{
    text-align: left;
    font-size: 16px;
    line-height: 150%;
    color: #0D1929;
    font-weight: 400;
}
.what-sets-up img{
    width: 40px;
    background-color: #FFF;
    border-radius: 50%;
    padding: 10px;
    box-shadow: #E4F3FC 0px 7px 29px 0px;
    margin-bottom: 15px;
}
.ind-box img{
  color: #001e48;
  background-color: #001e48;
}
.ind-box.one,.ind-box.two,.ind-box.three,.ind-box.four {
  opacity: 0;
  transform: translateY(10px);
}
.ind-box.one {
  transition: opacity 0.5s ease, transform 0.5s ease 0.2s;
}
.ind-box.two {
  transition: opacity 0.6s ease, transform 0.6s ease 0.3s;
}
.ind-box.three{
  transition: opacity 0.7s ease, transform 0.7s ease 0.4s;
}
.ind-box.four {
  transition: opacity 0.8s ease, transform 0.8s ease 0.5s;
}

.ind-box.one img,
.ind-box.one h6,.ind-box.two img,
.ind-box.two h6 ,.ind-box.three img,
.ind-box.three h6 ,.ind-box.four img,
.ind-box.four h6  {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.6s ease 0.1s;
}

.ind-box.one p,.ind-box.two p,.ind-box.three p,.ind-box.four p {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.6s ease 0.2s;
}




.slding-text{
    width: 100%;
    background-color: #E4F3FC;
    padding: 15px 0px;
}
.marquee {
    height: 40px;
    width: 100%;
  
    overflow: hidden;
    position: relative;
  }
  
  .marquee div {
    display: block;
    width: 200%;
    height: 40px;
  
    position: absolute;
    overflow: hidden;
  
    animation: marquee 10s linear infinite;
  }
  
  .marquee h5 {
    float: left;
    width: 50%;
    color: #0D1929;
    opacity: .32;
    font-family: ARP;
    font-size: 27px;
    text-align: center;
  }
  
  @keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
  }

.testimonials{
    padding: 60px 20px;
  }
  .testimonail_content h2{
    font-family: ARP;
    text-align: center;
    color: #0D1929;
    font-size: 27px;
    line-height: 150%;
  }
  .slideshow-container {
   
    max-width: 90%;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    margin-top: 20px;
    display: none;
    
  }
  .sliders_row{
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  /* 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{
    border: 1px solid #0D1929;
    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;

  }
  
  .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;
    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;
  }
  .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;
  }
  .content-row{
      margin-top: 40px;
      height: 92%;
      gap: 30px;
  }
  .hero-banner .content-row .hero-img{
      height: 400px;
  }
  .hero-banner h1{
      color: #0D1929;
      font-size: 17px;
      width: 45vw;
  }
  .content-row .rotating{
    width: 60px;
    height: 60px;
    left: 4vw;
    bottom: 3vh;
  }
  .content-row .rotating h2{
    color: #E4F3FC;
    font-size: 30px;
    font-family: ARP;
  }


.our-story{
  padding: 10px 60px 30px 60px;
}
.our-story h2{
  margin-bottom: 10px;
  margin-top: 30px;
  line-height: 150%;
  font-family: ARP;
  font-size: 20px;
  color: #E4F3FC;
}
.our-story p{
  font-size: 16px;
}

.what-sets-up{
  margin-top: 20px;
  padding: 6px 10px;
  grid-template-columns: 300px 300px;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  justify-content: center;
}
.ind-box{
  padding: 20px 35px;
  width: 250px;
  height: 350px;
}
.what-sets-up h6{
  font-size: 18px;
  margin-bottom: 10px;
}
.what-sets-up p{
  font-size: 15px;
}
.what-sets-up img{
  width: 30px;
  padding: 8px;
  margin-bottom: 10px;
}
.slding-text{
  padding: 10px 0px;
}
.marquee {
  height: 30px;
  width: 100%;
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;
}
.marquee h5 {
  font-size: 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 */
.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: 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);
}
  .content-row{
    margin-top: 0px;
    padding-top: 50px;
      height: 99%;
      gap: 40px;
      flex-direction: column;
  }
  .hero-banner{
    padding-bottom: 40px;
    height: fit-content;
    background: transparent !important;
    background-color: aliceblue !important;
    background-image: linear-gradient(to bottom, #E4F3FC 0%, #E4F3FC 20%, #E4F3FC 20%, #E4F3FC 40%, #E4F3FC 40%, #E4F3FC 60%, #E4F3FC 60%, #E4F3FC 90%, #E4F3FC 90%) !important;
  }
  .hero-banner .content-row video{
      height: 400px;
      object-fit: cover;
      width: 85vw;
  }
  .hero-banner h1{
      font-size: 15px;
      width: 90vw;
      text-align: center;
  }
  .content-row .rotating{
    display: none;
    width: 60px;
    height: 60px;
    left: 4vw;
    bottom: 35vh;
  }
  .content-row .rotating h2{
    font-size: 24px;
  }

.our-story{
  padding: 10px 30px 20px 30px;
}
.our-story h2{
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 18px;
}
.our-story p{
  font-size: 14px;
}

.what-sets-up{
  margin-top: 15px;
  padding: 7px 8px;
  grid-template-columns: 200px 200px;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ind-box.one,.ind-box.two,.ind-box.three,.ind-box.four {
  opacity:1;
}
.ind-box{
  padding: 20px 35px;
  width: 230px;
  height: 300px;
}
.what-sets-up h6{
  font-size: 16px;
  margin-bottom: 7px;
}
.what-sets-up p{
  font-size: 14px;
}
.what-sets-up img{
  width: 20px;
  padding: 5px;
  margin-bottom: 4px;
}
.slding-text{
  padding: 10px 0px;
}
.marquee {
  height: 30px;
  width: 100%;
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;
}
.marquee h5 {
  font-size: 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;

}
.sliders_row .ind_test_container:nth-child(2){
  display: none !important;
}
.sliders_row .ind_test_container:nth-child(3){
  display: none !important;
}

.contact-us{
  background-color: #E4F3FC;
  padding: 20px 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: 15px 10px 20px 10px;
}
.second-col form input{
  margin-bottom: 35px;
  font-size: 13px;
}

.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;
}
#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: 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;
  }
  }
  @media (min-width: 1072px) and (max-width: 1358px){
  .ind_test_container p{
    font-size: 14px !important;
  }
  .ind_test_container .name{
    font-size: 12px !important;
  }
}