.body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background: #a1c3ff;
    position: relative;

}



.logo{
    font-size: larger;
    text-transform: uppercase;


    
}
.navbar-custom {
    background-color: #3474e6;
   
      
}
.nav-item a,.logo {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    font-size: 16px; /* Adjust the font size as needed */
    color: #fff; /* Ensure the text color is white */
    /* text-transform: uppercase; */
     /* Example of additional style: makes the text uppercase */
}




.navbar-custom .nav-link,
.navbar-custom .navbar-brand,
.header h1,
.header p {
  color: #FFF !important;
}
.header{
    background-color: #0151cc;
    min-height: 400px;
}
.header h1{
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}
.header img{
    max-width: 60%;
    margin: 5% 0;
    
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content{
    margin-right: 5%;
}

.cta-btn{
    margin-bottom: 1%;
}

@media(max-width: 768px){
    .header .container {
        flex-direction: column;
        padding-top: 20px;
        text-align: center;

    }
    .boxes .container{
        display: block;
    }
    .header img{
        max-width: 80%;
        margin-bottom: 5px;
    }
}



/* style.css */

/* Ensure the body takes full height */

  /* Make the main content stretch to fill available space */
/* Ensure the html and body take full height */
html, body {
    height: 100%;
    margin: 0;
  }
  
  /* Main container setup */
  .main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the container takes up full viewport height */
  }
  
  /* Ensure the main content area grows to fill available space */
  main {
    flex: 1;
  }
  
  /* Footer styles */
  footer {
    background-color: #343a40; 
    color: #ffffff; 
    padding: 1rem 0;
    text-align: center;
    margin-top: auto; /* Pushes the footer to the bottom of the container */
  }
  
  /* Footer links styling */
  footer a {
    color: #ffffff; 
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  

/* Loader */
.loader-container {
  display: none;            /* Hide loader by default */
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  height: 100vh;           /* Full viewport height */
  width: 100vw;            /* Full viewport width */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  position: fixed;         /* Fixed position to cover entire viewport */
  top: 0;
  left: 0;
  z-index: 1000;           /* Ensure it's on top of other content */
}

.lds-roller {
  color: #3474e6;
}

.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
