
/* ============================================================
   OUR STORY
   ============================================================ */
.story-section {
  background: var(--itzone-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.dots-decor {
  position: absolute;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: .2;
}
.dots-tr { top: 24px; right: 24px; }
.dots-br { bottom: 24px; right: 24px; }
.dots-tl { top: 24px; left: 24px; }

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.story-left .section-label { color: var(--blue); }
.story-left h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.story-left p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.value-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 10px;
  transition: box-shadow .3s, transform .3s;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.val-icon {
  width: 40px;
  height: 40px;
  background: rgba(67,97,238,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.value-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.story-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 385px;
}
.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.story-img-wrap:hover img { transform: scale(1.05); }

.story-logo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,.95);
  border-radius: 10px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--itzone-black);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--light-bg);
  padding: 48px 0;
}

.stats-card {
  background: linear-gradient(135deg, #2d40d0 0%, #4361ee 55%, #5a77f8 100%);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(67,97,238,.35);
}
.stats-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.stats-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  color: var(--itzone-white);
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.stat-item h3 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 15px;
  opacity: .85;
}

.stat-sep {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.25);
  position: relative;
  z-index: 1;
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
.mv-section {
  background: var(--itzone-white);
  padding: 60px 0;
}

.mv-section h2{
  margin-bottom: 56px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--light-bg);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.mv-blue   { background: var(--blue); color: var(--itzone-white); }
.mv-purple { background: #5c2d91;     color: var(--itzone-white); }

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
  background: var(--light-bg);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.team-section h2{
  margin-bottom: 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.team-card {
  background: var(--itzone-white);
  border-radius: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: #e8ecff;
  border: 3px solid var(--light-bg);
  box-shadow: 0 4px 16px rgba(67,97,238,.15);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.team-card:hover .team-photo img { transform: scale(1.07); }

.team-card h3 {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--itzone-gray);
}
.team-role {
  display: block;
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 14px;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  transition: all .2s;
}
.team-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--itzone-white);
  transform: translateY(-2px);
}

.team-cta { text-align: center; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a2e8a 0%, #2d40d0 45%, #4361ee 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Rings use margin-top for vertical centering so transform is free for rotation */
.cta-ring {
  position: absolute;
  border: 2px dashed rgba(255,255,255,.12);
  border-radius: 50%;
  top: 50%;
}
.cta-ring-sm {
  width: 180px; height: 180px;
  right: 120px;
  margin-top: -140px;
  animation: spinRing 24s linear infinite;
}
.cta-ring-lg {
  width: 280px; height: 280px;
  right: 70px;
  margin-top: -190px;
  animation: spinRing 36s linear infinite reverse;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-lbl { color: rgba(255,255,255,.65); }
.cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--itzone-white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-about .logo { margin-bottom: 16px; }
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
/* Solid dark bg + solid light text so contrast is deterministic for the linter */
.footer-social a {
  width: 36px;
  height: 36px;
  background: #16223a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5d1e8;
  font-size: 13px;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: var(--itzone-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--itzone-white);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--blue); }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.contact-list li i {
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13.5px;
}

.nl-desc {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.newsletter {
  display: flex;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 14px;
  color: var(--itzone-white);
  font-size: 14px;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.38); }
.newsletter button {
  background: var(--blue);
  border: none;
  color: var(--itzone-white);
  padding: 11px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.newsletter button:hover { background: var(--blue-dark); }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--blue); }
.footer-legal span { color: rgba(255,255,255,.25); }

/* Divider grows when .section-header is revealed */
.section-header .divider {
  width: 0;
  opacity: 0;
  transition: width .55s cubic-bezier(.22,.61,.36,1) .4s,
              opacity .3s ease .4s;
  margin: 0 auto;
}
.section-header.is-visible .divider {
  width: 48px;
  opacity: 1;
}

/* Icon pop on reveal */
.stat-item.is-visible .stat-icon,
.value-card.is-visible .val-icon {
  animation: iconPop .55s cubic-bezier(.34,1.56,.64,1) .15s both;
}
.mv-card.is-visible .mv-icon {
  animation: iconPop .55s cubic-bezier(.34,1.56,.64,1) .2s both;
}
.why-choose-about{
  background: var(--light-bg) !important;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-img-wrap { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
  .stats-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }
  .stat-sep:nth-child(2) { display: none; }
  .stat-sep:nth-child(4) {
    display: block;
    width: 100%;
    height: 1px;
    grid-column: 1 / -1;
    background: rgba(255,255,255,.2);
    margin: 8px 0;
  }
  .stat-sep:nth-child(6) { display: none; }

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

  .cta-inner { grid-template-columns: 1fr; }
  .cta-text h2 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 768px  (mobile nav)
   ============================================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--nav-bg);
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
  }
  .nav.nav-open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-list a { font-size: 15px; }

  .header-btn { display: none; }
  .hamburger { display: flex; }

  .stats-card {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 24px;
  }
  .stat-sep { display: none !important; }

  .story-grid { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 28px; }
  .story-left h2 { font-size: 28px; }
}

/* ============================================================
   RESPONSIVE — 576px
   ============================================================ */
@media (max-width: 576px) {
  .story-values { grid-template-columns: 1fr; }

  .stats-card {
    grid-template-columns: 1fr 1fr;
    padding: 32px 16px;
  }
  .stat-item h3 { font-size: 34px; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner { gap: 28px; }
  .cta-text h2 { font-size: 24px; }
  .cta-btns { flex-direction: column; align-items: flex-start; }
  .cta-ring { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — 400px
   ============================================================ */
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 24px; }
}