/* ==========================================================================
   About Page - Modern SaaS Style
   ========================================================================== */

/* Page Header - Premium Clean Design
   ========================================================================== */
.page-header-modern {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: #122a54;
}

/* Background Image with Parallax */
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  transform: scale(1.1);
  animation: headerZoom 20s ease-in-out infinite alternate;
}

@keyframes headerZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Soft Dark Overlay */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.7) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 1;
}

/* Subtle Grid Pattern */
.page-header-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Soft Radial Glow */
.page-header-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(14, 146, 210, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Blur Shapes for Depth */
.page-header-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.header-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.header-shape-1 {
  width: 500px;
  height: 500px;
  background: #1762be;
  top: -200px;
  right: -100px;
}

.header-shape-2 {
  width: 400px;
  height: 400px;
  background: #4fc13c;
  bottom: -150px;
  left: -100px;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-title-modern {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.page-subtitle-modern {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Clean Minimal Breadcrumb */
.breadcrumb-modern {
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.breadcrumb-modern a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern a:hover {
  color: #ffffff;
}

.breadcrumb-modern .separator {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.breadcrumb-modern .current {
  color: #ffffff;
  font-weight: 600;
}

/* About Story Section
   ========================================================================== */
.about-story-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
  overflow: hidden;
}
.about-story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(34, 197, 94, 0.04) 35px,
      rgba(34, 197, 94, 0.04) 36px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(34, 197, 94, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.about-story-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background:
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(34, 197, 94, 0.04) 50%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(34, 197, 94, 0.04) 50%,
      transparent 52%
    );
  background-size: auto, auto;
  background-size: 60px 60px;
  transform: rotate(-15deg);
  pointer-events: none;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content-wrapper {
    padding: 0;
  }

  .about-title {
    font-size: 2.25rem;
  }
}

/* Image Container */
.about-image-container {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px -20px rgba(14, 146, 210, 0.25);
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 146, 210, 0.1) 0%,
    rgba(54, 179, 126, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Decorative Elements */
.about-image-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 24px;
  z-index: -1;
}

.about-image-decoration-1 {
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, #1762be 0%, #4fc13c 100%);
  opacity: 0.15;
}

.about-image-decoration-2 {
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, #4fc13c 0%, #1762be 100%);
  opacity: 0.1;
}

/* Content Styles */
.about-content-wrapper {
  padding: 20px 0;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1762be;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #1762be;
}

.about-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #122a54;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-title span {
  background: linear-gradient(135deg, #1762be 0%, #4fc13c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-description p {
  margin-bottom: 16px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* Stats Section
   ========================================================================== */
.about-stats-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #122a54 0%, #122a54 50%, #122a54 100%);
  overflow: hidden;
}

.about-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(14, 146, 210, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(54, 179, 126, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

.about-stat-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(14, 146, 210, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(14, 146, 210, 0.2);
}

.about-stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(14, 146, 210, 0.2) 0%,
    rgba(54, 179, 126, 0.2) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1762be;
  transition: all 0.4s ease;
}

.about-stat-card:hover .about-stat-icon {
  background: linear-gradient(135deg, #1762be 0%, #4fc13c 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Values Section
   ========================================================================== */
.about-values-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.about-values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    #e2e8f0 1px,
    transparent 0
  );
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.about-values-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.about-values-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1762be;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(14, 146, 210, 0.1);
  border-radius: 50px;
}

.about-values-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #122a54;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-values-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-values-grid {
    grid-template-columns: 1fr !important;
  }
}

.about-value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1762be 0%, #4fc13c 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(14, 146, 210, 0.15);
  border-color: transparent;
}

.about-value-card:hover::before {
  transform: scaleX(1);
}

.about-value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    rgba(14, 146, 210, 0.1) 0%,
    rgba(54, 179, 126, 0.1) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1762be;
  transition: all 0.4s ease;
}

.about-value-card:hover .about-value-icon {
  background: linear-gradient(135deg, #1762be 0%, #4fc13c 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.about-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #122a54;
  margin-bottom: 12px;
}

.about-value-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Why Choose Us Section
   ========================================================================== */
.about-why-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-why-content {
  position: relative;
}

.about-why-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1762be;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-why-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #1762be;
}

.about-why-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #122a54;
  line-height: 1.2;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.about-why-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-why-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-why-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 40px -10px rgba(14, 146, 210, 0.15);
  border-color: rgba(14, 146, 210, 0.3);
}

.about-why-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1762be 0%, #4fc13c 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  transition: all 0.4s ease;
}

.about-why-item:hover .about-why-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px -5px rgba(14, 146, 210, 0.4);
}

.about-why-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #122a54;
  margin-bottom: 8px;
}

.about-why-text p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Why Image */
.about-why-image-wrapper {
  position: relative;
}

.about-why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px -20px rgba(14, 146, 210, 0.25);
}

