/* --- About Hero --- */
.about-hero {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 179, 65, 0.13), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(215, 179, 65, 0.06), transparent 30%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
}

.about-hero-text h1 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.about-hero-text h1 span {
  color: var(--gold-light);
}

.about-hero-text .about-desc {
  max-width: 610px;
  color: rgb(200, 200, 200);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-hero-text .about-sub {
  max-width: 610px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 34px;
}

/* Feature pills row — horizontal, small */

.about-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-feature-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  min-width: 90px;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-feature-pill:hover {
  transform: translateY(-3px);
}

.about-feature-pill .pill-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 179, 65, 0.16);
  color: var(--gold-light);
}

.about-feature-pill .pill-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-pill span {
  font-size: 10px;
  color: #b0b0b0;
  line-height: 1.3;
}

/* Hero images collage */

.about-hero-visual {
  position: relative;
  min-height: 440px;
}

.about-hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.collage-img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main left image — tallest */
.collage-img-1 {
  width: 48%;
  height: 92%;
  left: 6%;
  top: 4%;
  z-index: 2;
}

/* Top-right image */
.collage-img-2 {
  width: 44%;
  height: 54%;
  right: 2%;
  top: 0;
  z-index: 3;
}

/* Bottom-right image */
.collage-img-3 {
  width: 44%;
  height: 44%;
  right: 2%;
  bottom: 2%;
  z-index: 4;
}

/* Gold star overlay */
.collage-star {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -4px;
  bottom: 6%;
  z-index: 5;
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(215, 179, 65, 0.55));
  animation: star-pulse 3.5s ease-in-out infinite;
}

@keyframes star-pulse {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* --- Our Story --- */

.about-story {
  padding: 80px 0;
  background: var(--black);
}

.about-story-visual {
  width: 280px;
  height: 280px;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(215, 179, 65, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.story-text h3 span {
  color: var(--gold-light);
}

.story-text p {
  max-width: 480px;
  color: var(--gray);
  margin-bottom: 12px;
}

.story-text p:first-of-type {
  margin-bottom: 0;
}

.story-text .story-highlight {
  color: #ccc;
  font-size: 14px;
}

/* --- Industries --- */

.about-industries {
  padding: 80px 0 90px;
  background: var(--black);
  text-align: center;
}

.about-industries .section-heading {
  margin-bottom: 48px;
}

.industries-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 80px;
  transition: transform 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-5px);
}

.industry-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.industry-item:hover .industry-icon {
  border-color: rgba(215, 179, 65, 0.4);
  background: rgba(215, 179, 65, 0.06);
  box-shadow: 0 6px 24px rgba(215, 179, 65, 0.1);
}

.industry-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
}

.industry-item span {
  font-size: 13px;
  font-weight: 600;
  color: #b0b0b0;
}

/* --- Designed For Everyone --- */

.about-designed {
  padding: 60px 0 80px;
  background: var(--black);
}

.about-designed .section-heading {
  margin-bottom: 40px;
}

.about-designed .section-heading span {
  font-size: 10px;
  letter-spacing: 2.8px;
}

.designed-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(215, 179, 65, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.designed-card:hover {
  border-color: rgba(215, 179, 65, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.designed-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(215, 179, 65, 0.1);
}

.designed-card-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(215, 179, 65, 0.1);
  color: var(--gold-light);
  flex: 0 0 auto;
}

.designed-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.designed-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-light);
}

.designed-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.designed-card li {
  position: relative;
  padding-left: 20px;
  color: #c0c0c0;
  font-size: 13px;
  line-height: 1.55;
}

.designed-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- Stats Section --- */

.about-stats {
  padding: 70px 0 60px;
}

.stat-card {
  padding: 28px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(215, 179, 65, 0.12);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(215, 179, 65, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(215, 179, 65, 0.08);
  color: var(--gold-light);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  font-weight: 900;
}

.stat-card span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.stats-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-style: italic;
}

/* --- Mission --- */

.about-mission {
  padding: 70px 0 80px;
  background: var(--black);
}

.mission-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(215, 179, 65, 0.22);
  background: rgba(255, 255, 255, 0.015);
}

.mission-content {
  padding: 48px 40px;
  background:
    linear-gradient(145deg, rgba(215, 179, 65, 0.06), transparent 55%);
  border-bottom: 1px solid rgba(215, 179, 65, 0.15);
}

