:root {
  --bs-primary: #2D68C4;
  --bs-primary-rgb: 45,104,196;
  --bs-primary-hover: rgba(var(--bs-primary-rgb), 0.9);
  --bs-primary-focus-ring: rgba(var(--bs-primary-rgb), 0.18);
}
body {
    font-family: 'Ubuntu', sans-serif !important;
}
.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:active {
  background-color: var(--bs-primary-hover) !important;
  border-color: var(--bs-primary-hover) !important;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.25rem var(--bs-primary-focus-ring) !important;
}
.text-primary { color: var(--bs-primary) !important; }
.bg-primary { background-color: var(--bs-primary) !important; color: #fff !important; }
.border-primary { border-color: var(--bs-primary) !important; }
.btn-outline-primary { color: var(--bs-primary) !important; border-color: var(--bs-primary) !important; }

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-primary);
}
.text-24 {
  font-size: 24px;
  font-weight: 500;
  color: #6c757d;
}

@media (max-width: 576px) {
  .text-24 { font-size: 20px; }
}

.text-22 {
  font-size: 22px;
  font-weight: 400;
  color: #6c757d;
}

@media (max-width: 576px) {
  .text-22 { font-size: 20px; }
}

.hero-cta { margin-top: 1rem; }

:root { --header-height: 56px; }
.hero-fit { height: calc(100vh - var(--header-height)) !important; }
.hero-fit .mx-auto { display:block; }

.mouse-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--bs-primary);
}
.mouse-cta:focus { outline: none; box-shadow: 0 0 0 0.2rem var(--bs-primary-focus-ring); }
.mouse-cta .mouse {
  width: 22px;
  height: 38px;
  border-radius: 16px;
  border: 1px solid #bbbbbb;
  position: relative;
  box-sizing: border-box;
}
.mouse-cta .wheel {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: mouse-wheel 1.2s infinite;
}
@keyframes mouse-wheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.25; transform: translate(-50%, 14px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}
.mouse-cta .ready-text { font-size: 0.9rem; color: #6c757d; text-transform: none; font-weight: 400; }
@media (max-width: 576px) {
  .mouse-cta { bottom: 12px; }
  .mouse-cta .mouse { width: 28px; height: 44px; }
  .mouse-cta .ready-text { font-size: 0.85rem; }
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(11,45,78,0.12);
  cursor: pointer;
  z-index: 1010;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--bs-primary-hover); }
.scroll-top:focus { outline: none; box-shadow: 0 0 0 0.25rem var(--bs-primary-focus-ring); }

.feature-card { 
  cursor: pointer;
  transition: 0.3s;
}
.feature-card:hover { 
  transform: translateY(-12px);
}

:target, section[id], [id] {
  scroll-margin-top: 50px;
}

@media (max-width: 576px) {
  :target, section[id], [id] { scroll-margin-top: 30px; }
}

.modal-header {
  border-bottom: none;
}
.modal-footer {
  border-top: none;
}
.modal-backdrop.show {
  opacity: 0.2;
}
.modal-content {
    backdrop-filter: blur(18px);
}
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.offcanvas.offcanvas-end {
  width: 100vw; /* Full screen width */
  height: 100vh; /* Full screen height */
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

body.modal-open, .modal-open .navbar, .modal {
    padding-right: 0 !important;
}

@media (max-width: 767px) {
.vh-100 {
  height: 100svh !important;
}
.custom-offcanvas .nav-link {
  font-size: 2rem;
}
.offcanvas .custom-nav .nav-item .nav-link {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.offcanvas.show .custom-nav .nav-item .nav-link {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas.show .custom-nav .nav-item:nth-child(1) .nav-link {
  transition-delay: 0.1s;
}

.offcanvas.show .custom-nav .nav-item:nth-child(2) .nav-link {
  transition-delay: 0.2s;
}

.offcanvas.show .custom-nav .nav-item:nth-child(3) .nav-link {
  transition-delay: 0.3s;
}

.offcanvas.show .custom-nav .nav-item:nth-child(4) .nav-link {
  transition-delay: 0.4s;
}
.custom-offcanvas .custom-nav {
  margin-top: -56px !important;
}
}
.shadow-hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
    transition: 0.3s ease;
}
.shadow-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.18);
}