/* ===== HERO ===== */
body {
  margin:0;
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111;
}
.about-hero-new {
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  background: linear-gradient(120deg, #f5f7ff, #eef1ff);
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
}

.hero-text span {
  background: linear-gradient(90deg, #6c63ff, #4facfe);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text p {
  margin-top: 20px;
  color: #555;
}


/* ===== SPLIT STORY ===== */
.story-split {
  display: flex;
  align-items: center;
  padding: 80px 10%;
  gap: 50px;
}

.story-left {
  flex: 1;
}

.story-right img {
  width: 100%;
  border-radius: 20px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}


/* ===== ZIGZAG TIMELINE ===== */
.timeline-zigzag {
  padding: 80px 10%;
  background: #fafbff;
}

.timeline {
  position: relative;
  margin-top: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.t-item {
  width: 45%;
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.left {
  margin-right: auto;
}

.right {
  margin-left: auto;
}


/* ===== STATS (GLASS STYLE) ===== */
.stats-glass {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(90deg, #6c63ff, #4facfe);
}

.stat {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.highlight {
  transform: scale(1.1);
  background: white;
  color: #6c63ff;
}


/* ===== CULTURE ===== */
.culture-modern {
  position: relative;
  padding: 100px 10%;
}

.culture-content {
  max-width: 500px;
}

.culture-img {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


/* ===== CTA ===== */
.about-cta {
  text-align: center;
  padding: 100px 10%;
  background: linear-gradient(120deg, #6c63ff, #4facfe);
  color: white;
}

.about-cta button {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  background: white;
  color: #6c63ff;
  font-weight: bold;
  cursor: pointer;
}


.header {
  display:flex;
  justify-content:space-between;
  padding:20px 60px;
  align-items:center;
}

.header img {
  width:140px;
}

nav a {
  margin-left:25px;
  text-decoration:none;
  color:#444;
}
/* ===== STORY MODERN ===== */
.story-modern {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* background image */
.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* floating glass card */
.story-card {
  position: absolute;
  left: 10%;
  max-width: 400px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* heading */
.story-card h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

/* highlight line */
.story-card .highlight {
  font-weight: 600;
  background: linear-gradient(90deg, #6c63ff, #4facfe);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

/* text */
.story-card p {
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== TIMELINE MODERN ===== */
.timeline-modern {
  padding: 80px 5%;
  background: linear-gradient(120deg, #f8f9ff, #eef1ff);
  overflow: hidden;
}

.timeline-modern h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* scroll container */
.timeline-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 20px;
}

/* hide scrollbar (clean look) */
.timeline-track::-webkit-scrollbar {
  display: none;
}

/* cards */
.timeline-card {
  min-width: 260px;
  background: white;
  padding: 25px;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* year */
.timeline-card span {
  font-size: 14px;
  color: #6c63ff;
  font-weight: bold;
}

/* title */
.timeline-card h3 {
  margin: 10px 0;
}

/* hover effect */
.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* highlight card */
.timeline-card.highlight {
  background: linear-gradient(120deg, #6c63ff, #4facfe);
  color: white;
}

/* ===== CREATIVE STATS FIXED ===== */
.stats-creative {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 80px 10%;
  background: linear-gradient(120deg, #6c63ff, #4facfe);
}

/* each stat */
.stat-circle {
  text-align: center;
  color: white;
}

/* clean gradient circles */
.circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: bold;
  color: white;

  /* gradient look */
  background: linear-gradient(135deg, #7b6cff, #4facfe);

  /* glow effect */
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.2),
    inset 0 0 20px rgba(255,255,255,0.2);

  transition: 0.3s;
}

/* hover lift */
.circle:hover {
  transform: translateY(-8px) scale(1.05);
}

/* text under */
.stat-circle p {
  margin-top: 12px;
  font-size: 16px;
  opacity: 0.9;
}
/* ===== INFOGRAPHIC STYLE ===== */
.stats-infographic {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 100px 10%;
  background: #f8f9ff;
}

/* container */
.info-card {
  position: relative;
  width: 180px;
  height: 180px;
}

/* outer arc */
.info-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 15px solid;
  border-color: transparent;
}

/* arc colors */
.info-card.red::before {
  border-top-color: #ff2e63;
  border-left-color: #ff2e63;
  transform: rotate(-45deg);
}

.info-card.blue::before {
  border-top-color: #2196f3;
  border-left-color: #2196f3;
  transform: rotate(-45deg);
}

.info-card.yellow::before {
  border-top-color: #fbbc05;
  border-left-color: #fbbc05;
  transform: rotate(-45deg);
}

/* inner white circle */
.circle {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* text */
.circle h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.circle p {
  font-size: 14px;
  color: #555;
}

/* hover effect */
.info-card:hover .circle {
  transform: translate(-50%, -55%) scale(1.05);
  transition: 0.3s;
}