/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE - UNIQUE PURPLE-PINK GRADIENT THEME
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary-blue: #2a7df1;
  --primary-accent: #16a8ff;
  --success-green: #22c55e;
  --dark-bg: #02060d;
  --dark-bg-soft: #081225;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --card-bg: rgba(4, 11, 24, 0.75);
  --line-color: rgba(113, 144, 186, 0.2);
}

/* ══════════════════════ HERO SECTION ══════════════════════ */
.about-hero {
  position: relative;
  background-color: var(--dark-bg);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(42, 125, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.12) 0%, transparent 50%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 8% 100px;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.25) 0%, rgba(147, 51, 234, 0.2) 100%);
  animation: gradientShift 15s ease infinite;
  pointer-events: none;
}

@keyframes gradientShift {
  0%, 100% { 
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.25) 0%, rgba(147, 51, 234, 0.2) 100%);
  }
  50% { 
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(190, 24, 93, 0.25) 100%);
  }
}

/* Hero Background Pattern */
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: 
    linear-gradient(30deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
    linear-gradient(30deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  pointer-events: none;
  z-index: 3;
}

/* Floating Organic Shapes */
.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: shapeFloat 20s ease-in-out infinite;
  z-index: 2;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 15%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent);
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 20%;
  right: 10%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.18), transparent);
}

.shape-4 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 20%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.15), transparent);
}

.shape-5 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 8s;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.1), transparent);
}

.shape-6 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.12), transparent);
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  50% {
    transform: translate(-15px, 15px) rotate(180deg);
    border-radius: 50% 50% 50% 50% / 30% 70% 30% 70%;
  }
  75% {
    transform: translate(15px, 20px) rotate(270deg);
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  }
}

/* Hero Content */
.about-hero .container {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: badgePulse 3s ease infinite;
}

.hero-badge i {
  color: #FBBF24;
  font-size: 18px;
  animation: badgeIconSpin 4s linear infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badgeIconSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 62px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #FBBF24, #F59E0B, #F472B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px 20px;
  transition: all 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #FBBF24;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Hero Highlights */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 900px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.highlight-item i {
  font-size: 20px;
  color: #FBBF24;
}

.highlight-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 35px 0 50px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-cta-btn:hover::before {
  left: 100%;
}

.hero-cta-btn.primary {
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: white;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.hero-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.hero-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FBBF24;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.hero-cta-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.hero-cta-btn.primary:hover i {
  transform: translateX(5px);
}

.hero-cta-btn.secondary i {
  font-size: 24px;
}

/* ══════════════════════ ABOUT INTRO SECTION ══════════════════════ */
.about-intro-section {
  padding: 100px 8%;
  background: var(--dark-bg-soft);
  position: relative;
  z-index: 5;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.label-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  color: #8B5CF6;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 28px;
}

.intro-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.intro-features {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.feature-item i {
  color: #10B981;
  font-size: 20px;
}

.intro-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: imageGlow 3s ease infinite;
}

@keyframes imageGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* ══════════════════════ WHAT WE DO SECTION ══════════════════════ */
.what-we-do-section {
  padding: 100px 8%;
  background: var(--dark-bg);
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
}

.service-item {
  background: rgba(30, 40, 60, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 2px solid rgba(42, 125, 241, 0.6);
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(42, 125, 241, 0.25);
  border-color: var(--primary-blue);
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(42, 125, 241, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(42, 125, 241, 0.2);
}

.service-item:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  transform: rotate(-5deg) scale(1.1);
}

.service-icon-box i {
  font-size: 36px;
  color: var(--primary-blue);
  transition: color 0.4s ease;
}

.service-item:hover .service-icon-box i {
  color: #fff;
}

.service-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-features i {
  color: #10B981;
  font-size: 16px;
}

/* ══════════════════════ MISSION & VISION SECTION ══════════════════════ */
.mission-vision-section {
  padding: 100px 8%;
  background: var(--dark-bg-soft);
}

.mv-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.mv-box {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--line-color);
}

.mv-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mv-box:hover::before {
  transform: scaleX(1);
}

.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(42, 125, 241, 0.2);
  border-color: var(--primary-blue);
}

