@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/* Header Section */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    --color1: #FFF ;
    --color2: #3dbbec ;
    background: #cedadd88 !important;
    
}
nav{
  margin-top: -70px !important;
} 
  p {
      text-align: center;

  }

  h1{
    text-align: center;
    color: #37517e;
  }
  
  .image {
      /*display: inline-block;*/
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    /*-webkit-filter: sepia(100%);*/
    /* to change the cursor icon */
    cursor: zoom-in;
  }
  
  hr {
      margin-top:0;
  }
  
  body {
      padding-top:70px;
    color:#005858;
  }
  
  /* footer */
  
/* footer */
footer {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center; /* Center align items */
  margin-bottom: 20px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  padding: 5px 0;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column; /* Stack links vertically */
    align-items: center; /* Center align vertically stacked links */
  }

  .footer-menu a {
    margin: 5px 0; /* Add vertical spacing for stacked links */
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px;
  }

  .footer-menu a {
    font-size: 12px; /* Smaller font for very small screens */
  }

  .footer-info p {
    font-size: 12px;
  }
}
