:root {
  --campaign-green: #1db954;
  --campaign-darkgreen: #168f3e;
  --campaign-blue: #1e40af;
  --campaign-yellow: #facc15;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --white: #fff;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: #f9f9f9;
  color: #222;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* Header */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 10vh;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(16,24,40,0.07);
  transition: box-shadow 0.2s, background 0.2s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0.7rem 1.5rem;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  gap: 0.7rem;
  width: 100px;
  height: 100%;
}
.header-logo>img{
    max-height: 100%;
    width: 100%;
}
.header-logo-main {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
}
.header-logo-divider {
  width: 2px;
  height: 1.5rem;
  background: #22c55e;
  margin: 0 0.5rem;
  border-radius: 2px;
}
.header-logo-sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 1px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-link {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.header-link:hover {
  background: #e6faed;
  color: #22c55e;
}
.header-link.active {
  background: #e6faed;
  color: #22c55e;
}
.header-contact-btn {
  background: #22c55e;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  text-decoration: none;
  transition: background 0.18s;
  display: inline-block;
}
.header-contact-btn:hover {
  background: #15803d;
}
.header-lang-dropdown {
  position: relative;
  margin-left: 1rem;
}
.header-lang-btn {
  background: #f3f4f6;
  color: #2563eb;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
  transition: background 0.18s;
}
.header-lang-btn:hover {
  background: #e6faed;
}
.header-lang-menu {
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(16,24,40,0.13);
  border-radius: 8px;
  min-width: 140px;
  display: none;
  flex-direction: column;
  z-index: 10;
}
.header-lang-dropdown:hover .header-lang-menu,
.header-lang-dropdown:focus-within .header-lang-menu {
  display: flex;
}
.header-lang-option {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 1rem;
  text-align: left;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.header-lang-option:hover, .header-lang-option.active {
  background: #e6faed;
  color: #22c55e;
}
.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #2563eb;
  cursor: pointer;
  margin-left: 1.2rem;
}
.header-mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .header-mobile-toggle {
    display: block;
  }
  .header-mobile-menu {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.3s;
    box-shadow: 0 8px 32px rgba(16,24,40,0.18);
  }
  .header-mobile-menu.open {
    transform: translateY(0);
  }
  .header-mobile-menu-inner {
    max-width: 400px;
    margin: 0 auto;
    padding: 2.5rem 1.2rem 1.2rem 1.2rem;
    position: relative;
  }
  .header-mobile-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2563eb;
    cursor: pointer;
  }
  .header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .header-lang-dropdown-mobile {
    margin: 1.2rem 0;
  }
}
/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--campaign-yellow);
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-divider {
  height: 1.2rem;
  width: 2px;
  background: var(--gray-500);
  margin: 0 0.5rem;
}
.footer-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--campaign-blue);
  text-transform: uppercase;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-intro {
  color: var(--gray-300);
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--campaign-blue);
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s;
}
.footer-social-link:hover {
  background: var(--campaign-darkgreen);
}
.footer-links, .footer-contact, .footer-newsletter {
  margin-top: 1rem;
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-700);
  padding-bottom: 0.5rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-link {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--campaign-yellow);
}
.footer-contact ul, .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
    margin-bottom: 0.50rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.footer-newsletter form {
  display: flex;
  margin-top: 0.5rem;
}
.footer-newsletter input[type="email"] {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem 0 0 0.375rem;
  border: 1px solid var(--gray-700);
  background: var(--gray-800);
  color: var(--white);
  outline: none;
  width: 100%;
}
.footer-newsletter button {
  background: var(--campaign-green);
  color: var(--white);
  border: none;
  padding: 0 1rem;
  border-radius: 0 0.375rem 0.375rem 0;
  cursor: pointer;
  transition: background 0.3s;
}
.footer-newsletter button:hover {
  background: var(--campaign-darkgreen);
}
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding: 1.5rem 0;
  text-align: center;
  color: var(--gray-400);
}
.footer-slogan {
  color: var(--campaign-yellow);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
/* Responsive */
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-mobile-trigger { display: none; }
  .mobile-nav { display: none !important; }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .nav-mobile-trigger { display: flex; }
  .mobile-nav { display: none; }
  .mobile-nav.open { display: block; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-flex { flex-direction: column; align-items: flex-start; }
}

.fa-location-dot, .fa-users{
    margin-right: 10px;
}
.fa-arrow-right{
    margin-left: 10px;
}
.footer-credit{
  margin-top: 10px;
  text-align: end;
  padding: 0 10px 0 0;
}
.footer-credit>a{
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
}