.guru-section {
  padding: 2rem 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.guru-container {
  max-width: 1280px;
  margin: 0 auto;
}

.guru-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.guru-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.guru-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.guru-image-wrapper:hover .guru-image {
  transform: scale(1.05);
}

.guru-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
  pointer-events: none;
}

.guru-text {
  display: flex;
  flex-direction: column;
}

.guru-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.guru-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
}

.guru-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guru-video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.25);
}

.guru-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.guru-achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.achievement-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.achievement-icon svg {
  width: 24px;
  height: 24px;
}

.achievement-text {
  display: flex;
  flex-direction: column;
}

.achievement-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.achievement-sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 1024px) {
  .guru-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .guru-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .guru-section {
    padding: 4rem 1.5rem;
  }

  .guru-image {
    height: 400px;
  }

  .guru-achievements {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}