* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  box-sizing: border-box;
}

.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #e1effe;
  z-index: 101;
}

.banner-content {
  width: 85%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #151516;
}

.banner-content p {
  white-space: wrap;
}

.get-app {
  text-decoration: none;
}

.get-app button {
  min-width: fit-content;
  padding: 6px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background-color: #035bcd;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.get-app button span {
  white-space: nowrap;
}

.show-banner {
  display: none;
}

.hide-banner {
  display: none;
}

/* Header Styles */
/* Header Styles */
header {
  background-color: white;
  color: black;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 5px 20px 0 rgba(11, 7, 110, 0.04);
  display: flex;
  justify-content: center;
}

.header {
  width: 85%;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* Navigation Group Styles */
.nav-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo-nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #035bcd;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 35px;
  height: 35px;
}

.toggle-nav {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #035bcd;
  z-index: 101;
}

.toggle-nav .fa-xmark {
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #035bcd;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 50%;
  transition: width 0.4s ease;
  background-color: #035bcd;
  border-radius: 3px;
  opacity: 0;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  width: 50%;
}

/*mobile toogle*/

.mobile-toogle {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.auth-buttons a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.login {
  color: black;
}

.login:hover {
  color: #035bcd;
}

.register {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #035bcd;
  padding: 0 20px;
  color: white;
  border-radius: 6px;
  height: 40px;
  background-color: #035bcd;
  transition: background-color 0.3s;
}

.register:hover {
  background-color: #024aa3;
}

/* User Profile Dropdown */
.user-profile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* background-color: #4a6bff; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}

/* .drop menu */

.drop {
  position: absolute;
  top: 0px;
  right: -17px;
  width: 250px;
  padding-bottom: 7px;
  border-radius: 14px;
  border-radius: 8px;
  box-shadow: 0px 4px 17px #0c121c4d;
  color: black;
  background: white;
  display: none;
  transition: all 0.4s ease-in-out;
  transform: translateY(17px);
}

.drop.view {
  opacity: 1;
  visibility: visible;
  transform: translateY(54px);
}

.drop-headin {
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drop-headin-none {
  width: 39px;
  min-width: 39px;
  height: 39px;
  border-radius: 39px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop-headin-none .avatar-initial {
  height: 100%;
  width: 100%;
  border-radius: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop-headin-content {
  width: auto;
}

.drop-headin-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.drop-headin-subname {
  font-size: 12px;
  letter-spacing: 1px;
  color: #767882;
}

.drop-line {
  border-bottom: 1px solid #dfe0e1;
}

.drop-content {
  padding: 14px 21px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  cursor: pointer;
}

.drop-content a {
  text-decoration: none;
}

.drop-box {
  color: #3b3c41;
  display: flex;
  align-items: center;
  gap: 17px;
}

.drop-icon {
  font-size: 13px;
}

.drop-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.show-dropdown {
  display: block;
}

/* .mobile navigation */
.mobile-navs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 70px;
  height: 90dvh;
  display: flex !important;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
  border-top: 1px solid #00000033;
  background: white;
  z-index: 1;
}

.mobile-links {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-link {
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #00000033;
}

.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link a {
  width: 90%;
  color: black;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #3b3c41;
  letter-spacing: 0.4px;
}

.mobile-link a.active {
  font-weight: 700;
  color: #0658c4;
}

.mobile-buttons {
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.mobile-buttons .login,
.mobile-buttons .register,
.mobile-buttons .logout-btn {
  flex: 1 1 300px;
  max-width: 90%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c3ddfd;
  border-radius: 25px;
  background-color: white;
  color: #1a56db;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.mobile-buttons .register {
  background-color: #0658c4;
  color: white;
  border: none;
}

@media (max-width: 1200px) {
  .navigation-search {
    width: 120px;
  }

  .header {
    width: 85%;
  }
}

/* Mobile Styles */
@media (max-width: 992px) {
  .mobile-toogle {
    display: flex;
  }
  .top-nav {
    padding: 20px 0;
  }
  .nav-group {
    width: 100%;
    justify-content: space-between;
  }
  .logo-nav-container {
    width: 100%;
    justify-content: space-between;
  }

  .toggle-nav {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .auth-buttons {
    display: none;
  }

  /* Toggle icon animation */
  .toggle-nav .fa-bars {
    display: block;
  }

  .toggle-nav .fa-xmark {
    display: none;
  }

  .toggle-nav.active .fa-bars {
    display: none;
  }

  .toggle-nav.active .fa-xmark {
    display: block;
  }
}

/* Adjust for smaller screens */
@media (max-width: 576px) {
  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .header {
    width: 90%;
  }

  .profile-circle {
    width: 28px;
    height: 28px;
  }
  .toggle-nav {
    font-size: 20px;
  }

  .mobile-links {
    width: 90%;
  }
}

/* Modal Styles */
.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  padding: 20px;
}

.modal {
  background-color: white;
  border-radius: 12px;
  max-width: 375px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  animation: modalFadeIn 0.3s ease;
  overflow: hidden;
  display: flex;
  padding: 30px 40px;
}

.signup-modal {
  max-width: 420px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-content,
.signup-content {
  min-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* .more-info {
  padding: 40px 0;
  width: 40%;
} */

.login-headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.login-headers h2 {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.login-headers span{
  font-size: 12px;
  color: #676e8b;
}

.login-headers img{
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 22px;
  color: #888;
  transition: color 0.2s;
}

.close:hover {
  color: #035bcd;
}

.use-email{
  color: #035bcd;
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
}

/* Divider Styles */
.divider {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #ddd;
}

.divider-text {
  padding: 0 10px;
  color: #888;
  font-size: 14px;
}

/* login method */

.login-methods {
	width: 100%;
  display: flex;
  justify-content: center;
}

.google {
  background-color: white !important;
  color: #333 !important;
  border: 2px solid #ddd !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.google:hover {
  background-color: #f8f9fa !important;
}

.guest {
  background-color: transparent !important;
  color: #035bcd !important;
}

.guest:hover {
  background-color: rgba(3, 91, 205, 0.1) !important;
}

.guest a {
  color: inherit;
  text-decoration: none;
}

/* .login form */

.modal form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100%;
}

.modal input {
  min-width: 100%;
  padding: 5px 7px;
  border: 1px solid #dae2f2;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: #676e8b;
  font-size: 13px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: white;
}

.modal input:focus {
  outline: none;
}

.modal button {
  width: 100%;
  padding: 6px 12px;
  background-color: #035bcd;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.modal button:hover {
  background-color: #024aa3;
}

.forget-password a {
  font-size: 13px;
  color: #035bcd;
  text-decoration: none;
}

/* //.existing-account */

.existing-account {
  margin-top: 15px;
  font-size: 14px;
  color: #676e8b;
}

.existing-account a {
  color: #024aa3;
  text-decoration: none;
  font-weight: 500;
}

.user-not-found,
.user-not-found1,
.user-not-found2,
.user-not-found3,
.user-not-found4 {
  font-size: 12px;
  color: #f96060;
}

.verification-reset {
  font-size: 12px;
  color: #676e8b;
  margin-top: 10px;
}

.resend-code {
  color: #035bcd;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.resend-code:hover {
  text-decoration: underline;
  transition: 0.4s all;
}

/* Terms and Links */
.terms_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #676e8b;
}

.terms_content a {
  color: #676e8b;
  text-decoration: none;
  font-weight: 500;
}

/* More Info Section */
.more-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.browse_info {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.browse_info i {
  color: #035bcd;
  font-size: 40px;
  margin-top: 3px;
}

.browse_info p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* OTP Modal */
.verification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  justify-content: center;
  align-items: center;
}

.verification-content {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #333;
}

.verification-content h2 {
  font-size: 18px;
}

.verification-content h3,
.verification-content p {
  font-size: 15px !important;
}

.verification-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.verification-inputs input {
  width: 40px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.verification-inputs input:focus {
  border-color: #4a6bff;
  outline: none;
}

.trust-device {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  font-size: 14px;
  gap: 8px;
}

.verification-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 15px;
}

.verification-buttons button {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  flex: 1;
}

.verify-btn {
  background-color: #4a6bff;
  color: white;
  border: none;
}

.cancel-verify {
  color: #333;
  border: 1px solid #ddd;
  background-color: white;
  font-weight: 500;
}

.cancel-verify:hover {
  background-color: #dae2f2;
  transition: 0.4s all;
}

/* Footer Styles */
.footer {
  padding: 60px 0 20px;
  background-color: #00306e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.footer-container {
  width: 75%;
  max-width: 1300px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 250px;
}

.footer-about-header {
  font-size: 30px;
  color: white;
  font-weight: 600;
}

.footer-about-sub {
  font-size: 12px;
  color: white;
  width: 80%;
  font-weight: 400;
}

.footer-download-button {
  width: 150px;
  height: 35px;
  background-color: #0658c4;
  color: white;
  border-radius: 7px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-download-button:hover {
  background-color: #024aa3;
  transition: 0.4s all;
}

.footer-column,
.footer-social {
  width: 100%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
}

.footer-column {
  gap: 15px;
}

.footer-column span,
.footer-social-header {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.footer-column a {
  font-size: 12px;
  text-decoration: none;
  color: white;
}

.footer-column a:hover {
  text-decoration: underline;
  transition: 0.4s all;
}

.footer-column-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social {
  gap: 15px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  padding: 0;
}

.footer-social-icons a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 28px;
}

.footer-social-icons a:hover {
  opacity: 0.8;
  transition: 0.4s all;
}

.footer-bottom {
  padding: 20px 0 0;
  border-top: 1px solid #d9d9d97d;
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-bottom-content {
  width: 75%;
  text-align: center;
  color: white;
  font-size: 11px;
}

.footer-bottom-content a {
  color: #5c9df2;
  font-weight: 600;
}

.empty-state {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.empty-state img {
  height: 150px;
  object-fit: cover;
}

.empty-state h2 {
  font: 28px;
}

.empty-state span {
  font-size: 14px;
  color: #666;
}

.empty-state button {
  background-color: #035bcd;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.empty-state button:hover {
  background-color: #024aa3;
  transition: all 0.4s;
  opacity: 1;
}

@media (max-width: 1200px) {
  .footer-column,
  .footer-social {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 992px) {
  .footer-about .footer-column,
  .footer-social {
    flex: 1 1 400px;
  }
}

@media (max-width: 768px) {
  header.banner-active {
    top: 100px;
    /* transition: top 0.3s ease-in-out; */
  }

  .show-banner {
    display: flex;
  }

  .footer-container {
    width: 80%;
  }

  .footer-bottom-content {
    width: 80%;
  }

  .empty-state img {
    height: 100px;
    object-fit: cover;
  }

  .empty-state h2 {
    font: 24px;
  }

  .empty-state span {
    font-size: 13px;
  }

  .model-container {
    flex-direction: column;
  }

  .login-content,
  .signup-content,
  .more-info {
    width: 100%;
    padding: 30px;
  }

  .more-info {
    display: none;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .empty-state img {
    height: 75px;
    object-fit: cover;
  }

  .empty-state h2 {
    font: 20px;
    text-align: center;
  }

  .empty-state span {
    width: 80%;
    text-align: center;
  }

  .modal {
    padding: 20px;
  }

  .modal h2 {
    font-size: 20px;
    /* margin-bottom: 20px; */
  }

  .modal input {
    padding: 10px 12px;
  }

  .modal button {
    padding: 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .verification-inputs input {
    width: 35px;
    height: 45px;
    font-size: 18px;
  }
}

.verification-inputs input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.verification-inputs input[type="number"] {
  -moz-appearance: textfield;
}

.overflow {
  overflow: hidden;
}

.hide {
  display: none !important;
}
