/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 03 2026 | 09:31:50 */
/* =========================================
   Bazecity Projects Mega Menu
   Clean Portfolio Style
   Uses Website Default Font
   Font Awesome Ready
========================================= */

.bazecity-projects-mega {
  --bc-primary: #E8491D;
  --bc-primary-dark: #C73814;
  --bc-project: #2563EB;
  --bc-project-dark: #1D4ED8;
  --bc-text: #1f2933;
  --bc-muted: #667085;
  --bc-border: rgba(17, 24, 39, 0.10);
  --bc-border-soft: rgba(17, 24, 39, 0.07);
  --bc-soft: #fff8f4;
  --bc-project-soft: #f4f8ff;

  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--bc-border);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  box-sizing: border-box;

  /* Use website/theme default font */
  font-family: inherit !important;
}

.bazecity-projects-mega *,
.bazecity-projects-mega *::before,
.bazecity-projects-mega *::after {
  box-sizing: border-box;
}

/* Use website default font for text only */
.bazecity-projects-mega a,
.bazecity-projects-mega strong,
.bazecity-projects-mega small,
.bazecity-projects-mega h3,
.bazecity-projects-mega p,
.bazecity-projects-mega .bazecity-mega-label {
  font-family: inherit !important;
}

/* Scrollbar */
.bazecity-projects-mega {
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 73, 29, 0.45) rgba(17, 24, 39, 0.06);
}

.bazecity-projects-mega::-webkit-scrollbar {
  width: 8px;
}

.bazecity-projects-mega::-webkit-scrollbar-track {
  background: rgba(17, 24, 39, 0.06);
  border-radius: 999px;
}

.bazecity-projects-mega::-webkit-scrollbar-thumb {
  background: rgba(232, 73, 29, 0.45);
  border-radius: 999px;
}

.bazecity-projects-mega::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 73, 29, 0.70);
}

/* Main layout */
.bazecity-projects-mega .bazecity-mega-inner {
  display: grid;
  grid-template-columns: 305px 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--bc-border-soft);
  border-radius: 14px;
}

/* Left intro panel */
.bazecity-projects-mega .bazecity-mega-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
  background: #fffaf7;
  border-right: 1px solid rgba(17, 24, 39, 0.08);
}

.bazecity-projects-mega .bazecity-mega-intro::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 4px;
  height: 72px;
  background: var(--bc-primary);
  border-radius: 0 999px 999px 0;
}

