
:root {
  --primary-color: var(--color-primary);
  --primary-dark: var(--color-other-7);
  --secondary-color: var(--color-secondary);
  --dark-bg: var(--color-surface-dark);
  --darker-bg: var(--color-surface-darker);
  --text-dark: var(--color-surface-dark);
  --text-light: var(--color-other-9);
  --border-color: var(--color-other-10);
}



.bg-info-2 {
  background-color: var(--color-info);
}

.bg-warning-2 {
  background-color: var(--color-warning);
}

.bg-danger-2 {
  background-color: var(--color-danger);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: var(--color-white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px var(--color-black-alpha-5);
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px var(--color-other-1);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-bg) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-brand i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-login {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-login:hover {
  background: var(--primary-color);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-primary-alpha-30);
}

.btn-get-started {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-get-started:hover {
  background: var(--primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-primary-alpha-40);
}

/* Footer Styles */
.footer {
  background: var(--dark-bg);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-description {
  color: var(--color-other-3);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: var(--color-other-3);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid var(--color-white-alpha-10);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-other-3);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white-alpha-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Scroll to Top Button */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px var(--color-primary-alpha-40);
}

#scrollTop.active {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--color-other-34);
}

/* Utility Classes */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}





.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--color-primary-alpha-30);
}

.btn-primary-2 {
  background: linear-gradient(135deg, var(--color-other-41) 0%, var(--color-other-43) 100%);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--color-primary-alpha-30);
  color: white;
}

.btn-primary-2-outline {
  background: transparent;
  border: solid;
  border-color: var(--color-primary);
  border-width: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-2-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--color-primary-alpha-30);
  color: var(--color-primary);
}

.btn-secondary {
  background: var(--color-white);
  border: 1px solid var(--primary-color)!important;
  color: var(--primary-color)!important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-other-41) 0%, var(--color-other-42) 100%)!important;
  color: white!important;
  transform: translateY(-2px)!important;
  box-shadow: 0 10px 25px var(--color-primary-alpha-30);
}

.btn-danger {
  background: var(--color-danger);
  border: 1px solid var(--color-danger)!important;
  color: white!important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: linear-gradient(135deg, var(--color-danger) 0%, var(--color-other-40) 100%)!important;
  color: white!important;
  transform: translateY(-2px)!important;
  box-shadow: 0 10px 25px var(--color-primary-alpha-30);
}



.btn-sm-custom {
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
}



.text-primary {
  color: var(--color-primary)!important;
}

.text-secondary {
  color: var(--color-secondary)!important;
}

.text-info {
  color: var(--color-info)!important;
}

.text-warning {
  color: var(--color-warning)!important;
}

.text-danger {
  color: var(--color-danger)!important;
}

.text-success {
  color: var(--color-success)!important;
}

.text-white {
  color: var(--color-white)!important;
}




.dropdown-menu li a:hover {
  background: linear-gradient(135deg, var(--color-primary-alpha-20) 0%, var(--color-primary-alpha-10) 100%);
  cursor: pointer;
}



.navbar-bi-person {
  fill: var(--color-primary)!important;
}

.navbar-user-toggle:hover {
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-user-toggle:hover {
  box-shadow: 0 10px 25px var(--color-primary-alpha-40);
}



.border-none {
  border-style: none;
  border-width: none;
  border-color: none;
  border: none;
}


.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  bottom: 40px;
}