.mv-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.mv-icon-wrapper i {
  font-size: 40px;
  color: #fff;
}

.mv-box h2 {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.mv-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.mission-points,
.vision-points {
  display: grid;
  gap: 14px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.point-item i {
  color: #8B5CF6;
  font-size: 20px;
  flex-shrink: 0;
}

/* ══════════════════════ APPROACH SECTION ══════════════════════ */
.approach-section {
  padding: 100px 8%;
  background: var(--dark-bg);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.approach-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid var(--line-color);
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.approach-card:hover::before {
  transform: scaleY(1);
}

.approach-card:hover {
  transform: translateX(12px);
  box-shadow: 0 20px 50px rgba(42, 125, 241, 0.2);
  border-color: var(--primary-blue);
}

.approach-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: 'Sora', sans-serif;
  font-size: 80px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  line-height: 1;
}

.approach-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.approach-card:hover .approach-icon {
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  transform: scale(1.1) rotate(10deg);
}

.approach-icon i {
  font-size: 36px;
  color: #8B5CF6;
  transition: color 0.4s ease;
}

.approach-card:hover .approach-icon i {
  color: #fff;
}

.approach-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e2e5ed;
  margin-bottom: 14px;
}

.approach-card p {
  font-size: 15px;
  line-height: 1.8;
  color: white;
  margin: 0;
}

/* ══════════════════════ TIMELINE SECTION ══════════════════════ */
.timeline-section {
  padding: 100px 8%;
  background: var(--dark-bg-soft);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 70px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-accent));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 50px;
  margin-bottom: 60px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--line-color);
}

.timeline-content:hover {
  transform: scale(1.05);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 50px rgba(42, 125, 241, 0.2);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  position: absolute;
  top: 50%;
  box-shadow: 0 8px 25px rgba(42, 125, 241, 0.5);
  animation: iconPulse 2s ease infinite;
}

.timeline-item.left .timeline-icon {
  right: -85px;
}

.timeline-item.right .timeline-icon {
  left: -85px;
}

@keyframes iconPulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
  }
}

.timeline-year {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════ VALUES SECTION ══════════════════════ */
.values-section {
  padding: 100px 8%;
  background: var(--dark-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--line-color);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 50px rgba(42, 125, 241, 0.2);
}

.value-card:hover::before {
  opacity: 1;
}

.value-visual {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.value-visual i {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Innovation bulb with glow */
.bulb-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #FBBF24, transparent);
  border-radius: 50%;
  animation: bulbGlow 2s ease infinite;
}

@keyframes bulbGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

/* Quality check with pop */
.value-card:nth-child(2) .value-visual i {
  animation: checkPop 1.5s ease infinite;
}

@keyframes checkPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Collaboration network nodes */
.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  border-radius: 50%;
  animation: nodeFloat 3s ease infinite;
}

.network-node:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.network-node:nth-child(2) { top: 50%; right: 25%; animation-delay: 1s; }
.network-node:nth-child(3) { bottom: 25%; left: 40%; animation-delay: 2s; }

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-10px); opacity: 0.6; }
}

/* Passion heartbeat */
.value-card:nth-child(4) .value-visual i {
  animation: heartBeat 1.2s ease infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
}

/* Growth progress bar */
.progress-bar {
  width: 50px;
  height: 6px;
  background: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-accent));
  animation: barGrowth 2s ease infinite;
}

@keyframes barGrowth {
  0% { width: 0%; }
  100% { width: 70%; }
}

/* Excellence star */
.value-card:nth-child(6) .value-visual i {
  animation: starShine 2s ease infinite;
}

