* {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-image: linear-gradient(
    rgb(6, 6, 69),
    rgb(18, 18, 134),
    rgb(31, 31, 188)
  );
  background-repeat: no-repeat;
  width: 100vw;
}

#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 2vw;
  color: white;
  background-image: linear-gradient(rgba(255, 255, 255, 0.283));
  width: 100vw;
}

#navbar-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 60vw;
}

#main-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 30vh;
  padding-top: 15vh;
  font-size: 1.5rem;
}


.web-name {
  font-size: 2rem;
}

.web-name-main {
  font-size: 4rem;
  font-weight: bold;
}

main {
  color: white;
}

.main-intro-image {
  height: 12vh;
  width: 20vw;
  background-size: cover;
}

#main-intro-image-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  height: 30vh;
}


#main-intro-mission{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.main-intro-mission-text{

  width:60vw;
  font-size: 1.5rem;
  text-align: center;
}

.blue-button{

  background-color: rgba(240, 248, 255, 0);
  border-color: white;
  color: aliceblue;
  padding:1vh;
  margin-top: 5vh;
  border-radius:   100px;
}

.main-intro-text{
  width: 100vw;
  text-align: center;
}

#main-features{

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 20vh;

}

#home-features-container{

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width:100vw;
  height: 80vh;
}

.home-features{

  width: 35vw;
  height:30vh;
  margin-right: 1vw;
  border-color: white;
  border-radius: 2%;
  border-style: solid;
  background-color: rgba(255, 255, 255, 0.078);
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  
  
}

.home-feature img {
    width: 100%; /* Responsive */
    max-width: 600px; /* Maximum size */
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    object-fit:cover;
    max-width:60px;
    aspect-ratio:1/1;}

*


#home-feedback{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 20vh;
  

}


#feedback-container{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 100vw;
  padding-top: 10vh;
}

.feedback{

  width: 30vw;
  height:40vh;
  border: solid white;
  border-radius: 10%;
}

footer{

  background-color: white;
  color: darkblue;
  width:100vw;
  height:40vh;
  margin-top: 10vh;
}

.white-button{

  padding: 1vh;
  border-radius:   100px;
  margin-top: 2vh;
}

/*footer*/
.footer {
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
    color: darkblue;
    padding: 20px 0; /* Further reduced padding */
    text-align: center;
    font-size: 16px; /* Slightly smaller font */
    height: auto; /* Ensure the footer height adjusts dynamically */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items if needed */
    padding: 5px; /* Reduce padding further */
    margin: 0;
}

.footer-section {
    flex: 1;
    padding: 10px; /* Reduce footer section padding */
    min-width: 200px; /* Adjust minimum width */
    text-align: center;
}

.footer-section h2 {
    margin-bottom: 5px; /* Reduce heading margin */
    font-size: 18px;
    
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 4px 0; /* Reduce spacing between list items */
}

.footer-section ul li a {
    text-decoration: none;
    font-size: 16px; /* Reduce font size */

}
    .footer-section ul li a:hover {
        color: navy;
    }
    .social-icons a {
        margin: 0 10px;
        color: darkblue;
        font-size: 24px;
        transition: 0.3s;
    }
    .social-icons a:hover {
        color: navy;
    }
    .footer-bottom {
        margin-top: 10px;
        padding: 15px;
        border-top: 1px solid #ccc;
        font-size: 14px;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            align-items: center;
        }
    }
