@charset "UTF-8";
:root {
  --brand-orange: #ff6500;
  --brand-teal: #44d5cc;
  --brand-charcoal: #0c0c0c;
  --brand-gray: #666666;
  --brand-light: #fafafa;
  --brand-divider: #ededed;
}

html {
  scroll-behavior: smooth;
}

.custom-cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--brand-orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: difference;
  display: none;
}
@media (min-width: 1024px) {
  .custom-cursor-ring {
    display: block;
  }
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  display: none;
}
@media (min-width: 1024px) {
  .custom-cursor-dot {
    display: block;
  }
}

.cursor-hover .custom-cursor-ring {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 101, 0, 0.1);
  border-color: var(--brand-orange);
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hilight-text {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.chart-box {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chart-box .chart-block-first {
  animation: spin-clockwise 24s linear infinite;
}
.chart-box .chart-block-socend {
  animation: spin-counter 18s linear infinite;
}
.chart-box .chart-block-third {
  animation: spin-clockwise 12s linear infinite;
}

@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin-counter {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.brandlogo-block {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.brandlogo-block .brandlogo-slider {
  display: inline-flex;
  width: max-content;
  animation: brandlogo-scroll 28s linear infinite;
}
.brandlogo-block .brandlogo-row {
  display: inline-flex;
  align-items: center;
}

@keyframes brandlogo-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333%, 0, 0);
  }
}
.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonial-wrapper .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 0;
}
.testimonial-wrapper .testimonial-row {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonial-scroll-ltr 40s linear infinite;
  will-change: transform;
}
.testimonial-wrapper .testimonial-row.is-rtl {
  animation: testimonial-scroll-rtl 40s linear infinite;
}

@keyframes testimonial-scroll-ltr {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes testimonial-scroll-rtl {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.accordion-item .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.accordion-item .accordion-arrow {
  position: relative !important;
}
.accordion-item .accordion-active-icon {
  display: none;
}
.accordion-item.w--current .accordion-body, .accordion-item.active .accordion-body {
  max-height: 200px;
}
.accordion-item.w--current .accordion-header .accordion-inactive-icon, .accordion-item.active .accordion-header .accordion-inactive-icon {
  display: none !important;
}
.accordion-item.w--current .accordion-header .accordion-active-icon, .accordion-item.active .accordion-header .accordion-active-icon {
  display: block !important;
  opacity: 1 !important;
  position: relative !important;
}

.footer-large-logo {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 !important;
  position: absolute;
  bottom: 0;
  left: 0 !important;
  right: 0 !important;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
  z-index: 0;
  height: auto;
}
.footer-large-logo img {
  display: none !important;
}

.footer-large-logo-text {
  font-size: clamp(40px, 14vw, 135px) !important;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to bottom, rgba(255, 102, 0, 0.884), rgba(68, 213, 204, 0.6) 80%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.feature-block .mt24 {
  position: relative;
  overflow: hidden;
}
.feature-block .mt24 .chart-overlay {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: right;
}
.feature-block:hover .mt24 .chart-overlay {
  transform: scaleX(0);
}

.reveal-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.w-nav-menu.w--open {
  display: block !important;
  transform: translateX(0) !important;
  opacity: 1 !important;
}

@media screen and (min-width: 992px) {
  .main-container {
    max-width: 1180px !important;
  }
}
@media screen and (min-width: 1280px) {
  .main-container {
    max-width: 1326px !important;
  }
}
.hero-title {
  font-size: 5rem !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.8rem !important;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.8rem !important;
  }
}

.hero-subtitle-block {
  padding: 6px 20px 6px 6px !important;
  border: 1px solid rgba(255, 101, 0, 0.15) !important;
  background: rgba(255, 101, 0, 0.03) !important;
  margin-bottom: 24px !important;
}

.hero-content p.max570 {
  font-size: 1.25rem !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 36px !important;
}
@media (max-width: 767px) {
  .hero-content p.max570 {
    font-size: 1.1rem !important;
  }
}

.hero-dashboard-gradient {
  margin-top: -30px !important;
  padding-top: 40px !important;
}
@media (max-width: 991px) {
  .hero-dashboard-gradient {
    margin-top: 0px !important;
    padding-top: 30px !important;
  }
}

.hero-dashboard-box {
  border-radius: 24px !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15), 0 0 100px rgba(255, 101, 0, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
  background: #fff;
}
.hero-dashboard-box:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 45px 80px -20px rgba(0, 0, 0, 0.22), 0 0 120px rgba(255, 101, 0, 0.15) !important;
}

.primary-button {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}
.primary-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px -6px rgba(255, 101, 0, 0.35) !important;
}
.primary-button:active {
  transform: translateY(0) !important;
}

