body {
    font-family: 'Lato', sans-serif;
    margin  : 0;
    background-image: url('Logo/backround.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .container {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    max-width: 2100px; /* Set the maximum width of the container */
    margin: 45px auto; /* Center the container horizontally */
  }



  .box1{
    padding: 18px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 40%; /* Adjust the width of each box as needed */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Hide any overflow from the images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
    align-items:center;
  }

    .box2 {
    padding: 18px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 40%; /* Adjust the width of each box as needed */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Hide any overflow from the images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
    align-items:center;
  }

  .box {
    padding: 18px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 25%; /* Adjust the width of each box as needed */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Hide any overflow from the images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
  }

  .box img {
    width: 100%;
    border-radius: 10px;
  }

  .box h2 {
    margin-top: 10px;
  }

  .box p {
    margin: 10px 0;
  }

  .box:hover {
    transform: translateY(-10px); /* Apply the hover effect by lifting the box */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
  }

   .box1:hover {
    transform: translateY(-10px); /* Apply the hover effect by lifting the box */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
  }

  .box2:hover {
    transform: translateY(-10px); /* Apply the hover effect by lifting the box */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
  }

  h1 {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: blue;
    text-underline-position: under;
    font-size:30px;
  }

   @media (max-width: 768px) {
    .container{
    display: flex;
    flex-direction:column;
    justify-content: space-evenly;
    align-items: stretch;
    max-width: 2100px; /* Set the maximum width of the container */
    margin: 45px auto; /* Center the container horizontally */
    }

    .box1{
    padding: 10px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 80%; /* Adjust the width of each box as needed */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Hide any overflow from the images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
    align-items:flex-start;
  }

  .box2{
    padding: 10px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 80%; /* Adjust the width of each box as needed */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Hide any overflow from the images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
    align-items:flex-start;
  }

     .box {
    padding: 10px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 80%; /* Adjust the width of each box as needed */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Hide any overflow from the images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px;
    align-items:flex-start;
  }
}

/* Header file css */
  .navbar {
    background-color: #ffffff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;

  }

  .logo img {
      width: 59px;
      height: auto;
  }

  .menu {
    list-style: none;
    display: flex;
    align-items: center;
    padding-top:8px;
  }

  .menu li {
    padding: 0px 20px;
    font-size:large;
  }

  .menu a {
    color: #2d2d2d;
    text-decoration: none;
  }

  .menu a:hover {
    color: #1F51FF;
     border-bottom: 3px solid #1F51FF;
     padding-bottom: 6px;
     border-radius: 3px;
  }

  .menu-icon {
    font-size: 24px;
    display: none;
  }

  /*Submenu*/

    .submenu {
      display: none; /* Hide the submenu by default */
      list-style: none;
      margin: 0;
      padding: 20px;
      position: absolute;
      background-color: #ffffff;
      box-shadow: 0px 8px 16px 0px rgba(63, 49, 254, 0.387);
      margin-top:8px;
    }

    .dropdown:hover .submenu {
      display: block; /* Show the submenu on hover */
    }

    .submenu li {
      padding: 8px 20px;
    }

    .submenu a {
      color: #2d2d2d;
      text-decoration: none;
    }

    .submenu a:hover {
      color: #1F51FF;
    }

  /* Media query for responsive menu */
  @media (max-width: 768px) {
    .menu {
      flex-direction: column;
      display: none;
    }

    .menu li {
      width: 100%;
      text-align: center;
    }

    .menu-icon {
      display: block;
      cursor: pointer;
    }

    #menu-toggle:checked + .menu {
      display: flex;
    }
  }
  /* Subnav button */
  .subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }

  .shadow
  {
    position: relative;
    box-shadow: 0 1px 30px rgba(14, 25, 238, 0.653), 0 0 80px rgba(63, 49, 254, 0.387) inset;
  }

  .shadow:before,
  .shadow:after
  {

  content: '';
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 20px rgba(43, 43, 203, 0.38);
  top: 50%;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 200px/100px;
  }








  .navbar {
    background-color: #ffffff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
  }

  .logo img {
      width: 59px;
      height: auto;
  }

  .menu {
    list-style: none;
    display: flex;
    align-items: center;
    padding-top:8px;
  }

  .menu li {
    padding: 0px 20px;
    font-size:large;
  }

  .menu a {
    color: #2d2d2d;
    text-decoration: none;
    font-size: 20px;
  }

  .menu a:hover {
    color: #1F51FF;
     border-bottom: 3px solid #1F51FF;
     padding-bottom: 6px;
     border-radius: 3px;
  }

  .menu-icon {
    font-size: 24px;
    display: none;
  }
    #checkbtn{
        color:#1F51FF;
        display:none;
        font-size:35px;
    }
    #check{
        display:none;
    }
    #check:checked ~ ul{
        display:block;
        transition:.5s;
    }

