
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOPBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.topbar {
  color: var(--line);
  font-size: var(--text-xs);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}


.topbar-social-link:hover {
    color: rgba(255, 255, 255, 0.7);
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO WRAP â€” kept exactly as original
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-wrap,
.inner-hero {
  overflow-x: hidden;
}

.hero-wrap {
  background: var(--grad-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

.hero-wrap.home-hero {
  min-height: 90vh;
}

/* Dot patterns */
.dot-pattern {
  position: absolute;
  width: 160px;
  height: 200px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.25) 1.5px,
    transparent 1.5px
  );
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}
.dp-left {
  top: 120px;
  left: 30px;
}
.dp-right {
  bottom: 60px;
  right: 60px;
  width: 200px;
  height: 240px;
}



.drawer-topbar-info {
    color: var(--blue);
    font-size: 0.85rem;
}

.drawer-topbar-info i {
    color: var(--blue);
    width: 16px;
}


@media (min-width: 992px) {
    .nav-drawer {
        display: none !important;
    }
    .drawer-overlay {
        display: none !important;
    }
}