/* CSS Document */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: bold;
    font-size: medium;
}



body {
    
    height: 100vh;
    display: flex;
    justify-content:center;
    align-items: center;
    /* background-image: url("image/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay; */
    font-family: Arial, sans-serif;

    
}

.background-img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: fill;
        z-index: -1;
        pointer-events: none;
        
    } 


    
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #b7c9c800;
    font-weight: bold;
    font-style: italic;
    font-size: 1.25rem;
    padding: 10px 30px;
    

}
.logo-container {
    display: flex;
    gap: 10px; 
    width: 175px;
    height: 175px;
    margin-right: 0;
}


.menu {
    display: flex;
    gap: 20px;
    margin-left: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.menu a:hover,
.menu a.active {
    background-color: #2fc2ae;
    color: black;
    border-radius: 5px;
}

h1 {
    font-weight: bold;
    text-align: center;
    font-size: 60px; 
    margin-top: 30px;
    color: #031d20; 
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}




.signup-box ,.login-box {

    padding: 50px;
    border-radius: 10px;
    width: 1000px;
    height:550px;
    text-align: center;
    padding: 200px;
    margin-top: -100px;
    margin-bottom: 100px;
    
    

}




div label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-top: 40px;
    font-size: 20px;
    position:fixed;
    
} 



input {
    
    width: 50%;
    padding: 10px;
    margin-top: 30px;
    border: 1px solid #ccc;
    border-radius: 20px;
    border:1px solid #ccc;
    box-shadow: 2px 2px 5px rgb(0,0,0,0.5);
    

}


.password-container {
    position: relative;
}

.eye-icon {
    width: 20px;
    position: absolute;
    right: 170px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
}

button {
    background: #104a4e;
    color: white;
    padding: 10px;
    width: 100px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}



button:hover {
    background: #69c0c3;
}


p {
    margin-top: 10px;
    font-size: 16px;
}

p a {
    color: #104a4e;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
    color: #69c0c3;
}



.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.notification-modal.hidden {
    display: none;
}

.notification-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease-in-out;
}

.notification-content h2 {
    font-size: 2rem;
    color: #104a4e;
    margin-bottom: 15px;
}

.notification-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.notification-content button {
    background: #104a4e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease-in-out;
}

.notification-content button:hover {
    background: #69c0c3;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}





.menu-icon {
    display: none; 
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000; 
    width: 40px;
    height: 40px;
    

}

.menu-icon .bar {
    display: block;
    width: 30px;
    height: 5px;
    margin: 6px 0;
    background-color: black;
    border-radius: 10px; 

}

#navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

#navbar ul li a {
    text-decoration: none;
    color: black;
}


#navbar.hidden {
    display: none;
}


@media (max-width: 768px) {
    .menu-icon {
        display: block; 
    }

    #navbar {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding-top: 50px;
    }

    #navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    #navbar.visible {
        display: flex; 
    }
}






@media (max-width: 768px) {
    body {
        flex-direction: column;
        padding: 20px;
    }

    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .logo-container {
        width: 100px;
        height: 100px;
        margin-right: 10px;

    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .signup-box, .login-box {
        width: 90%;
        height: auto;
        padding: 20px;
        margin-top: 20px;
    }

    input {
        width: 60%;
        padding: 10px;
        margin-top: 20px;
        border-radius: 30px;
        border: 1px solid #ccc;
        box-shadow: 1px 1px 3px rgb(0,0,0,0.5);
        font-size: 16px; 
        margin-left: 10px; 
        margin-right: 10px; 
        margin-top: 15px; 
        margin-bottom: 15px; 
    
    }

    div label {
        font-size: 16px;
        margin-top: 20px;
        position: relative;
        left: 10px; 
    

    }

    .eye-icon {
        width: 20px;
        height: 20px;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);


    }

    

    button {
        width: 80px;
        padding: 8px;
    }

    h1 {
        font-size: 40px;
    }

}
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .header {
        font-size: 1rem;
        padding: 5px;
    }

    .logo-container {
        width: 80px;
        height: 80px;
    }

    .menu a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .signup-box, .login-box {
        width: 100%;
        padding: 15px;
    }

    input {
        width: 90%;
        padding: 10px;
        margin-top: 15px;
        border-radius: 30px;
        border: 1px solid #ccc;
        box-shadow: 1px 1px 3px rgb(0,0,0,0.5);
        font-size: 14px; 
        margin-left: 5px; 
        margin-right: 5px;
        margin-top: 10px;
        margin-bottom: 10px;


    }

    div label {
        font-size: 14px;
        margin-top: 15px;
        position: relative; 
        left: 10px;


    
    }
    .eye-icon {
        width: 18px;
        height: 18px;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);

    }

    button {
        width: 80px;
        padding: 6px;
    }

    h1 {
        font-size: 30px;
    }

    p {
        font-size: 14px;
    }

    p a {
        font-size: 14px;
    }

    
}




@media (max-width: 768px) {
    .notification-content {
        width: 80%;
        padding: 20px; 
    }

    .notification-content h2 {
        font-size: 1.5rem; 
    }

    .notification-content p {
        font-size: 1rem; 
    }

    .notification-content button {
        font-size: 0.9rem;
        padding: 8px 16px; 
    }


}




@media (max-width: 480px) {
    .notification-content {
        width: 90%; 
        padding: 15px;
    }

    .notification-content h2 {
        font-size: 1.2rem; 
    }

    .notification-content p {
        font-size: 0.9rem; 
    }

    .notification-content button {
        font-size: 0.8rem; 
        padding: 6px 12px; 
    }
}


@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    body {
        background-attachment: scroll;
        background-position: top center;
    }
}  

@media (max-width: 480px) {
    body {
      font-size: 14px;
    }
  
    .header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 15px;
    }
  
    .logo-container {
      width: 100px;
      height: 100px;
      margin-bottom: 10px;
      margin-right: 300px;
    }
  
    .logo-container img {
      max-width: 100px;
      max-height: 100px;
  
    }
  
    .menu {
      text-align: center;
    }
  
    #chatbot-icon {
      top: 130px;
      right: 10px;
      width: 70px;
      height: 70px;
    }
  
    #chatbot-icon img {
      width: 100%;
      height: 100%;
    }
  }
  /* Basic styling for the hamburger menu */
.menu-icon {
    display: none; 
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000; 
    width: 40px;
    height: 40px;
  }
  
  .menu-icon .bar {
    display: block;
    width: 30px;
    height: 5px;
    margin: 6px 0;
    background-color: black;
    border-radius: 10px; 
  
  }
  
  /* Make the navbar hidden in responsive mode */
  #navbar.hidden {
    display: none;
  }
  
  /* Responsive layout - when screen width is below 768px */
  @media (max-width: 768px) {
    .menu-icon {
        display: block; /* Show hamburger icon in mobile view */
        z-index: 1001;
    }
  
    #navbar {
      position: absolute;
      top: 0;
      right: 5;
      width: 100%;
      flex-direction: row;
      align-items: center;
      display: none; /* Hidden by default */
      padding-top: 90px;
      font-weight: bold;
      font-style: italic;
      font-size: 1.25rem;
    left: 5px;
    gap: 3px;
    
  }
  
    #navbar ul {
        flex-direction: row;
        gap: 10px;
    }
  
    #navbar.visible {
        display: flex; /* Show navbar when toggled */
        z-index: 1000;
    }
    .modal-content {
      margin: 50% auto;}
  }
  
  