/* About Section Enhanced Styling */

/* About Section General */
.about {
  overflow: visible;
  position: relative;
  padding: 120px 0;
  background-color: transparent;
  color: #ffffff;
  z-index: 1;
}

/* Decorative elements */
.about-decorative-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.about-circle-1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 30px solid rgba(250, 208, 44, 0.08);
  top: -150px;
  right: -100px;
  animation: float 8s infinite ease-in-out;
  background: radial-gradient(
    circle at center,
    rgba(250, 208, 44, 0.05) 0%,
    rgba(250, 208, 44, 0.02) 50%,
    transparent 70%
  );
}

.about-circle-2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 15px solid rgba(250, 208, 44, 0.05);
  bottom: -80px;
  left: -100px;
  animation: float 10s infinite ease-in-out reverse;
  background: radial-gradient(
    circle at center,
    rgba(250, 208, 44, 0.04) 0%,
    rgba(250, 208, 44, 0.01) 50%,
    transparent 70%
  );
}

.about-line-pattern {
  width: 150px;
  height: 300px;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(250, 208, 44, 0.07) 0px,
    rgba(250, 208, 44, 0.07) 2px,
    transparent 2px,
    transparent 10px
  );
  top: 40%;
  left: 5%;
  transform: rotate(30deg);
  animation: float 12s infinite ease-in-out;
}

.about-dots-pattern {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
    rgba(250, 208, 44, 0.1) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
  bottom: 15%;
  right: 8%;
  animation: float 9s infinite ease-in-out 0.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.section-tagline {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-top: -10px;
  margin-bottom: 40px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

.section-tagline::before,
.section-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary-color);
}

.section-tagline::before {
  left: -20px;
}

.section-tagline::after {
  right: -20px;
}

/* --- Enhanced About Intro Block --- */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: linear-gradient(
    120deg,
    rgba(250, 208, 44, 0.1) 0%,
    rgba(52, 152, 219, 0.1) 100%
  );
  border-radius: 2.5rem;
  box-shadow: 0 12px 48px 0 rgba(40, 40, 80, 0.13),
    0 2px 12px rgba(250, 208, 44, 0.1);
  padding: 48px 32px 48px 32px;
  margin: 40px 0 60px 0;
  position: relative;
  overflow: visible;
  min-height: 340px;
  animation: aboutIntroFadeIn 1.2s cubic-bezier(0.4, 2, 0.6, 1);
}

.about-intro-content {
  flex: 1 1 380px;
  min-width: 260px;
  max-width: 540px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(250, 208, 44, 0.1), 0 1.5px 8px rgba(0, 0, 0, 0.1);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: slideInLeft 1.1s 0.1s both;
}

.about-intro-headline {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fad02c;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  animation: fadeInUp 1s 0.2s both;
}

.about-intro-desc {
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0;
  animation: fadeInUp 1s 0.35s both;
}

.about-intro-img-wrap {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: slideInRight 1.1s 0.2s both;
}

.about-intro-img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(250, 208, 44, 0.13),
    0 1.5px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
  animation: fadeIn 1.2s 0.3s both;
}

.about-intro-img-wrap::after {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #fad02c55 0%, transparent 80%);
  z-index: 1;
  animation: floatAccent 5s infinite alternate;
}

@keyframes aboutIntroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatAccent {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-12px) scale(1.08);
  }
}

@media (max-width: 900px) {
  .about-intro {
    flex-direction: column;
    gap: 28px;
    padding: 32px 8px 32px 8px;
  }

  .about-intro-content,
  .about-intro-img-wrap {
    max-width: 99vw;
    min-width: 0;
    width: 100%;
    padding: 18px 8px;
  }

  .about-intro-img {
    height: 180px;
    max-width: 99vw;
  }
}

/* --- About Section Introduction Block --- */
.about-intro-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2.5rem;
  box-shadow: 0 12px 48px 0 rgba(40, 40, 80, 0.18),
    0 2px 12px rgba(250, 208, 44, 0.1);
  padding: 48px 32px 48px 48px;
  margin: 0 auto 56px auto;
  max-width: 1200px;
  position: relative;
  overflow: visible;
  animation: aboutIntroFadeIn 1.2s cubic-bezier(0.4, 2, 0.6, 1) both;
}

.about-intro-block::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #fad02c33 0%, transparent 80%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
  animation: float 7s infinite ease-in-out;
}

.about-intro-block .about-intro-text {
  flex: 1 1 400px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideInLeft 1.1s cubic-bezier(0.4, 2, 0.6, 1) both;
}

.about-intro-block .about-intro-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fad02c;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  animation: fadeInUp 1.2s both;
}

.about-intro-block .about-intro-desc {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 18px;
  animation: fadeIn 1.2s 0.3s both;
}

.about-intro-block .about-intro-img-wrap {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  max-width: 420px;
  position: relative;
  z-index: 2;
  animation: slideInRight 1.1s cubic-bezier(0.4, 2, 0.6, 1) both;
}

.about-intro-block .about-intro-img {
  width: 100%;
  max-width: 420px;
  height: 340px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(250, 208, 44, 0.13),
    0 2px 12px rgba(0, 0, 0, 0.13);
  animation: floatCard 4.5s ease-in-out infinite alternate;
  transition: transform 0.35s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
}

.about-intro-block .about-intro-img-wrap::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #fad02c44 0%, transparent 80%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(2px);
  animation: float 8s infinite ease-in-out reverse;
}

.about-intro-block .about-intro-img-wrap:hover .about-intro-img {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 16px 48px rgba(250, 208, 44, 0.22),
    0 4px 24px rgba(40, 40, 80, 0.13);
}