.projects-section,
.portfolio-grid-section,
.project-details-content-section,
.admin-portal-section {
  position: relative;
  background: #ffffff;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .projects-section,
  .portfolio-grid-section,
  .project-details-content-section,
  .admin-portal-section {
    padding: 50px 0;
  }
}

.portfolio-hero-section {
  padding: 100px 0 40px 0;
  background: radial-gradient(circle at top, rgba(255, 101, 0, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
}

.projects-grid-wrapper {
  margin-top: 48px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.project-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s allow-discrete;
}
.project-item.active {
  opacity: 1;
  transform: translateY(0);
}

.project-box {
  background: #ffffff;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 32px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.project-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 101, 0, 0.2);
  box-shadow: 0 30px 60px -15px rgba(12, 12, 12, 0.05), 0 0 50px rgba(255, 101, 0, 0.05);
}
.project-box:hover .project-thumb {
  transform: scale(1.05);
}

.project-thumb-block {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.6/1;
  background: #f3f4f6;
  margin-bottom: 20px;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.project-category {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff6500;
  letter-spacing: 0.08em;
}

.project-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 20px;
}

.project-content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(12, 12, 12, 0.06);
  padding-top: 16px;
  margin-top: auto;
}

.project-meta-block {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
}
.project-meta-block .meta-divider {
  color: rgba(12, 12, 12, 0.1);
}

.filter-btn {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
  background: #fafafa;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 100px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-btn:hover {
  color: #ff6500;
  border-color: rgba(255, 101, 0, 0.3);
  background: rgba(255, 101, 0, 0.02);
}
.filter-btn.active {
  color: #ffffff;
  background: #ff6500;
  border-color: #ff6500;
  box-shadow: 0 10px 20px -6px rgba(255, 101, 0, 0.3);
}

.project-details-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 48px;
}
@media (max-width: 991px) {
  .project-details-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.project-details-image-box {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background: #fafafa;
  aspect-ratio: 1.8/1;
}

.project-details-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info-widget {
  background: #ffffff;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 32px;
  padding: 36px;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 40px rgba(12, 12, 12, 0.02);
}
@media (max-width: 991px) {
  .project-info-widget {
    position: relative;
    top: 0;
    padding: 30px;
  }
}

.info-label {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 0.1em;
}

.info-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0c0c0c;
  margin-top: 4px;
}

.tech-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6500;
  background: rgba(255, 101, 0, 0.06);
  border: 1px solid rgba(255, 101, 0, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

.admin-portal-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .admin-portal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.glass-form-card,
.glass-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(12, 12, 12, 0.02);
}
@media (max-width: 767px) {
  .glass-form-card,
  .glass-sidebar-card {
    padding: 24px;
  }
}

.form-label {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0c0c0c;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background: #fafafa;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #0c0c0c;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 4px rgba(255, 101, 0, 0.08);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
}
.file-upload-wrapper .file-upload-input {
  width: 100%;
  font-size: 0.9rem;
  color: #4b5563;
  padding: 8px 0;
}
.file-upload-wrapper .file-upload-input::file-selector-button {
  background: #fafafa;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 8px;
  padding: 6px 14px;
  color: #0c0c0c;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.3s ease;
}
.file-upload-wrapper .file-upload-input::file-selector-button:hover {
  background: #ff6500;
  color: #ffffff;
  border-color: #ff6500;
}

