/* ================================================
   about.css — KartGrowth About Page
   Standalone — matches services & contact style
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== VARIABLES ===== */
:root {
  --ap:  #f5a623;
  --ad:  #2c3e7a;
  --aw:  #ffffff;
  --ag:  #f7f8fc;
  --aml: #888888;
  --abr: 12px;
  --atr: 0.3s ease;
}

/* ================================================
   SHARED UTILITIES
================================================ */
.abt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.abt-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--ap);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
  border: 1px solid rgba(245,166,35,0.3);
}

.abt-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.abt-section-head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ad);
  margin: 0 0 12px;
  line-height: 1.2;
}
.abt-section-head h2 span { color: var(--ap); }
.abt-section-head > p {
  color: var(--aml);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* Buttons */
.abt-btn-primary {
  background: var(--ap);
  color: var(--aw);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--abr);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--atr), transform var(--atr), box-shadow var(--atr);
}
.abt-btn-primary:hover {
  background: #e09515;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.4);
}

.abt-btn-outline {
  background: transparent;
  color: var(--aw);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--abr);
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--atr), background var(--atr);
}
.abt-btn-outline:hover {
  border-color: var(--ap);
  background: rgba(245,166,35,0.08);
}

/* ================================================
   HERO
================================================ */
.abt-hero {
  padding-top: 70px;
  background: linear-gradient(135deg, #0f1c4d 0%, #1e3a8a 50%, #2c3e7a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.abt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,166,35,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(245,166,35,0.07) 0%, transparent 40%);
}

.abt-hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.abt-hero-inner .abt-badge { margin: 0 auto 18px; }

.abt-hero-inner h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--aw);
  line-height: 1.12;
  margin-bottom: 20px;
}
.abt-hero-inner h1 span { color: var(--ap); }

.abt-hero-inner > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.abt-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   OUR STORY
================================================ */
.abt-story {
  padding: 100px 0;
  background: var(--aw);
}

.abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image side */
.abt-img-wrap {
  position: relative;
}
.abt-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  background: rgba(245,166,35,0.1);
  border-radius: 20px;
  z-index: 0;
}
.abt-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 55%; height: 55%;
  background: rgba(44,62,122,0.07);
  border-radius: 20px;
  z-index: 0;
}
.abt-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.13);
}

.abt-img-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--ad);
  color: var(--aw);
  border-radius: 14px;
  padding: 16px 22px;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(44,62,122,0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.abt-badge-icon { font-size: 1.8rem; line-height: 1; }
.abt-badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
}

.abt-img-tag {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--ap);
  color: var(--aw);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Content side */
.abt-story-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ad);
  line-height: 1.15;
  margin-bottom: 20px;
}
.abt-story-content h2 span { color: var(--ap); }

.abt-story-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Expandable */
.abt-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.abt-extra.open { max-height: 600px; opacity: 1; }

.abt-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--ad);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  position: relative;
  transition: gap var(--atr);
}
.abt-toggle-btn::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 2px;
  background: var(--ap);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--atr);
}
.abt-toggle-btn:hover            { gap: 16px; }
.abt-toggle-btn:hover::after     { transform: scaleX(1); }
.abt-toggle-btn svg              { width: 18px; height: 18px; stroke: var(--ap); transition: transform var(--atr); }
.abt-toggle-btn:hover svg        { transform: translateX(4px); }

/* ================================================
   MARQUEE
================================================ */
.abt-marquee {
  background: var(--ap);
  padding: 26px 0;
  overflow: hidden;
}
.abt-marquee-track {
  display: flex;
  animation: abtMarquee 20s linear infinite;
  width: max-content;
}
.abt-marquee:hover .abt-marquee-track { animation-play-state: paused; }

.abt-marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 48px;
  white-space: nowrap;
}
.abt-marquee-item span {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--aw);
  letter-spacing: 1px;
}
.abt-marquee-item i {
  display: inline-block;
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  font-style: normal;
}

@keyframes abtMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   VALUES
================================================ */
.abt-values {
  padding: 90px 0;
  background: var(--ag);
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.abt-value-card {
  background: var(--aw);
  border-radius: 18px;
  padding: 32px 24px;
  border: 1.5px solid #eee;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--atr), box-shadow var(--atr), transform var(--atr);
}
.abt-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ap);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--atr);
}
.abt-value-card:hover {
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 12px 40px rgba(245,166,35,0.1);
  transform: translateY(-6px);
}
.abt-value-card:hover::before { transform: scaleX(1); }