@keyframes starShine {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0px #FBBF24); }
  50% { opacity: 1; filter: drop-shadow(0 0 15px #FBBF24); }
}

.value-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════ GLOBAL SECTION ══════════════════════ */
.global-section {
  padding: 100px 8%;
  background: var(--dark-bg-soft);
}

.map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  background: var(--card-bg);
  border-radius: 30px;
  border: 1px solid var(--line-color);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.world-map {
  width: 100%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.map-pin {
  cursor: pointer;
  animation: ripple 2s ease infinite;
}

@keyframes ripple {
  0% {
    r: 4;
    opacity: 1;
  }
  50% {
    r: 12;
    opacity: 0.3;
  }
  100% {
    r: 4;
    opacity: 1;
  }
}

.location-tags {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.location-tag {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(42, 125, 241, 0.4);
  animation: tagFloat 3s ease infinite;
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════ AWARDS SECTION ══════════════════════ */
.awards-section {
  padding: 100px 8%;
  background: var(--dark-bg);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
}

.award-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-color);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.award-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 45px rgba(251, 191, 36, 0.25);
}

.award-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  animation: badgeFloat 3s ease infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.award-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.award-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ══════════════════════ WHY CHOOSE SECTION ══════════════════════ */
.why-choose-section {
  padding: 100px 8%;
  background: var(--dark-bg-soft);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(42, 125, 241, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.why-item {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 125, 241, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item:hover::after {
  transform: scaleX(1);
}

.why-item:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 24px 60px rgba(42, 125, 241, 0.25),
              0 0 0 1px rgba(42, 125, 241, 0.3);
  border-color: rgba(42, 125, 241, 0.4);
}

.why-number {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  padding-left: 8px;
  flex-shrink: 0;
}

.why-number::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-accent));
  border-radius: 2px;
}

.why-visual {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 2px solid rgba(42, 125, 241, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.why-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(42, 125, 241, 0.2), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.why-item:hover .why-visual {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(42, 125, 241, 0.6);
  box-shadow: 0 0 30px rgba(42, 125, 241, 0.3);
}

.why-visual i {
  font-size: 36px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Arrow icon animation */
.arrow-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
  animation: arrowPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0) scale(1); opacity: 1; }
  50% { transform: translateX(5px) scale(1.1); opacity: 0.8; }
}

/* Code symbol */
.code-symbol {
  font-family: 'Courier New', monospace;
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: codeGlow 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes codeGlow {
  0%, 100% { 
    opacity: 1; 
    filter: drop-shadow(0 0 8px rgba(42, 125, 241, 0.5));
  }
  50% { 
    opacity: 0.8; 
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.6));
  }
}

/* Arrow right circle bounce */
.why-item:nth-child(3) .why-visual i {
  animation: arrowBounceRight 1.5s ease-in-out infinite;
}

@keyframes arrowBounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* Clock icon */
.clock-icon {
  width: 45px;
  height: 45px;
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  position: relative;
}

.clock-icon::before,
.clock-icon::after {
  content: '';
  position: absolute;
  background: var(--primary-blue);
  transform-origin: bottom center;
}

.clock-icon::before {
  width: 2px;
  height: 15px;
  top: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  animation: clockTick 4s steps(12) infinite;
}

.clock-icon::after {
  width: 2px;
  height: 10px;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

@keyframes clockTick {
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Lock shake */
.why-item:nth-child(5) .why-visual i {
  animation: lockShake 2s ease infinite;
}

@keyframes lockShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* Support line */
.support-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-accent));
  position: relative;
  animation: lineGrow 2s ease infinite;
}

@keyframes lineGrow {
  0% { width: 20px; }
  50% { width: 50px; }
  100% { width: 20px; }
}

.why-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.why-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════ TEAM SECTION ══════════════════════ */
.team-section {
  padding: 100px 8%;
  background: var(--dark-bg);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 60px rgba(42, 125, 241, 0.3);
}