.about-why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 146, 210, 0.1) 0%,
    rgba(54, 179, 126, 0.1) 100%
  );
  pointer-events: none;
}

.about-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.about-play-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.about-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 30px 60px -10px rgba(14, 146, 210, 0.4);
}

.about-play-button svg {
  width: 28px;
  height: 28px;
  fill: #1762be;
  margin-left: 4px;
  transition: fill 0.3s ease;
}

.about-play-button:hover svg {
  fill: #4fc13c;
}

/* Team Section
   ========================================================================== */
.about-team-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
  overflow: hidden;
}

/* Background lines pattern - same as about-story-section */
.about-team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(34, 197, 94, 0.04) 35px,
      rgba(34, 197, 94, 0.04) 36px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(34, 197, 94, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Diagonal stripe pattern - same as about-story-section */
.about-team-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background:
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(34, 197, 94, 0.04) 50%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(34, 197, 94, 0.04) 50%,
      transparent 52%
    );
  background-size: 60px 60px;
  transform: rotate(-15deg);
  pointer-events: none;
}

/* Additional decorative blob */
.about-team-decoration {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.08) 0%,
    rgba(14, 146, 210, 0.05) 100%
  );
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Additional diagonal stripes for top-right corner */
.about-team-decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background:
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(14, 146, 210, 0.04) 50%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(14, 146, 210, 0.04) 50%,
      transparent 52%
    );
  background-size: 60px 60px;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

/* Floating geometric shapes */
.team-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.team-shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(14, 146, 210, 0.15);
  border-radius: 20px;
  transform: rotate(15deg);
  animation: floatShape 8s ease-in-out infinite;
}

.team-shape-2 {
  top: 20%;
  right: 8%;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(14, 146, 210, 0.05) 100%
  );
  border-radius: 50%;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.team-shape-3 {
  bottom: 15%;
  left: 10%;
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(14, 146, 210, 0.12);
  border-radius: 30px;
  transform: rotate(-10deg);
  animation: floatShape 12s ease-in-out infinite;
}

.team-shape-4 {
  bottom: 25%;
  right: 5%;
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 10px;
  transform: rotate(25deg);
  animation: floatShape 9s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 5deg));
  }
}

.about-team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.about-team-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1762be;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    rgba(14, 146, 210, 0.1) 0%,
    rgba(34, 197, 94, 0.08) 100%
  );
  border-radius: 50px;
  border: 1px solid rgba(14, 146, 210, 0.15);
  box-shadow: 0 2px 10px rgba(14, 146, 210, 0.08);
}

.about-team-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #122a54;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-team-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

/* Team Grid - Responsive */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.about-team-card {
  box-sizing: border-box;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 16px;
  }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 12px;
  }
}

.about-team-card .card-inner {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  height: 100%;
}

.about-team-card:hover .card-inner {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(14, 146, 210, 0.2);
  border-color: rgba(14, 146, 210, 0.2);
}

.about-team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
  border-radius: 16px 16px 0 0;
}

.about-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
  color: #94a3b8;
  font-size: 48px;
}

.about-team-card:hover .about-team-image img {
  transform: scale(1.05);
}

/* .about-team-info {
    padding: 16px 20px 20px;
} */

.about-team-info {
  padding: 16px 20px 20px;
  background: #fff;
  border-radius: 0 0 20px 20px;
}

.about-team-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.about-team-role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1762be;
  margin-bottom: 10px;
}

.about-team-bio {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section
   ========================================================================== */
.about-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1762be 0%, #4fc13c 100%);
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta-btn-primary {
  background: #ffffff;
  color: #1762be;
}

.about-cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2);
  color: #4fc13c;
}

.about-cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* AOS Animation Overrides for About Page
   ========================================================================== */