.abt-value-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: background var(--atr);
}
.abt-value-card:hover .abt-value-icon { background: var(--ap); }

.abt-value-card h4 { font-size: 1rem; font-weight: 800; color: var(--ad); margin-bottom: 10px; }
.abt-value-card p  { font-size: 0.85rem; color: var(--aml); line-height: 1.7; margin: 0; }

/* ================================================
   WHAT WE OFFER
================================================ */
.abt-offer {
  padding: 90px 0;
  background: var(--aw);
}

.abt-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
}
.abt-offer-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ap) 0, var(--ap) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.abt-offer-card {
  background: var(--ag);
  border-radius: 20px;
  padding: 32px 22px 28px;
  border: 1.5px solid #eee;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--atr), transform var(--atr), border-color var(--atr);
}
.abt-offer-card:hover {
  box-shadow: 0 16px 48px rgba(245,166,35,0.12);
  transform: translateY(-6px);
  border-color: var(--ap);
}

.abt-offer-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ap);
  color: var(--aw);
  font-size: 0.75rem;
  font-weight: 900;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}
.abt-offer-icon { font-size: 2.2rem; margin: 10px 0 14px; }
.abt-offer-card h4 { font-size: 0.97rem; font-weight: 800; color: var(--ad); margin-bottom: 10px; }
.abt-offer-card p  { font-size: 0.82rem; color: var(--aml); line-height: 1.65; margin: 0; }

.abt-offer-cta { text-align: center; }

/* ================================================
   WHY CHOOSE US
================================================ */
.abt-why {
  padding: 90px 0;
  background: var(--ag);
}

.abt-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-why-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ad);
  line-height: 1.2;
  margin-bottom: 16px;
}
.abt-why-content h2 span { color: var(--ap); }
.abt-why-content > p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.abt-why-list { display: flex; flex-direction: column; gap: 20px; }
.abt-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.abt-why-check {
  width: 32px; height: 32px;
  background: var(--ap);
  color: var(--aw);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.abt-why-item strong { display: block; font-size: 0.97rem; font-weight: 800; color: var(--ad); margin-bottom: 4px; }
.abt-why-item p      { font-size: 0.85rem; color: var(--aml); line-height: 1.65; margin: 0; }

/* Why image */
.abt-why-image { position: relative; }
.abt-why-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.abt-why-badge {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--ad);
  color: var(--aw);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(44,62,122,0.28);
  z-index: 2;
}
.abt-why-badge span  { font-size: 1.8rem; }
.abt-why-badge strong { display: block; font-size: 0.88rem; font-weight: 800; }
.abt-why-badge p      { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin: 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--atr), box-shadow var(--atr);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg   { width: 30px; height: 30px; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .abt-values-grid  { grid-template-columns: repeat(2, 1fr); }
  .abt-offer-grid   { grid-template-columns: repeat(2, 1fr); }
  .abt-offer-grid::before { display: none; }
}

@media (max-width: 900px) {
  .abt-story-grid { grid-template-columns: 1fr; gap: 60px; }
  .abt-img-wrap   { order: -1; }
  .abt-img-badge  { left: 12px; }

  .abt-why-grid   { grid-template-columns: 1fr; gap: 50px; }
  .abt-why-image  { order: -1; }
  .abt-why-badge  { right: 12px; }
}

@media (max-width: 600px) {
  .abt-story    { padding: 70px 0; }
  .abt-values   { padding: 60px 0; }
  .abt-offer    { padding: 60px 0; }
  .abt-why      { padding: 60px 0; }

  .abt-values-grid { grid-template-columns: 1fr; }
  .abt-offer-grid  { grid-template-columns: 1fr; }

  .abt-img-wrap img  { height: 300px; }
  .abt-why-image img { height: 280px; }

  .abt-img-badge  { left: 8px; bottom: -10px; padding: 12px 16px; min-width: 160px; }
  .abt-badge-icon { font-size: 1.4rem; }

  .abt-why-badge  { right: 8px; bottom: -10px; padding: 12px 16px; }
  .abt-why-badge span { font-size: 1.4rem; }

  .abt-container  { padding: 0 16px; }
  .abt-hero-inner { padding: 40px 20px 40px; }
}
/* Small phones */
@media (max-width: 480px) {
.abt-hero-inner h1{
    font-size: 28px;
    margin-top: 15px;
 }
 .abt-hero-inner .abt-badge{
    margin: 0 auto;
 }
}