.bazecity-projects-mega .bazecity-mega-label,
.bazecity-projects-mega .bazecity-mega-intro > span {
  display: block;
  margin-bottom: 12px;
  color: var(--bc-primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bazecity-projects-mega .bazecity-mega-intro h3 {
  margin: 0 0 14px;
  color: var(--bc-text);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bazecity-projects-mega .bazecity-mega-intro p {
  margin: 0 0 22px;
  color: var(--bc-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.bazecity-projects-mega .bazecity-mega-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--bc-primary) !important;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.bazecity-projects-mega .bazecity-mega-cta::after {
  content: "→";
  margin-left: 7px;
  transition: transform 0.2s ease;
}

.bazecity-projects-mega .bazecity-mega-cta:hover {
  color: var(--bc-primary-dark) !important;
}

.bazecity-projects-mega .bazecity-mega-cta:hover::after {
  transform: translateX(3px);
}

/* Right project grid */
.bazecity-projects-mega .bazecity-mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ffffff;
}

/* Project cards */
.bazecity-projects-mega .bazecity-mega-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: flex-start;
  min-height: 106px;
  padding: 20px 42px 20px 18px;
  color: inherit;
  background: #ffffff;
  border-bottom: 1px solid var(--bc-border-soft);
  text-decoration: none !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.bazecity-projects-mega .bazecity-mega-card:nth-child(odd) {
  border-right: 1px solid var(--bc-border-soft);
}

.bazecity-projects-mega .bazecity-mega-card:nth-last-child(-n + 2) {
  border-bottom: none;
}

.bazecity-projects-mega .bazecity-mega-card::after {
  content: "›";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(17, 24, 39, 0.24);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.bazecity-projects-mega .bazecity-mega-card:hover {
  background: var(--bc-project-soft);
  box-shadow: inset 3px 0 0 var(--bc-project);
}

.bazecity-projects-mega .bazecity-mega-card:hover::after {
  color: var(--bc-project);
  transform: translateX(2px);
}

/* Icon holder */
.bazecity-projects-mega .bazecity-mega-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-project);
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.20);
  border-radius: 12px;
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bazecity-projects-mega .bazecity-mega-card:hover .bazecity-mega-icon {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.36);
  color: var(--bc-project-dark);
}

/* Font Awesome repair */
.bazecity-projects-mega .bazecity-mega-icon i {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  color: inherit;
}

.bazecity-projects-mega .bazecity-mega-icon i.fa-solid,
.bazecity-projects-mega .bazecity-mega-icon i.fas,
.bazecity-projects-mega .bazecity-mega-icon i.fa-solid::before,
.bazecity-projects-mega .bazecity-mega-icon i.fas::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.bazecity-projects-mega .bazecity-mega-icon i.fa-brands,
.bazecity-projects-mega .bazecity-mega-icon i.fab,
.bazecity-projects-mega .bazecity-mega-icon i.fa-brands::before,
.bazecity-projects-mega .bazecity-mega-icon i.fab::before {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Text */
.bazecity-projects-mega .bazecity-mega-card strong {
  display: block;
  margin: 0 0 6px;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bazecity-projects-mega .bazecity-mega-card small {
  display: block;
  color: var(--bc-muted);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 400;
}

/* Prevent Flatsome/theme uppercase styling inside menu */
.bazecity-projects-mega a,
.bazecity-projects-mega strong,
.bazecity-projects-mega small,
.bazecity-projects-mega h3,
.bazecity-projects-mega p,
.bazecity-projects-mega span {
  text-transform: none;
}

.bazecity-projects-mega .bazecity-mega-label,
.bazecity-projects-mega .bazecity-mega-intro > span {
  text-transform: uppercase;
}

/* =========================================
   Flatsome-safe dropdown cleanup
========================================= */

.nav-dropdown:has(.bazecity-projects-mega),
.header-nav .nav-dropdown:has(.bazecity-projects-mega) {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.nav-dropdown:has(.bazecity-projects-mega)::before,
.nav-dropdown:has(.bazecity-projects-mega)::after,
.header-nav .nav-dropdown:has(.bazecity-projects-mega)::before,
.header-nav .nav-dropdown:has(.bazecity-projects-mega)::after {
  display: none !important;
  content: none !important;
}

/* Mobile */
@media (max-width: 900px) {
  .bazecity-projects-mega {
    width: 100%;
    max-height: none;
    overflow-y: visible;
    padding: 10px;
    border-radius: 14px;
    box-shadow: none;
  }

  .bazecity-projects-mega .bazecity-mega-inner {
    grid-template-columns: 1fr;
  }

  .bazecity-projects-mega .bazecity-mega-intro {
    padding: 24px 22px;
    border-right: none;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .bazecity-projects-mega .bazecity-mega-intro::before {
    top: 0;
    left: 22px;
    width: 72px;
    height: 4px;
    border-radius: 0 0 999px 999px;
  }

  .bazecity-projects-mega .bazecity-mega-intro h3 {
    font-size: 22px;
  }

  .bazecity-projects-mega .bazecity-mega-links {
    grid-template-columns: 1fr;
  }

  .bazecity-projects-mega .bazecity-mega-card {
    min-height: auto;
    border-right: none !important;
    border-bottom: 1px solid var(--bc-border-soft);
    padding: 18px 40px 18px 18px;
  }

  .bazecity-projects-mega .bazecity-mega-card:last-child {
    border-bottom: none;
  }
}