:root {
    --clr-orange: #f27533;
    --clr-orange-dark: #f0442e;
    --clr-navy-dark: #080d12;
    --clr-navy-mid: #121a26;
    --clr-white: #ffffff;
    --clr-gray-light: #cfd3d8;
    --clr-gray-mid: #9aa1ab;

    --font-display: "Space Grotesk", sans-serif;
    --font-accent: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", sans-serif;

    --header-height: 74px;

    --site-content-width: 84%;
    --site-content-max-width: 1600px;
    --site-content-edge: max(calc((100vw - var(--site-content-max-width)) / 2),
            8vw);
}




/* Section Base Styling */
.about-section {
  background-color: #020212;
  color: #f1f5f9;
  position: relative;
  overflow: hidden;
  /* Vertically center section content if given min-height */
  display: flex;
  align-items: center;
}

.container-one {
  max-width: 84%;
  margin-left: auto;
  margin-right: auto;
}

/* Align Bootstrap Row Vertically Centered */
.about-section .row {
  align-items: center;
  justify-content: center;
}

/* Text Gradient Effect */
.about-section .text-gradient {
  background: linear-gradient(135deg, #f0442e 0%, #ff7b54 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Left Side: No-Box PNG Bike Style */
.about-section .bike-png-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.about-section .ambient-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(240, 68, 46, 0.2) 0%, rgba(6, 9, 19, 0) 70%);
  z-index: 1;
  filter: blur(50px);
}

.about-section .hud-scanner-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 68, 46, 0.7), transparent);
  z-index: 2;
  top: 50%;
  animation: scanAnimation 4s ease-in-out infinite alternate;
}

@keyframes scanAnimation {
  0% { transform: translateY(-100px); opacity: 0.3; }
  100% { transform: translateY(100px); opacity: 0.8; }
}

.about-section .bike-png-img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  /* PNG Style Cutout Look with Red Drop Shadow */
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(240, 68, 46, 0.3));
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
}

.about-section .bike-png-wrapper:hover .bike-png-img {
  transform: scale(1.05) translateY(-8px);
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(240, 68, 46, 0.55));
}

/* Floating Cyber Badge */
.about-section .floating-stat-badge {
  position: absolute;
  bottom: 0px;
  left: 20px;
  z-index: 4;
  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(240, 68, 46, 0.4);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.9rem);
}

.about-section .badge-icon-box {
  background: rgba(240, 68, 46, 0.12);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(240, 68, 46, 0.3);
}

/* Right Side Content & Cards */
.about-section .cyber-badge-tag {
  background: rgba(240, 68, 46, 0.1);
  border: 1px solid rgba(240, 68, 46, 0.35);
  color: #f0442e;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: clamp(0.65rem, 0.6rem + 0.25vw, 0.85rem);
  letter-spacing: 2px;
  font-weight: 700;
}

.about-section .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #f0442e;
  border-radius: 50%;
  box-shadow: 0 0 8px #f0442e;
}

/* FLUID TYPOGRAPHY: Title dynamic scaling */
.about-section .about-title-alt {
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.75rem);
}

/* FLUID TYPOGRAPHY: Description dynamic scaling */
.about-section .about-desc-alt {
  color: #94a3b8;
  font-size: clamp(0.875rem, 0.8rem + 0.4vw, 1.05rem);
  line-height: 1.7;
}

/* Feature Cards */
.about-section .cyber-feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #f0442e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
}

.about-section .cyber-feature-card:hover {
  background: rgba(240, 68, 46, 0.08);
  transform: translateX(5px);
}

.about-section .card-icon {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.6rem);
  color: #f0442e;
}

/* CTA Cyber Button */
.about-section .cyber-btn {
  background: linear-gradient(135deg, #f0442e 0%, #ff7b54 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 0 20px rgba(240, 68, 46, 0.4);
  transition: all 0.3s ease;
  font-size: clamp(0.85rem, 0.8rem + 0.25vw, 1rem);
}

.about-section .cyber-btn:hover {
  color: #ffffff;
  box-shadow: 0 0 30px rgba(240, 68, 46, 0.7);
  transform: translateY(-2px);
}


/* ==========================================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ========================================== */

@media (max-width: 1200px) {
  .container-one {
    max-width: 92%;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .container-one {
    max-width: 95%;
  }

  .about-section .col-lg-4 {
    text-align: center;
    padding-left: 0.75rem !important;
  }

  .about-section .cyber-badge-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .about-section .bike-png-img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  .about-section .ambient-glow {
    width: 90%;
    height: 90%;
  }
}

@media (max-width: 767px) {
  .about-section .cyber-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .about-section .floating-stat-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-section .bike-png-wrapper {
    padding: 10px 0;
  }

  .about-section .bike-png-img {
    max-width: 100%;
  }
}















