
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #E9E6DF;
  /**background-image: url(images/bg.jpg);**/
}


header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
  /**background-image: url(images/bg.jpg);**/
  background-color: #20638f;
}


/****navbar start*****/
.navbar {
  display: flex;
  padding: 0 10px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.navbar input#menu-toggler {
  display: none;
}

.navbar #hamburger-btn {
  cursor: pointer;
  display: none;
}

.navbar .all-links {
  display: flex;
  align-items: center;
}

.navbar .all-links li {
  position: relative;
  list-style: none;
 
}

.navbar .logo a {
  display: flex;
  align-items: center;
  margin-left: 0;
  color: #ffff;
  margin-top: 18px;
  font-size: 25px;
}

.navbar .all-links li a{
  margin-left: 40px;
  text-decoration: none;
  color: #fff;
  height: 100%;
  padding: 20px 0;
  display: inline-block;
  
}

header navbar a:hover{
  color: #ddd;
}
/****navbar end*****/






/* Style the banner text */
.banner h1, .banner h3, .banner h6 {
    margin: 0;
    text-shadow: 2px 2px 6px #000000;
    text-align: center;
}
  
  /* Style the banner container */
  .banner {
    position: relative; /* Make it a positioned container for absolute positioning of the image */
    height: 300px; /* Set the height of the banner */
    display: flex; /* Use flexbox to center the text inside the banner */
    justify-content: center; /* Centers text horizontally */
    align-items: center; /* Centers text vertically */
    overflow: hidden; /* Prevents the image from overflowing the banner div */
  }
  
  /* Style the background image inside the banner */
  .banner-bg {
    position: absolute; /* Position the image behind the text */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire banner area */
    z-index: -1; /* Places the image behind the text */
  }
  
  .banner-text {
    font-size: 29px;
    margin-top: 75px;
    color: #ffffff;
}





































footer{
  /**background-image: url("images/bg.jpg");**/
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #20638f;
}
footer::before{
  cont: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}
footer .cont{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .cont .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.cont .top .logo-details {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-left: -25px;
}
.cont .top .media-icons{
  display: flex;
}
.cont .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}
footer .cont .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .cont .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.cont .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  cont: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.cont .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.cont .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s ease
}
.cont .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.cont .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #140B5C;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  /***background-color: #444444;***/
  
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 30px;

  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .cont .link-boxes{
    flex-wrap: wrap;
  }
  footer .cont .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .cont .top .logo-details{
    font-size: 26px;
  }
  .cont .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .cont .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .cont .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .cont .top{
    flex-direction: column;
  }
  .cont .top .media-icons{
    margin-top: 16px;
  }
  footer .cont .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .cont .link-boxes .input-box{
    width: 100%;
  }
}

.box p {
    
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: normal;
    margin-bottom: 10px;
    color: #ffff;
}
.box a {
    
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: normal;
    margin-bottom: 10px;
    color: #ffff;
}
.logo-details img {
    width: 80px;
    height: 74px;
}

/****footer end*****/