@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  
}


html, body {
  height: 100%;
}

/*Navbar*/
nav ul{
    gap: 20px;
  
}

.nav-brand{
    font-weight: bold;
}

/*Main content*/
.about-container {
  background-image: url('/img/aboutbanner.png'); 
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
}

.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 40px;
}

.about-box {
  max-width: 900px;
  width: 100%;
  background: rgba(33, 36, 41, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.about-box h1 {
  font-size: 2.5em;
  margin-bottom: 25px;
  text-align: center;
}

.green {
  color: #2A9D8F;
}

.white {
  color: #fff;
}

.about-box p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-box ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-box li {
  margin: 10px 0;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .overlay {
    padding: 20px;
  }

  .about-box {
    padding: 25px;
    max-width: 100%;
  }

  .about-box h1 {
    font-size: 2em;
  }
}


/*Footer*/
.trustdrive-footer {
  background-color: #212429;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  color: #2A9D8F;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2A9D8F;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #2A9D8F;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links ul {
    padding: 0;
  }
}