body {
  margin: 0;
  font-family: 'Lato', sans-serif;}


 .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;
    }

    /*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) {

  #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;
}

/* Main Title and Bhausaheb image*/

.hero {
  /* height: 100vh;
  text-align: center;
  padding: 50px;
  background-color: #f9f9f9; */
  flex: 1; /* Fill the available vertical space in the flex container (body) */
    background-color: #f9f9f9; /* Change this to the desired background color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.hero img{
  width: 550px; /* Change this value to the desired width */
    height: auto;
    float: left;
    border-radius:20px;
}
.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
    align-items: center;
}

.text-container {
  padding-left: 50px;
}

.hero h1 {
  /* font-size: 36px;
  margin-bottom: 20px;
  margin-right: 20px; */
  font-size: 3rem;
  margin-bottom: 20px;
  color:#011daa;
}

.hero p{
    font-size:20px;
    font-size: 1.5rem;
    text-align: center;
    color:#011daa;
}


@media (max-width: 768px) {
    .hero img{
        width:51vh;
        height:auto;
    }

    .hero{
        height:auto;
    }

    .hero h1 {
        font-size:25px;
    }
}

/* Footer Styles */
footer {
  text-align: center;
  background-color: #00008B;
  padding: 20px;
}

/*Services*/
.container {
    max-width: 2100px; /* Set the maximum width of the container */
    /*margin: 45px auto;*/ /* Center the container horizontally */
    min-height: 45vh;
    display: flex;
    justify-content: center; /* Horizontally center the .container within the .page-wrapper */
    align-items: center;
  }

/* Our Services Heading*/
 h1{
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
    padding-top:20px ;
    font-size: 30px;
}

.colored-underline{
  border-bottom: 3px solid blue;
  display: inline;
  border-radius: 3px;
  padding-bottom: 8px;
}

  .box {
    padding: 30px;
    background-color: #e7e7e7;
    border-radius: 10px;
    width: 28%; /* 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;
    align-items: center;
    justify-content: center;
    margin: 30px;
  }

  .box img {
    width: auto;
    border-radius: 10px;
  }

  .box h2 {
    margin-top: 10px;
    font-size:25px;
    color:#000000;
  }

  .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 */
  }
@media (max-width: 768px) {
    .box{
        width:60%;
    }
}

/* Number Counter */
.statistics {
      text-align:center;
      justify-content: center; /* Center the row horizontally */
      align-items: center; /* Center the row vertically */
     /* height: 20vh;*/ /* Adjust the height as needed */
      background-color:#ffffff;
      border-top: 1px solid black;
      border-bottom: 1px solid black;
}

.statistics h3{
    color:#011daa;
    margin-top:0;
    padding-top:50px;
    font-size:20px;
}

.row{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    left: 95px;
    padding-top:40px;
    padding-bottom:50px;
}
.col{
    flex-basis: 22%;
    text-align: center;
    color: #555;
}

h2{
    display: inline-block;
    margin: 15px 0;
    font-size: 50px;
    color: #011daa;
}

.counter-box i{
   font-size: 40px;
   color: #011daa;
   display: block;
   text-align: center;
}
.counter-box h4{
    color:#011daa;
    margin-top:12px;
}

/* Media query for responsive menu */
@media (max-width: 768px) {
  .row {
    justify-content: center; /* Center columns horizontally on smaller screens */
    text-align:center;
    display: flex;
    flex-direction: column;
    position:inherit;
    width:auto;
  }

  .col {
    flex-basis: 100%; /* Full width for each column on small screens */
    max-width: 300px; /* Set a maximum width for the columns to fit within the section */
    margin: 10px; /* Add some margin between columns for smaller screens */
  }

  h2 {
    font-size: 24px; /* Reduce font size for smaller screens */
  }

  .counter-box i {
    font-size: 24px; /* Reduce icon size for smaller screens */
  }
}
/* Slider*/

.slider {
    width: -webkit-fill-available;
    height: 500px;
    border-radius: 0px;
    overflow: hidden;
}

.slides{
  width: 500%;
  height: 500px;
  display: flex;
}

.slides input{
  display: none;
}

.slide{
  width: 20%;
  transition: 2s;
}

.slide img {
    width: 100%;
    height: 500px;
}

/*css for manual slide navigation*/
.navigation-manual{
  margin-top: -40px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
}

.manual-btn{
  border: 2px solid #ffffff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover{
  background: #ffffff;
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -20%;
}

#radio3:checked ~ .first{
  margin-left: -40%;
}

#radio4:checked ~ .first{
  margin-left: -60%;
}

/*css for automatic navigation*/
.navigation-auto{
  width: 100%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
}

.navigation-auto div{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: #ffffff;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background: #ffffff;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
  background: #ffffff;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
  background: #ffffff;
}


/*
AboutUS*/
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.about-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
  line-height: 35px;
}

.about-image {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

.about-content h2{
    color:black;
    font-size:4vh;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: auto;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-image {
    max-width: 80%;
    margin-top: 0;
  }
}.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.about-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
  font-size:25px;
}

.about-image {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.about-image img {
  max-width: 50%;
  height: auto;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: auto;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-image {
    max-width: 80%;
    margin-top: 0;
  }
}

/* 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;
    }
}

