* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /* Blue -> Green palette */
    --primary-dark: #072a1b; /* was dark blue, now dark green */
    --secondary-dark: #123a2e;
    --accent-blue: #2cb67d; /* keep name but now green */
    --accent-gold: #d4af37;
    --text-light: #ffffff;
    --text-gray: #e5e7eb;
    --overlay: rgba(7, 42, 30, 0.78);
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
    color: var(--text-light);
    background: var(--primary-dark);
    min-height: 100vh;
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 42, 30, 0.95); /* dark green */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
  }
  
  .logo {
    height: 35px;
    width: auto;
  }
  
  .nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-lang { display: none; }

  .lang-select {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .lang-btn {
    background: transparent;
    border: 1px solid rgba(229,231,235,0.08);
    color: var(--text-gray);
    padding: 6px 8px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.18s ease;
  }

  .lang-btn:hover { color: var(--text-light); border-color: rgba(229,231,235,0.18); }

  .lang-btn.active { background: rgba(255,255,255,0.06); color: var(--text-light); border-color: rgba(255,255,255,0.12); }
  
  .nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--text-light);
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .bar {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
  }
  
  .hero-login,
  .page-hero-full {
    position: relative;
    width: 100%;
    min-height: 100vh;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
  }
  
  .hero-content-center {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 5rem 2rem 2rem;
  }
  
  .login-container {
    width: 100%;
    max-width: 420px;
  }
  
  .login-card {
    background: rgba(8, 48, 36, 0.92); /* green-tinted card */
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(7, 42, 30, 0.28);
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 2rem;
    background-color: white !important;
    padding: 1rem;
  }
  
  .login-logo-img {
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 4%;
    
  }
  
  .login-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
  }
  
  .login-header p {
    color: var(--text-gray);
    font-size: 1rem;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .input-group {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .input-group2{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .input-group i {
    position: absolute;
    left: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
  }
  
  .input-group input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s;
  }
  
  .input-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .input-group input::placeholder {
    color: rgba(229, 231, 235, 0.5);
  }
  
  .login-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--accent-blue);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
  
  .login-btn:hover {
    background: #20b06a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 182, 125, 0.14);
  }
  
  .forgot-password {
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .forgot-password a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .forgot-password a:hover {
    color: var(--accent-blue);
  }
  
  .content-box {
    max-width: 800px;
    width: 100%;
    background: rgba(9, 50, 38, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(7, 42, 30, 0.28);
  }
  
  .content-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
  }
  
  .content-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
  }
  
  .content-text p {
    margin-bottom: 1rem;
  }
  
  .content-text p:last-child {
    margin-bottom: 0;
  }
  
  .content-text strong {
    color: var(--text-light);
  }
  
  .contact-wrapper {
    max-width: 1000px;
    width: 100%;
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .contact-wrapper h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  .contact-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
  }
  
  .contact-cards {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
  }

  .page-hero-full .contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
  }
  
  .page-hero-full .contact-info div {
    margin-bottom: 5px;
  }
  
  .page-hero-full .contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .page-hero-full .contact-info a:hover {
    color: #34d7a1;
  }
  
  
  .contact-card {
    background: rgba(9, 50, 38, 0.78);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 350px;
  }
  
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 182, 125, 0.10) 0%, rgba(212, 175, 55, 0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
  
  .contact-card:hover::before {
    opacity: 1;
  }
  
  .contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    background: rgba(8, 48, 36, 0.85);
  }
  
  .contact-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
  }
  
  .contact-icon-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid rgba(44, 182, 125, 0.20);
    transition: all 0.4s;
  }
  
  .contact-card:hover .contact-icon-wrapper::before {
    width: 95px;
    height: 95px;
    border-color: rgba(212, 175, 55, 0.4);
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #20b06a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(44, 182, 125, 0.12);
    position: relative;
    z-index: 1;
  }
  
  .contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
  }
  
  .contact-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
  }
  
  .contact-details {
    z-index: 1;
  }
  
  .contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  
  .contact-details p,
  .contact-details a {
    color: var(--text-gray);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.6;
  }
  
  .contact-details a:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
    display: inline-block;
  }
  
  @media (max-width: 1000px) {
    .lang-select { display: none; }
    .nav-lang { display: block; }

    .nav-lang-inner { display:flex; gap:8px; justify-content:center; }
    .nav-lang .lang-btn { padding: 8px 10px; font-size: 0.95rem; }
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 60px;
      flex-direction: column;
  background: rgba(7, 42, 30, 0.98);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      padding: 2rem 0;
      gap: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .hamburger {
      display: flex;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  
    .nav-container {
      padding: 0.75rem 1.5rem;
    }
  
    .nav-logo {
      font-size: 1rem;
    }
  
    .logo {
      height: 30px;
    }
  
    .hero-content-center {
      padding: 5rem 1.5rem 2rem;
    }
  
    .content-box {
      padding: 2rem 1.5rem;
    }
  
    .content-box h1 {
      font-size: 2rem;
    }
  
    .content-text {
      font-size: 0.95rem;
    }
  
    .contact-wrapper h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
  
    .contact-subtitle {
      font-size: 0.95rem;
    }
  
    .contact-cards {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .contact-card {
      padding: 2rem 1.5rem;
    }
  
    .contact-icon-wrapper::before {
      width: 75px;
      height: 75px;
    }
  
    .contact-card:hover .contact-icon-wrapper::before {
      width: 80px;
      height: 80px;
    }
  
    .contact-icon {
      width: 60px;
      height: 60px;
    }
  
    .contact-icon i {
      font-size: 1.5rem;
    }
  
    .contact-details h3 {
      font-size: 1.1rem;
    }
  
    .contact-details p,
    .contact-details a {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .nav-logo span {
      font-size: 0.9rem;
    }
  
    .content-box h1,
    .contact-wrapper h1 {
      font-size: 1.75rem;
    }
  
    .content-text {
      font-size: 0.9rem;
    }
  
    .login-card {
      padding: 1.75rem 1.25rem;
    }
  
    .contact-card {
      padding: 1.75rem 1.25rem;
    }
  
    .contact-icon {
      width: 55px;
      height: 55px;
    }
  
    .contact-icon i {
      font-size: 1.35rem;
    }
  
    .contact-details h3 {
      font-size: 1.05rem;
      margin-bottom: 0.75rem;
    }
  
    .contact-details p,
    .contact-details a {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 1024px) and (min-width: 769px) {
    .contact-cards {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  
    .contact-card {
      padding: 2rem 1.5rem;
    }
  }
  
  html.no-scroll,
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  
  h2{
    margin-bottom: 2rem;
  }

 .input-group.error input {
  border: 1px solid red;
}

.input-group small.error-message {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
