@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

.nav-head{
    background-color: aliceblue;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-section {
    display: flex;
    align-items: center;
    color: blue;
}
.logo-section img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}
.logo-section h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
ul.nav-links1 {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin: 0;
}
ul.nav-links1 li {
    margin: 0 10px;
}
ul.nav-links1 li a {
    color: navy;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
    padding: 8px 12px; 
    border-radius: 4px;
}
ul.nav-links1 li a i {
    margin-right: 6px;
}
ul.nav-links1 li a:hover{
    background-color: darkcyan;
    color: white;
}
.login {
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.login i {
    margin-right: 6px;
}


.login-btn:hover {
  background-color: darkcyan; 
  color: white; 
}
.login-btn{
    color: navy;
    cursor: pointer;
    display: inline-block;
    align-items: center;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.login-mobile{
    display: none;
}
.login-desktop{
    display: block;
}
.hamburger{
    color: black;
    font-size: 28px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 8px;
}
.nav-links1{
    display: flex;
    gap: 20px;
    list-style: none;
}
#navLinks.open{
    left: 0;
}

@media(max-width:900px){
    .hamburger{
        display: block;
    }
    .login-desktop{
        display: none;
    }
    .login-mobile{
        display: block;
    }
    .nav-links1{
        position: fixed;
        top: 90px;
        left: -100%;
        width:100%;
        background: blue;
        color: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        transition: 0.3s ease;
    }
    .nav-links1.open{
        left: 0;
    }
    .nav-links1 a{
        font-size: 18px;
        color: white !important;
    }
    .login-btn{
        display: block;
        width: 120px;
        text-align: center;
    }
    
}

@media (max-width:428px){
    .logo-section h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
}

@media (max-width:323px){
    .logo-section h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}
}



/* ===== FORM WRAPPER ===== */
.form-wrapper {
  display: flex;
  justify-content: center; /* center horizontally */
  padding: 60px 20px;      /* spacing from top */
}

/* FORM CONTAINER */
.form-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 600px;
}

.form-container h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.form-container p {
  margin-bottom: 20px;
  color: #555;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.form-group button:hover {
  background-color: #0056b3;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 900px) {
  .brand-text h2 {
    font-size: 15px;
  }

  .brand-text p {
    font-size: 10px;
  }

  .logo {
    width: 35px;
    height: 35px;
  }

  .nav-right ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-right {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #007bff;
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-right.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .nav-right ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-right ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-right ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  /* Shrink logo & text on mobile */
  .logo {
    width: 30px;
    height: 30px;
  }

  .brand-text h2 {
    font-size: 14px;
  }

  .brand-text p {
    font-size: 10px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 6px 15px;
  }

  .brand-text h2 {
    font-size: 13px;
  }

  .brand-text p {
    font-size: 9px;
  }

  .logo {
    width: 28px;
    height: 28px;
  }

  .form-wrapper {
    padding: 40px 15px;
  }

  .form-container {
    padding: 20px;
  }
}