@media (min-width: 992px) {
  .mission-content {
    border-bottom: 0;
    border-right: 1px solid rgba(215, 179, 65, 0.15);
  }
}

.mission-content h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.mission-content h3 strong {
  color: var(--gold-light);
}

.mission-content p {
  max-width: 420px;
  color: var(--gray);
}

.mission-visual {
  position: relative;
  min-height: 300px;
  background: #060606;
  overflow: hidden;
}

.mission-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.mission-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 179, 65, 0.1), transparent 55%);
  pointer-events: none;
}

/* --- CTA Section --- */

.about-cta {
  padding: 70px 0 90px;
  background: var(--black);
  text-align: center;
}

.about-cta .eyebrow {
  font-size: 10px;
  letter-spacing: 2.8px;
  justify-content: center;
}

.about-cta h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
  font-weight: 900;
}

.cta-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(215, 179, 65, 0.15);
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-card:hover {
  border-color: rgba(215, 179, 65, 0.38);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.cta-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(215, 179, 65, 0.1);
  color: var(--gold-light);
  margin-bottom: 16px;
}

.cta-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-card p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.cta-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-card-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  transform: translateY(-2px);
}

.cta-card-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card-btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(215, 179, 65, 0.18);
}

.cta-card-btn-primary:hover {
  box-shadow: 0 12px 36px rgba(215, 179, 65, 0.3);
}

.about-us-registration-wrapper {
  justify-content: center;
}

.about-us-registration {
  min-height: 0;
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(215, 179, 65, 0.15);
  text-align: left;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.about-us-registration::before {
  content: none;
  display: none;
}

.about-us-registration .signup-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(215, 179, 65, 0.1);
  margin-bottom: 16px;
}

.about-us-registration .signup-icon img,
.about-us-registration .signup-icon svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.about-us-registration h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.about-us-registration p {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--gray);
  line-height: 1.7;
}

.delivery-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  flex-shrink: 0;
}

.story-rte ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.story-rte ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--gray);
  margin-top: 10px;
}

.story-rte ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url('../../Images/danger-red.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* --- About Page Responsive --- */

@media (max-width: 991px) {
  .mission-visual {
    min-height: 240px;
  }
  .about-industries{
    padding: 40px 0 40px;
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding: 50px 0 60px;
  }

  .about-hero-visual {
    margin-top: 36px;
    min-height: 350px;
  }

  .about-hero-collage {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .about-story-visual {
    width: 240px;
    height: 240px;
  }

  .story-text .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
    padding: 36px 0 0px;
  }

  .about-hero-text h1 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .about-features-row {
    gap: 6px;
  }

  .about-feature-pill {
    min-width: 70px;
    padding: 8px 10px;
  }

  .about-hero-collage {
    min-height: 300px;
  }

  .collage-star {
    width: 80px;
    height: 80px;
  }

  .about-story {
    padding: 40px 0;
  }

  .about-story-visual {
    width: 180px;
    height: 180px;
  }

  .about-industries {
    padding: 40px 0;
  }

  .industries-grid {
    gap: 16px;
  }

  .industry-icon {
    width: 54px;
    height: 54px;
  }

  .about-designed {
    padding: 50px 0;
  }

  .about-stats {
    padding: 50px 0;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-card strong {
    font-size: 24px;
  }

  .about-mission {
    padding: 40px 0;
  }

  .mission-content {
    padding: 30px 20px;
  }

  .about-cta {
    padding: 50px 0 60px;
  }
}

@media (max-width: 420px) {
  .about-hero-text h1 {
    font-size: 28px;
  }

  .about-features-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-feature-pill {
    flex-direction: row;
    width: 100%;
    text-align: left;
  }

  .industries-grid {
    gap: 12px;
  }

  .industry-item {
    min-width: 68px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
  }

  .stat-card strong {
    font-size: 22px;
  }
}

/* Container for the 6-column grid */
.allow-custom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.allow-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  transition: border 0.3s ease;
}

.allow-card:hover {
  border-color: #ff4d4d;
}

.allow-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.allow-text-wrap p {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .allow-custom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .allow-custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .allow-custom-grid {
    grid-template-columns: 1fr;
  }
}