
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-image: url('Logo/backround.jpg');
    background-repeat: no-repeat;
    background-size: cover; 
}

.big-container{
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
    padding-top:20px ;
    font-size: 40px;
}

.colored-underline{
  border-bottom: 3px solid blue;
  display: inline;
  border-radius: 3px;
  padding-bottom: 8px;
} 
form {
    display: flex;
    flex-direction: column;
}

.box-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.box {
    flex: 1;
    margin-right: 15px;
    padding: 25px;
    border-radius: 50px;
}

.box-full {
    flex: 3;
    margin-right: 10px;
    padding: 10px;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}












/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

/* Centered container styles */
.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 793px; /* Make the container full viewport height */
}

/* Left content styles */
.left-content {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
}

.left-content p {
  margin-bottom: 10px;
}

.left-content ul {
  list-style-type: disc;
  font-size: larger;
  padding-left: 20px;
  line-height: 31px;
  display: block;
}

/* Right content styles */
.right-content {
  flex: 1;
  padding: 0px;
  background-color: #e0e0e0;
}










/* header */



.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;
}

/*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;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
  padding-top:20px ;
  font-size: 40px;
}

.colored-underline{
border-bottom: 3px solid blue;
display: inline;
border-radius: 3px;
padding-bottom: 8px;
} 

/* calculator */
.Calcontainer {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
    margin-top: 0px;
}

.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.input-group label {
  flex: 1;
}


.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #02182e;
  cursor: pointer;
}

.result {
  text-align: center;
}

#loan-amount-display,
#interest-rate-display {
  min-width: 85px;
  text-align: center;
}

@media (max-width: 768px) {
  .centered-container{
      flex-direction:column;
      display:flex;
      padding-top:58px;
      height:197vh;
  }

  .box-container {
      display:contents;

}
}
.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;*/
}
h1 {
  margin-bottom: 25px;
}

.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*/
  .big-container{
      display:flex;
      flex-direction:column;
  }
  #loan-amount-display, #interest-rate-display {
    min-width: 78px;
    text-align: center;
}
}

/* 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 */
.footer-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: #000000;
  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;
}

.bigbox-container{

     display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: auto;

}

.bigbox-container ul{
    display:block;
    float:left;
}
.bigbox-container li{
    padding-top:10px;
}

.bigbox-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{
        margin-top: -15px;
        padding-bottom:20px;
    }
}