.team-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.9), rgba(22, 168, 255, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-social a:hover {
  background: white;
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.team-role {
  color: #FBBF24;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ══════════════════════ TESTIMONIALS SECTION ══════════════════════ */
.testimonials-section {
  padding: 100px 8%;
  background: var(--dark-bg-soft);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 60px rgba(42, 125, 241, 0.2);
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: #FBBF24;
  font-size: 18px;
}

.testimonial-text {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  opacity: 0.9;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--line-color);
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-blue);
}

.client-info h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.client-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ══════════════════════ TECHNOLOGY EXPERTISE SECTION ══════════════════════ */
.tech-expertise-section {
  padding: 100px 0;
  background: #0F0F23;
  position: relative;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.tech-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tech-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-accent), var(--success-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tech-category:hover::before {
  transform: scaleX(1);
}

.tech-category:hover {
  transform: translateY(-10px);
  border-color: rgba(42, 125, 241, 0.5);
  box-shadow: 0 20px 60px rgba(42, 125, 241, 0.2);
}

.tech-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.tech-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.2), rgba(22, 168, 255, 0.2));
  border: 2px solid rgba(42, 125, 241, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.tech-category:hover .tech-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  color: white;
  transform: rotate(10deg) scale(1.1);
}

.tech-category-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  background: rgba(42, 125, 241, 0.1);
  border: 1px solid rgba(42, 125, 241, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-tag:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-accent));
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 125, 241, 0.3);
}