/* Custom Hamburger and Close Icons */
.hamburger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 99;
}
.hamburger-icon .line {
  width: 100%;
  height: 2.5px;
  background-color: #0c0c0c;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger-icon:hover .line {
  background-color: #7c6ff5;
}

.close-icon {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.close-icon .line {
  width: 100%;
  height: 2.5px;
  background-color: #0c0c0c;
  border-radius: 2px;
  position: absolute;
  transition: background-color 0.3s ease;
}
.close-icon .line-1 {
  transform: rotate(45deg);
}
.close-icon .line-2 {
  transform: rotate(-45deg);
}
.close-icon:hover .line {
  background-color: #7c6ff5;
}

/* Mobile navigation drawer styling fixes */
@media screen and (max-width: 991px) {
  .w-nav-menu.menu-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 320px !important;
    height: 100vh !important;
    background-color: #ffffff !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08) !important;
    padding: 0 !important;
    z-index: 99999 !important;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    pointer-events: none;
  }
  .w-nav-menu.menu-content.w--open {
    pointer-events: auto !important;
  }
  .menu-content .w-nav-link,
  .menu-content .menu-text {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1a1d2e !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    text-align: left !important;
    margin: 0 !important;
  }
  .menu-content .w-nav-link:hover,
  .menu-content .menu-text:hover {
    color: #7c6ff5 !important;
    background-color: #fafaff !important;
  }
  .menu-content .tablet-menu {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 24px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 10px !important;
  }
}
/* ─── Cyber Beetle Split Preloader Styles ───────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: auto;
  display: flex;
  flex-direction: row !important;
  overflow: hidden;
  background: transparent;
}

.preloader-panel {
  width: 50vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Technical Grid Drafting Paper Backdrop */
  background-color: #06070a;
  background-image: linear-gradient(rgba(68, 213, 204, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(68, 213, 204, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

.preloader-left {
  justify-content: flex-end;
}

.preloader-right {
  justify-content: flex-start;
}

.preloader-beetle-half {
  width: 100px;
  /* Full beetle is 200px wide */
  height: 200px;
  display: flex;
  will-change: transform;
  filter: drop-shadow(0 0 15px rgba(255, 101, 0, 0.2));
}
.preloader-beetle-half svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Beetle glow breathing animation */
@keyframes beetlePulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 101, 0, 0.15)) drop-shadow(0 0 5px rgba(68, 213, 204, 0.1));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 101, 0, 0.5)) drop-shadow(0 0 15px rgba(68, 213, 204, 0.3));
    transform: scale(1.03);
  }
}
.beetle-half-left {
  transform-origin: right center;
  animation: beetlePulse 2s infinite ease-in-out;
}

.beetle-half-right {
  transform-origin: left center;
  animation: beetlePulse 2s infinite ease-in-out;
}

/* Database Sync Chart Icons Sizing */
.chart-icon-top-1,
.chart-icon-top-2,
.chart-icon-top-3,
.chart-icon-bottom-1,
.chart-icon-bottom-2,
.chart-icon-bottom-3,
.chart-icon-middle-top-1,
.chart-icon-middle-top-2,
.chart-icon-middle-top-3,
.chart-icon-middle-bottom-1,
.chart-icon-middle-bottom-2,
.chart-icon-middle-bottom-3 {
  width: 30px !important;
  height: 30px !important;
}

.chart-icon-middle {
  width: 45px !important;
  height: 45px !important;
}

.chart-box {
  position: relative !important;
  width: 330px !important;
  height: 330px !important;
  margin: 24px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transform-origin: center center !important;
}

@media screen and (max-width: 479px) {
  .chart-box {
    transform: scale(0.8) !important;
    margin-top: 0px !important;
    margin-bottom: -45px !important;
  }
}
/* CTA Section Card Image Proportions & Crops */
.cta-right-card img {
  width: 330px !important;
  height: auto !important;
  border-radius: 12px !important;
}

.cta-left-card-1 img {
  width: 280px !important;
  height: auto !important;
  border-radius: 12px !important;
}