@keyframes aboutIntroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-18px) scale(1.025);
  }
}

@media (max-width: 900px) {
  .about-intro-block {
    flex-direction: column;
    gap: 28px;
    padding: 32px 10px 32px 10px;
  }

  .about-intro-block .about-intro-img-wrap {
    max-width: 95vw;
    height: 220px;
  }

  .about-intro-block .about-intro-img {
    height: 220px;
    max-width: 95vw;
  }
}

@media (max-width: 600px) {
  .about-intro-block {
    padding: 16px 2vw 18px 2vw;
    border-radius: 1.2rem;
  }

  .about-intro-block .about-intro-title {
    font-size: 1.3rem;
  }

  .about-intro-block .about-intro-desc {
    font-size: 1rem;
  }

  .about-intro-block .about-intro-img {
    height: 120px;
    border-radius: 1rem;
  }
}

/* About Stats */
.about-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.stat-item {
  text-align: center;
  margin: 15px;
  padding: 0 20px;
  position: relative;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.stat-item:hover::after {
  transform: scaleX(0.8);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-color);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
  transition: all 0.5s ease;
}

.stat-number.count-complete {
  animation: number-pulse 1s ease-out;
}

@keyframes number-pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
  }
  50% {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.7);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
  }
}

.stat-label {
  font-size: 1rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission & Vision Cards */
.about-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.about-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  z-index: -1;
}

.about-card.vision-card::before {
  background: var(--primary-color);
}

.about-card.mission-card::before {
  background: var(--accent-color);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.mission-card .card-icon {
  color: var(--accent-color);
  background: rgba(241, 196, 15, 0.1);
}

.about-card:hover .card-icon {
  transform: rotateY(180deg);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-card h3:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mission-card h3:after {
  background: var(--accent-color);
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Company Timeline */
.company-timeline {
  margin: 80px 0;
  position: relative;
}

.timeline-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 20px;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-date {
  display: inline-block;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-content {
  padding: 20px;
  background: var(--card-bg);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.timeline-content p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Core Values */
.core-values-section {
  margin: 80px 0 40px;
}

.values-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.value-item {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.value-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--primary-color);
  box-shadow: 0 0 0 10px rgba(52, 152, 219, 0.1);
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
  color: var(--light-text);
}

.value-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.value-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Parallax Background Enhancement */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.about-background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/cyaze.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.about-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: -1;
}

.animated-overlay {
  animation: subtle-pulse 10s infinite ease-in-out;
}

@keyframes subtle-pulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.75;
  }
}

.about.parallax-section .container {
  position: relative;
  z-index: 5;
}

.section-header h2 {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-line {
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto 40px;
}

.about-intro-content {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  text-align: center;
}

.combined-card .about-intro-content {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.combined-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 40px;
  gap: 30px;
}

.combined-section {
  flex: 1 1 300px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.combined-section:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-icon {
  width: 50px;
  height: 50px;
  background: rgba(250, 208, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.section-icon i {
  font-size: 20px;
  color: #fad02c;
}

.combined-section:hover .section-icon {
  transform: scale(1.1);
  background: rgba(250, 208, 44, 0.2);
}

.combined-section h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.combined-section h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #fad02c;
}

.combined-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Journey Only Container */
.vmj-container.journey-only {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

/* --- About Hero Cards --- */
.about-hero-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  margin: 64px 0 48px 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.about-hero-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2.5rem;
  box-shadow: 0 12px 48px 0 rgba(40, 40, 80, 0.18),
    0 2px 12px rgba(250, 208, 44, 0.1);
  overflow: visible;
  width: 370px;
  min-width: 260px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 0 38px 0;
  border: none;
  transition: box-shadow 0.35s, transform 0.35s;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  animation: floatCard 4.5s ease-in-out infinite alternate;
}

.about-hero-card:hover {
  box-shadow: 0 24px 64px 0 rgba(250, 208, 44, 0.22),
    0 4px 24px rgba(40, 40, 80, 0.13);
  transform: scale(1.035) translateY(-8px);
}

.about-hero-img-wrap {
  width: 100%;
  height: 320px;
  position: relative;
  border-radius: 2.5rem 2.5rem 1.2rem 1.2rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(135deg, #fad02c22 0%, #fffbe6 100%);
  box-shadow: 0 8px 32px rgba(250, 208, 44, 0.1), 0 1.5px 8px rgba(0, 0, 0, 0.1);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
}

.about-hero-card:hover .about-hero-img {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(250, 208, 44, 0.22),
    0 2px 12px rgba(0, 0, 0, 0.13);
}

.about-hero-title-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 0 12px 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.82) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fad02c;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  z-index: 2;
  pointer-events: none;
}

.about-hero-desc {
  padding: 38px 32px 0 32px;
  text-align: center;
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.97);
  font-weight: 400;
  line-height: 1.7;
  z-index: 2;
  position: relative;
}

@keyframes floatCard {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-18px) scale(1.025);
  }
}

@media (max-width: 1100px) {
  .about-hero-cards {
    gap: 24px;
  }

  .about-hero-card {
    width: 300px;
  }

  .about-hero-img-wrap {
    height: 200px;
  }
}

@media (max-width: 900px) {
  .about-hero-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .about-hero-card {
    width: 95vw;
    min-width: 0;
    max-width: 99vw;
  }
}

@media (max-width: 600px) {
  .about-hero-img-wrap {
    height: 120px;
  }

  .about-hero-desc {
    padding: 18px 8px 0 8px;
    font-size: 1rem;
  }

  .about-hero-title-overlay {
    font-size: 1.1rem;
    padding: 10px 0 6px 0;
  }

  .about-hero-card {
    padding-bottom: 18px;
  }
}