/* ══════════════════════ CTA SECTION ══════════════════════ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-bg-soft) 0%, var(--primary-blue) 100%);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #78350F;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

/* ══════════════════════ REVEAL ANIMATIONS ══════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-group .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════ RESPONSIVE DESIGN ══════════════════════ */
@media (max-width: 1024px) {
  .about-hero h1 {
    font-size: 50px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hero-highlights {
    gap: 15px;
  }
  
  .highlight-item {
    padding: 12px 24px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .intro-image {
    order: -1;
  }
  
  .services-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mv-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .awards-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: 100px;
    padding-right: 20px;
  }
  
  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: -5px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 25px;
    min-height: auto;
    background-attachment: scroll, scroll;
  }
  
  .about-hero h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .hero-highlights {
    gap: 10px;
    margin: 25px auto;
  }
  
  .highlight-item {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .highlight-item i {
    font-size: 18px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 25px 0 30px;
  }
  
  .hero-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  
  .stat-box {
    padding: 24px 16px;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .intro-content h2 {
    font-size: 34px;
  }
  
  .services-showcase {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .awards-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .timeline-item {
    padding-left: 80px;
  }
  
  .map-container {
    padding: 30px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 90px 0 15px;
    min-height: auto;
    background-attachment: scroll, scroll;
  }
  
  .about-hero h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    margin-bottom: 16px;
  }
  
  .hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 16px auto;
  }
  
  .highlight-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 8px 18px;
  }
  
  .highlight-item i {
    font-size: 16px;
  }
  
  .highlight-item span {
    font-size: 13px;
  }
  
  .hero-cta-buttons {
    gap: 8px;
    margin: 18px 0 18px;
  }
  
  .hero-cta-btn {
    padding: 11px 26px;
    font-size: 14px;
  }
  
  .hero-stats {
    margin-top: 18px;
    gap: 10px;
  }
  
  .stat-box {
    padding: 16px 12px;
  }
  
  .stat-number {
    font-size: 36px;
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }
  
  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: -25px !important;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .floating-shape {
    opacity: 0.3;
  }
  
  .team-grid {
    gap: 20px;
  }
  
  .team-card {
    border-radius: 16px;
  }
  
  .team-image-wrapper {
    height: 300px;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .testimonials-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .tech-categories {
    gap: 20px;
  }
  
  .tech-category {
    padding: 30px 20px;
  }
  
  .tech-tags {
    gap: 8px;
  }
  
  .tech-tag {
    padding: 8px 16px;
    font-size: 13px;
  }
}


/* ══════════════════════ ENHANCED RESPONSIVE DESIGN ══════════════════════ */
/* Tablet Landscape (1024px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .about-hero {
    padding: 140px 6% 80px;
  }
  
  .about-hero h1 {
    font-size: 54px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .services-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .tech-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-hero {
    padding: 120px 5% 60px;
  }
  
  .about-hero h1 {
    font-size: 46px;
  }
  
  .hero-subtitle {
    font-size: 17px;
    max-width: 600px;
  }
  
  .hero-highlights {
    max-width: 700px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-box {
    padding: 30px 18px;
  }
  
  .stat-number {
    font-size: 46px;
  }
  
  .about-intro-section,
  .what-we-do-section,
  .mission-vision-section,
  .approach-section,
  .timeline-section,
  .values-section,
  .awards-section,
  .why-choose-section,
  .testimonials-section,
  .tech-expertise-section {
    padding: 80px 5%;
  }
  
  .intro-grid {
    gap: 60px;
  }
  
  .intro-content h2 {
    font-size: 38px;
  }
  
  .services-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .service-item {
    padding: 36px 28px;
  }
  
  .mv-wrapper {
    gap: 40px;
  }
  
  .mv-box {
    padding: 44px 36px;
  }
  
  .approach-grid {
    gap: 32px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .tech-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile Landscape (640px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
  .about-hero {
    padding: 110px 4% 50px;
    min-height: 70vh;
  }
  
  .about-hero h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    max-width: 500px;
  }
  
  .hero-badge {
    font-size: 13px;
    padding: 10px 24px;
  }
  
  .hero-highlights {
    gap: 12px;
    max-width: 600px;
  }
  
  .highlight-item {
    padding: 11px 22px;
    font-size: 14px;
  }
  
  .hero-cta-buttons {
    gap: 16px;
  }
  
  .hero-cta-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  
  .stat-box {
    padding: 28px 16px;
  }
  
  .stat-number {
    font-size: 44px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .about-intro-section,
  .what-we-do-section,
  .mission-vision-section,
  .approach-section,
  .timeline-section,
  .values-section,
  .awards-section,
  .why-choose-section,
  .testimonials-section,
  .tech-expertise-section {
    padding: 70px 4%;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
  
  .intro-content h2 {
    font-size: 36px;
  }
  
  .services-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-item {
    padding: 32px 24px;
  }
  
  .mv-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .mv-box {
    padding: 40px 32px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .approach-card {
    padding: 36px 32px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .value-card {
    padding: 36px 28px;
  }
  
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-item {
    padding: 32px 24px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .testimonial-card {
    padding: 36px 28px;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .tech-category {
    padding: 36px 28px;
  }
  
  .cta-content h2 {
    font-size: 38px;
  }
  
  .cta-content p {
    font-size: 17px;
  }
}

/* Mobile Portrait (480px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
  .about-hero {
    padding: 100px 4% 40px;
    min-height: 60vh;
  }
  
  .about-hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 15px;
    max-width: 450px;
    margin-bottom: 35px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 9px 20px;
    margin-bottom: 20px;
  }
  
  .hero-badge i {
    font-size: 16px;
  }
  
  .hero-highlights {
    gap: 10px;
    margin: 30px auto;
  }
  
  .highlight-item {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .highlight-item i {
    font-size: 17px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin: 30px 0 35px;
  }
  
  .hero-cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 13px 28px;
    font-size: 14px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  
  .stat-box {
    padding: 22px 16px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .about-intro-section,
  .what-we-do-section,
  .mission-vision-section,
  .approach-section,
  .timeline-section,
  .values-section,
  .awards-section,
  .why-choose-section,
  .testimonials-section,
  .tech-expertise-section {
    padding: 60px 4%;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .intro-grid {
    gap: 40px;
  }
  
  .intro-content h2 {
    font-size: 30px;
  }
  
  .intro-content p {
    font-size: 15px;
  }
  
  .services-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-item {
    padding: 28px 20px;
  }
  
  .service-icon-box {
    width: 70px;
    height: 70px;
  }
  
  .service-icon-box i {
    font-size: 32px;
  }
  
  .service-item h3 {
    font-size: 20px;
  }
  
  .mv-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .mv-box {
    padding: 36px 28px;
  }
  
  .mv-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .mv-icon-wrapper i {
    font-size: 36px;
  }
  
  .mv-box h2 {
    font-size: 28px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .approach-card {
    padding: 32px 24px;
  }
  
  .approach-number {
    font-size: 60px;
    top: 20px;
    right: 20px;
  }
  
  .approach-icon {
    width: 70px;
    height: 70px;
  }
  
  .approach-icon i {
    font-size: 32px;
  }
  
  .approach-card h3 {
    font-size: 21px;
  }
  
  .timeline-item {
    padding-left: 70px;
    padding-right: 15px;
  }
  
  .timeline-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
  }
  
  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: -30px !important;
  }
  
  .timeline-year {
    font-size: 24px;
  }
  
  .timeline-content h3 {
    font-size: 21px;
  }
  
  .timeline-content p {
    font-size: 14px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    padding: 32px 24px;
  }
  
  .value-visual {
    width: 80px;
    height: 80px;
  }
  
  .value-visual i {
    font-size: 42px;
  }
  
  .value-card h3 {
    font-size: 20px;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .award-card {
    padding: 32px 24px;
  }
  
  .award-badge {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-item {
    padding: 28px 20px;
  }
  
  .why-visual {
    width: 70px;
    height: 70px;
  }
  
  .why-visual i {
    font-size: 32px;
  }
  
  .why-item h3 {
    font-size: 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .quote-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
  
  .client-info img {
    width: 55px;
    height: 55px;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .tech-category {
    padding: 32px 24px;
  }
  
  .tech-icon {
    width: 65px;
    height: 65px;
  }
  
  .tech-icon i {
    font-size: 28px;
  }
  
  .tech-category-header h3 {
    font-size: 21px;
  }
  
  .cta-section {
    padding: 70px 4%;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-content p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 15px 32px;
    justify-content: center;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .about-hero {
    padding: 90px 4% 30px;
    min-height: 50vh;
  }
  
  .about-hero h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    margin-bottom: 18px;
    gap: 8px;
  }
  
  .hero-badge i {
    font-size: 14px;
  }
  
  .hero-highlights {
    flex-direction: column;
    gap: 8px;
    margin: 20px auto;
    max-width: 100%;
  }
  
  .highlight-item {
    width: 100%;
    max-width: 280px;
    padding: 9px 18px;
    font-size: 12px;
    justify-content: center;
  }
  
  .highlight-item i {
    font-size: 16px;
  }
  
  .highlight-item span {
    font-size: 12px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 25px;
  }
  
  .hero-cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 13px;
    justify-content: center;
  }
  
  .hero-cta-btn i {
    font-size: 16px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  
  .stat-box {
    padding: 18px 14px;
  }
  
  .stat-number {
    font-size: 34px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .about-intro-section,
  .what-we-do-section,
  .mission-vision-section,
  .approach-section,
  .timeline-section,
  .values-section,
  .awards-section,
  .why-choose-section,
  .testimonials-section,
  .tech-expertise-section {
    padding: 50px 4%;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }
  
  .label-badge {
    font-size: 11px;
    padding: 6px 16px;
  }
  
  .intro-grid {
    gap: 30px;
  }
  
  .intro-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .intro-content p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .intro-features {
    margin-top: 24px;
    gap: 12px;
  }
  
  .feature-item {
    font-size: 14px;
  }
  
  .feature-item i {
    font-size: 18px;
  }
  
  .services-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .service-item {
    padding: 24px 18px;
  }
  
  .service-icon-box {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .service-icon-box i {
    font-size: 28px;
  }
  
  .service-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .service-item p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .service-features li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .mv-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .mv-box {
    padding: 30px 20px;
  }
  
  .mv-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .mv-icon-wrapper i {
    font-size: 32px;
  }
  
  .mv-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .mv-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .point-item {
    font-size: 13px;
  }
  
  .point-item i {
    font-size: 18px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .approach-card {
    padding: 28px 20px;
  }
  
  .approach-number {
    font-size: 50px;
    top: 15px;
    right: 15px;
  }
  
  .approach-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .approach-icon i {
    font-size: 28px;
  }
  
  .approach-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .approach-card p {
    font-size: 14px;
  }
  
  .timeline {
    padding: 30px 0;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 55px;
    padding-right: 10px;
    margin-bottom: 40px;
  }
  
  .timeline-content {
    padding: 28px 20px;
  }
  
  .timeline-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }
  
  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: -25px !important;
  }
  
  .timeline-year {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .timeline-content p {
    font-size: 13px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .value-card {
    padding: 28px 20px;
  }
  
  .value-visual {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .value-visual i {
    font-size: 38px;
  }
  
  .value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .value-card p {
    font-size: 14px;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .award-card {
    padding: 28px 20px;
  }
  
  .award-badge {
    width: 65px;
    height: 65px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .award-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  
  .award-card p {
    font-size: 13px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .why-item {
    padding: 24px 18px;
    gap: 16px;
  }
  
  .why-header {
    gap: 12px;
  }
  
  .why-number {
    font-size: 14px;
  }
  
  .why-visual {
    width: 65px;
    height: 65px;
  }
  
  .why-visual i {
    font-size: 28px;
  }
  
  .why-item h3 {
    font-size: 18px;
  }
  
  .why-item p {
    font-size: 14px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 28px 20px;
  }
  
  .quote-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .stars {
    margin-bottom: 16px;
  }
  
  .stars i {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .client-info {
    gap: 12px;
    padding-top: 16px;
  }
  
  .client-info img {
    width: 50px;
    height: 50px;
  }
  
  .client-info h4 {
    font-size: 15px;
  }
  
  .client-info p {
    font-size: 12px;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tech-category {
    padding: 28px 20px;
  }
  
  .tech-category-header {
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
  }
  
  .tech-icon i {
    font-size: 26px;
  }
  
  .tech-category-header h3 {
    font-size: 19px;
  }
  
  .tech-tags {
    gap: 8px;
  }
  
  .tech-tag {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .cta-section {
    padding: 60px 4%;
  }
  
  .cta-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .cta-content p {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 13px 28px;
    font-size: 14px;
    justify-content: center;
  }
  
  .floating-shape {
    opacity: 0.2;
  }
  
  .shape-1,
  .shape-3 {
    width: 200px;
    height: 200px;
  }
  
  .shape-2,
  .shape-4,
  .shape-6 {
    width: 120px;
    height: 120px;
  }
  
  .shape-5 {
    width: 150px;
    height: 150px;
  }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
  .about-hero h1 {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 13px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 7px 14px;
  }
  
  .highlight-item {
    max-width: 100%;
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .hero-cta-btn {
    max-width: 100%;
    padding: 11px 20px;
    font-size: 12px;
  }
  
  .stat-number {
    font-size: 30px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .intro-content h2 {
    font-size: 24px;
  }
  
  .service-item h3,
  .approach-card h3,
  .value-card h3,
  .why-item h3 {
    font-size: 17px;
  }
  
  .mv-box h2 {
    font-size: 22px;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
}

/* Zoom Level Adjustments */
@media (min-width: 1920px) {
  .about-hero {
    padding: 180px 10% 120px;
  }
  
  .about-hero h1 {
    font-size: 72px;
  }
  
  .hero-subtitle {
    font-size: 22px;
    max-width: 900px;
  }
  
  .section-title {
    font-size: 56px;
  }
  
  .section-subtitle {
    font-size: 20px;
  }
}
