/* =========================================================
   about.css — fully standalone, no style.css needed
   Topbar styles copied exactly from style.css
   ========================================================= */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Page ── */
body, html {
  font-family: system-ui, sans-serif;
  height: 100%;
  overflow: hidden;
}

.about-page {
  background: #1f1f1f;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
}


/* ── Page scroll container — keeps scrollbar below topbar ── */
.page-scroll {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/* =========================================================
   TOPBAR — identical to style.css
   ========================================================= */

#topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #000;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 12px;
}

#specSwitch {
  display: flex;
  gap: 8px;
  flex: 1;
  align-items: center;
}

#pageLabel {
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#rightBlock {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#logoDropdownWrap {
  position: relative;
}


#logoDropdownBtn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease;
  font-family: system-ui, sans-serif;
}

#logoDropdownBtn:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 999;
}

.dropdown-menu.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.1s ease, border-color 0.1s ease;
  font-family: system-ui, sans-serif;
}

.dropdown-item:hover {
  background: #f5f5f5;
  border-left-color: #1677ff;
}

.dropdown-item.active {
  border-left-color: #f10c45;
  color: #f10c45;
}

#socials {
  display: flex;
  gap: 12px;
}

#socials a {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  opacity: 0.85;
  shape-rendering: geometricPrecision;
}

#socials a:hover svg {
  opacity: 0.6;
}

/* =========================================================
   PAGE CONTENT
   ========================================================= */

.about-main {
  padding-top: 48px;
}

.ab-hero,
.ab-section,
.ab-india,
.ab-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
  padding-right: 60px;
}

.ab-section {
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Labels ── */
.ab-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fea700;
  margin-bottom: 24px;
}

.ab-section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

/* ── Headings ── */
.ab-h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #ffffff;
  margin: 0 0 28px;
}

.ab-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 20px;
}

.ab-h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}

/* ── Body text ── */
.ab-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 0 48px;
  font-weight: 500;
}

.ab-p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

.ab-p--lead {
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 36px;
}

/* ── Hero color bar ── */
.ab-colorbar {
  display: flex;
  gap: 6px;
  width: 120px;
}

.ab-colorbar div {
  height: 4px;
  flex: 1;
  border-radius: 2px;
}

/* ── Feature grid ── */
.ab-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.ab-feature-card {
  background: #2a2a2a;
  padding: 40px 36px;
  transition: background 0.2s ease;
}

.ab-feature-card:hover {
  background: #303030;
}

.ab-num {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f10c45;
  margin-bottom: 18px;
}

/* ── India section ── */
.ab-india {
  background: #252525;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ab-india-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
}

.ab-india-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 4.5rem;
  line-height: 1;
}

.ab-india-flag-bar {
  width: 100%;
  height: 4px;
  background: #fea700;
  border-radius: 2px;
}

/* ── Compatibility grid ── */
.ab-compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ab-compat-item {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 18px;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.ab-compat-item:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.ab-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Contact footer ── */
.ab-contact {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ab-contact-inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.ab-contact-brand {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 20px;
}

.ab-address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin: 0 0 16px;
}

.ab-phone {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #fea700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.15s ease;
}

.ab-phone:hover {
  opacity: 0.7;
}

.ab-color-blocks {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ab-color-blocks div {
  width: 44px;
  height: 110px;
  border-radius: 8px;
}

/* ── Mobile ── */
@media (max-width: 700px) {
  #topbar {
    padding: 0 12px;
    gap: 8px;
  }

  #socials a {
    width: 20px;
    height: 20px;
  }

  .ab-hero,
  .ab-section,
  .ab-india,
  .ab-contact {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ab-feature-grid {
    grid-template-columns: 1fr;
  }

  .ab-india-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ab-compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ab-color-blocks {
    display: none;
  }
}

@media (orientation: portrait) {
  #topbar {
    padding: 0 12px;
    gap: 8px;
  }

  #specSwitch {
    flex: 1;
  }
}