* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --nav-height: 25px; 
}

body.home {
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  background: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.Issue {
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.issue-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: 100%;
}

#Societal_Issues_img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

#Issue2_img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

#HomePage_img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

body.Solution {
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  background: #fff
}

body.Partners {
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  background: #fff
}

body.contact {
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  background: url('/Images/Juice.jpg') no-repeat center center/cover;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.home .overlay,
body.contact .overlay {
  background: rgba(0, 0, 0, 0.596);
  min-height: 100vh;
  width: 100%;
}

header {
  background: rgba(56, 216, 35, 1);
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;

  min-height: var(--nav-height);

  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#NavBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#NavBar h1 {
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

#NavBar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#NavBar a:hover {
  background-color: white;
  color: #2abc1a;
}

#logo {
  height: 60px;
  width: auto;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - var(--nav-height)); 
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  margin-bottom: 0rem;
  padding-bottom: 5rem;
}

.see-more-button {
  background-color: #2abc1a;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.see-more-button:hover {
  background-color: #249b17;
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  padding-left: 10rem;
}

.contact-container {
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ff9b04;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #eeeeee; 
  color: #333;
}

.contact-form textarea[name="Message"] {
  min-height: 175px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2abc1a; 
  outline: none;
  background-color: #e6e6e6;
}

.contact-form button {
  background-color: #ff9b04;
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #2abc1a;
}

#status {
  margin-top: 1rem;
  color: #28a745;
  font-weight: 600;
  text-align: center;
}

.issue {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - var(--nav-height)); 
  text-align: center;
}

.issue-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.issue-content h1 {
  font-size: 7rem;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - var(--nav-height)); 
  text-align: center;
}

.partners-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: 100%;
}

#Partners_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

#BusinessModel_img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.solution {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - var(--nav-height)); 
  text-align: center;
}

.solution-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

#Solution_img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

#Solution2_img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

#Contact_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  #NavBar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  #logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 0.5rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    background: rgba(56, 216, 35, 0.95);
    border-radius: 0 0 12px 12px;
    transition: max-height 0.3s ease;
    display: none;
    overflow: hidden;
  }

  .nav-links.active {
    display: flex;
  }

  #NavBar a {
    padding: 1rem;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  #NavBar a:last-child {
    border-bottom: none;
  }

  #lang-switcher {
    margin-top: 0.5rem;
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  body.home {
    font-size: 14px; 
  }

  .hero-content h1 {
    font-size: 2.2rem; 
    padding-bottom: 1.2rem;
  }

  .see-more-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  header h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  body.home {
    font-size: 12px;
  }

  #logo {
    height: 32px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }

  .see-more-button {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }

  header h1 {
    font-size: 1.2rem;
  }

  .menu-toggle {
    font-size: 1.5rem;
  }

  .contact-section h1 {
    font-size: 2rem;
  }
}