/* Media query for responsive menu */
@media (max-width: 768px) {

  #checkbtn{
    display:block;
    /*float:right;*/
    position: absolute;
    top: 50%;
    right: 20px; /* Adjust this value to control the horizontal positioning */
    transform: translateY(-50%);
    /*order:2;*/
  }

  .menu {
    flex-direction: column;
    display: none;
    width:100%;
    top:80px;
    position:fixed;
    background-color:#ffffff;
    padding-right:75px;
  }

  .menu li {
    width: 100%;
   /* height:100vh;
    top:80px;*/
    text-align: center;
    color:black;
    right:20px;
    line-height:50px;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
  }
  #menu-toggle {
    display: none;
  }
  /*Bank name main text*/
  .flex-container{
    display:flex;
    flex-direction:column;
  }
    /*Services Container*/
    .container{
        display:flex;
        flex-direction:column;
    }
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.shadow
{
	position: relative;
	box-shadow: 0 1px 30px rgba(14, 25, 238, 0.653), 0 0 80px rgba(63, 49, 254, 0.387) inset;
}

.shadow:before,
.shadow:after
{

content: '';
position: absolute;
z-index: -1;
box-shadow: 0 0 20px rgba(43, 43, 203, 0.38);
top: 50%;
bottom: 0;
left: 10px;
right: 10px;
border-radius: 200px/100px;
}













/* Foorer start's from hear  */
/* Styling for the top box */
.top-box {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  text-align: center; /* Align all content in the top box to the center */

}


/* Styling for the icons */
.icon {
  display: inline-block;
  padding-left: 80px;
  width: 50px;
  height: 50px;
  margin-right: 10px;

}
.fas{
  font-size: -webkit-xxx-large;
  color: #011daa;

}
/* Styling for the information text */
.info {
  display: inline-block;
  padding-left: 10px;
  
}

/* Styling for the bottom box */
.bottom-box {
  background-color: #011daa;
  padding: 20px;
  margin-top: -20px; /* This value should be equal to the top box's padding to overlap */
}

.bottom-box h2{
  color: #ffffff;
  text-align: center;
  font-size:30px;
  padding-top: 20px;
}


ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  color: #ffffff;
  margin: 0 10px;
  padding-top:20px;
  padding-bottom:20px;
}

.bottom-box li::before {
  content: "-";/*give any type of symbol for Bullets */
  color: red;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
.paragraph-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}

.paragraph-container a:hover {
  color: #1F51FF;

   padding-bottom: 6px;
}

.container{

     display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: auto;

}

.container ul{
    display:block;
    float:left;
}
.container li{
    padding-top:10px;
}

.container a{
    text-decoration:none;
    font-size:17px;
}

@media (max-width: 768px){
    .top-box{
        text-align:inherit;
        display:flex;

    }

 /*   .info{
        display:block;
    }*/

    ul{
        display:grid;
        justify-content: space-around;
    }

    li{
        padding-bottom:20px;
    }
}