[data-aos="about-fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos="about-fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
  .page-header-modern {
    min-height: 40vh;
    padding: 120px 0 80px;
  }

  .page-header-bg img {
    opacity: 0.5;
  }

  .header-shape {
    filter: blur(60px);
    opacity: 0.1;
  }

  .header-shape-1 {
    width: 300px;
    height: 300px;
  }

  .header-shape-2 {
    width: 250px;
    height: 250px;
  }

  .page-title-modern {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-subtitle-modern {
    font-size: 1.1rem;
  }

  .about-story-section,
  .about-stats-section,
  .about-values-section,
  .about-why-section,
  .about-team-section,
  .about-cta-section {
    padding: 60px 0;
  }

  .about-story-grid {
    gap: 40px;
  }

  .about-image-wrapper {
    border-radius: 20px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-why-grid {
    gap: 40px;
  }

  .about-stat-card {
    padding: 32px 24px;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-value-card {
    padding: 32px 24px;
  }

  .about-why-item {
    padding: 20px;
    gap: 16px;
  }

  .about-why-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .about-why-image img {
    height: 350px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-header-modern {
    min-height: 35vh;
    padding: 100px 0 60px;
  }

  .page-title-modern {
    font-size: 2rem;
  }

  .page-subtitle-modern {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .breadcrumb-modern {
    font-size: 0.875rem;
  }

  .about-story-section,
  .about-stats-section,
  .about-values-section,
  .about-why-section,
  .about-team-section,
  .about-cta-section {
    padding: 48px 0;
  }

  .about-section-label {
    font-size: 0.75rem;
  }

  .about-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-image-wrapper {
    border-radius: 16px;
  }

  .about-image-decoration {
    display: none;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-stat-card {
    padding: 24px 16px;
  }

  .about-stat-icon {
    width: 48px;
    height: 48px;
  }

  .about-stat-icon svg {
    width: 22px;
    height: 22px;
  }

  .about-stat-number {
    font-size: 1.75rem;
  }

  .about-stat-label {
    font-size: 0.875rem;
  }

  .about-values-header {
    margin-bottom: 40px;
  }

  .about-values-label {
    font-size: 0.75rem;
  }

  .about-values-title {
    font-size: 1.75rem;
  }

  .about-values-subtitle {
    font-size: 1rem;
  }

  .about-values-grid {
    gap: 20px;
  }

  .about-value-card {
    padding: 28px 20px;
  }

  .about-value-icon {
    width: 56px;
    height: 56px;
  }

  .about-value-icon svg {
    width: 26px;
    height: 26px;
  }

  .about-value-title {
    font-size: 1.125rem;
  }

  .about-value-description {
    font-size: 0.9375rem;
  }

  .about-why-label {
    font-size: 0.75rem;
  }

  .about-why-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  .about-why-items {
    gap: 20px;
  }

  .about-why-item {
    padding: 16px;
    gap: 12px;
  }

  .about-why-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
    border-radius: 12px;
  }

  .about-why-text h3 {
    font-size: 1rem;
  }

  .about-why-text p {
    font-size: 0.9375rem;
  }

  .about-why-image img {
    height: 280px;
  }

  .about-play-button {
    width: 70px;
    height: 70px;
  }

  .about-play-button svg {
    width: 24px;
    height: 24px;
  }

  .about-team-header {
    margin-bottom: 40px;
  }

  .about-team-label {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .about-team-title {
    font-size: 1.75rem;
  }

  .about-team-subtitle {
    font-size: 1rem;
  }

  .about-team-info {
    padding: 20px;
  }

  .about-team-name {
    font-size: 1rem;
  }

  .about-team-role {
    font-size: 0.8125rem;
  }

  .about-team-bio {
    font-size: 0.8125rem;
  }

  /* Hide decorative shapes on mobile */
  .team-shape {
    display: none;
  }

  /* Simplify background on mobile */
  .about-team-section::before,
  .about-team-section::after,
  .about-team-decoration {
    opacity: 0.5;
  }

  .about-team-card .card-inner {
    border-radius: 16px;
  }

  .about-team-info {
    padding: 16px;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }

  .about-cta-text {
    font-size: 1rem;
  }

  .about-cta-btn {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
}

/* Team Modal
   ========================================================================== */
.team-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.team-modal.active {
  display: flex;
}

.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 42, 84, 0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.team-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 80px -20px rgba(14, 146, 210, 0.4);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #122a54;
  z-index: 10;
  transition: all 0.2s ease;
}

.team-modal-close:hover {
  background: #122a54;
  color: #ffffff;
  transform: rotate(90deg);
}

.team-modal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 400px;
}

.team-modal-left {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-modal-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 40px -10px rgba(14, 146, 210, 0.3);
}

.team-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-modal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #94a3b8;
  font-size: 64px;
}

.team-modal-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #122a54;
  margin-bottom: 8px;
}

.team-modal-info p:first-of-type {
  font-size: 0.9375rem;
  color: #1762be;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-modal-info p:last-of-type {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.team-modal-right {
  padding: 40px 50px 40px 40px;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 146, 210, 0.3) transparent;
}

.team-modal-right::-webkit-scrollbar {
  width: 8px;
}

.team-modal-right::-webkit-scrollbar-track {
  background: transparent;
}

.team-modal-right::-webkit-scrollbar-thumb {
  background: rgba(14, 146, 210, 0.3);
  border-radius: 4px;
}

.team-modal-right h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #122a54;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.team-modal-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
}

.team-modal-description p {
  margin-bottom: 16px;
}

.team-modal-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-modal-grid {
    grid-template-columns: 1fr;
  }

  .team-modal-left {
    padding: 24px;
  }

  .team-modal-image {
    width: 120px;
    height: 120px;
  }

  .team-modal-right {
    padding: 24px 32px 24px 24px;
    max-height: 50vh;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .page-header-bg img {
    animation: none;
    transform: none;
  }

  .team-modal-content {
    animation: none;
  }
}