.cta-left-card-2 img {
  width: 280px !important;
  height: auto !important;
  border-radius: 12px !important;
}

.project-card-link {
  text-decoration: none !important;
  color: inherit !important;
}

.project-card-link:hover {
  text-decoration: none !important;
}

/* Premium Highlight for Active FAQ items */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.accordion-item.active,
.accordion-item.w--current {
  background-color: #ffffff !important;
  border: 1px solid rgba(255, 101, 0, 0.4) !important;
  box-shadow: 0 8px 24px rgba(255, 101, 0, 0.08) !important;
}

.accordion-item.active .accordion-title,
.accordion-item.w--current .accordion-title {
  color: #ff6500 !important;
  font-weight: 600 !important;
}

.accordion-item.active .accordion-arrow,
.accordion-item.w--current .accordion-arrow {
  background-color: #ff6500 !important;
  color: #ffffff !important;
}

.footer-bottom {
  padding-bottom: 150px !important;
}

/* Portfolio & Project Details Page Responsiveness & Offsets */
.portfolio-hero-section,
.project-header-section {
  padding-top: 150px !important;
  padding-bottom: 50px !important;
  background: radial-gradient(circle at top, rgba(255, 101, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
}

@media screen and (max-width: 991px) {
  .portfolio-hero-section,
  .project-header-section {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .portfolio-hero-section,
  .project-header-section {
    padding-top: 100px !important;
    padding-bottom: 30px !important;
  }
  .portfolio-hero-content .hero-title,
  .project-header-content .hero-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
  .project-details-body {
    margin-top: 24px !important;
  }
  .project-details-body h2 {
    font-size: 24px !important;
  }
  .portfolio-filters-wrap {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 8px 16px 16px !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .portfolio-filters-wrap::-webkit-scrollbar {
    display: none !important;
  }
  .portfolio-filters-wrap .filter-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
  }
}
@media screen and (max-width: 479px) {
  .project-details-image-box {
    aspect-ratio: 1.4/1 !important;
    border-radius: 20px !important;
  }
  .project-info-widget {
    padding: 20px !important;
    border-radius: 24px !important;
  }
}
.portfolio-filters-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.filter-btn {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
  background: #fafafa;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 100px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: #ff6500;
  border-color: rgba(255, 101, 0, 0.3);
  background: rgba(255, 101, 0, 0.02);
}

.filter-btn.active {
  color: #ffffff;
  background: #ff6500;
  border-color: #ff6500;
  box-shadow: 0 10px 20px -6px rgba(255, 101, 0, 0.3);
}

/* Disable selection on controls for native-app experience */
button,
.filter-btn,
.primary-button,
.mobile-nav-item,
.w-nav-link,
.accordion-header,
.accordion-item,
.project-box {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Tap scale feedback animations */
.primary-button:active,
.filter-btn:active,
.accordion-header:active,
.project-box:active {
  transform: scale(0.98) !important;
}

/* Glassmorphic Mobile Bottom Tab Bar */
.mobile-bottom-nav {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 24px !important;
    left: 24px !important;
    right: 24px !important;
    height: 64px;
    background: rgba(15, 17, 21, 0.75) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 28px !important;
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    padding: 0 8px;
    animation: slideUpNav 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    font-family: "Inter Tight", sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    max-width: 68px;
    height: 48px;
    gap: 3px;
    position: relative;
  }
  .mobile-nav-item:active {
    transform: scale(0.92) !important;
  }
  .mobile-nav-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.55) !important;
  }
  .mobile-nav-item.active,
  .mobile-nav-item:hover {
    color: #ff6500 !important;
  }
  .mobile-nav-item.active .mobile-nav-icon {
    transform: translateY(-2px) scale(1.1) !important;
    stroke: #ff6500 !important;
    color: #ff6500 !important;
    filter: drop-shadow(0 2px 4px rgba(255, 101, 0, 0.25));
  }
}
@keyframes pulseDot {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) scale(1.4);
    opacity: 1;
  }
}
@keyframes slideUpNav {
  from {
    transform: translateY(120px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=custom.css.map */
