/* ==========================================================================
   ABOUT US PAGE - DEDICATED STYLES
   Modern, sleek design with consistent spacing and animations
   Version: 4.0 - Complete UI Revamp (Jan 2026)
   ========================================================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --about-spacing-xl: 80px;
  --about-spacing-lg: 60px;
  --about-spacing-md: 40px;
  --about-spacing-sm: 24px;
  --about-spacing-xs: 16px;
  --about-radius-lg: 16px;
  --about-radius-md: 12px;
  --about-radius-sm: 8px;
  --about-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --about-btn-padding: 14px 32px;
  --about-btn-padding-sm: 12px 24px;
}

/* ========================================
   BUTTON STYLES - ABOUT PAGE SPECIFIC
   ======================================== */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--about-btn-padding);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--about-radius-sm);
  transition: var(--about-transition);
  cursor: pointer;
  white-space: nowrap;
}

/* Primary Button with Effect */
.about-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff !important;
  border-color: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.about-btn-primary::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.5s ease;
}

.about-btn-primary:hover::before {
  left: 100%;
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  color: #ffffff !important;
}

.about-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: var(--about-transition);
}

.about-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Secondary Button */
.about-btn-secondary {
  background: #ffffff;
  color: #1e293b !important;
  border: 2px solid #ffffff;
  font-weight: 700;
}

.about-btn-secondary:hover {
  background: transparent;
  color: #ffffff !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Outline Button */
.about-btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.about-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Light Mode Button Adjustments */
[data-bs-theme="light"] .about-btn-primary,
[data-theme="light"] .about-btn-primary {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

[data-bs-theme="light"] .about-btn-secondary,
[data-theme="light"] .about-btn-secondary {
  background: #3b82f6;
  color: #ffffff !important;
  border-color: #3b82f6;
}

[data-bs-theme="light"] .about-btn-secondary:hover,
[data-theme="light"] .about-btn-secondary:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff !important;
}

[data-bs-theme="light"] .about-btn-outline,
[data-theme="light"] .about-btn-outline {
  color: #1e293b !important;
  border-color: rgba(30, 41, 59, 0.3);
}

[data-bs-theme="light"] .about-btn-outline:hover,
[data-theme="light"] .about-btn-outline:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff !important;
}

/* Button Group Spacing */
.about-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Button Focus States for Accessibility */
.about-btn:focus-visible,
.about-btn-primary:focus-visible,
.about-btn-secondary:focus-visible,
.about-btn-outline:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

.about-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.about-btn-secondary:active,
.about-btn-outline:active {
  transform: translateY(0);
}

/* Disabled Button State */
.about-btn:disabled,
.about-btn[disabled],
.about-btn-primary:disabled,
.about-btn-secondary:disabled,
.about-btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========================================
   CONTENT WRAPPER
   ======================================== */
.content-wrapper {
  position: relative;
  z-index: 2;
  background: var(--ang-bg-primary, #0f172a);
}

[data-bs-theme="light"] .content-wrapper,
[data-theme="light"] .content-wrapper {
  background: var(--ang-bg-primary, #ffffff);
}

/* ========================================
   ABOUT INFO SECTION
   ======================================== */
.space-pt.z-index-2 {
  padding-top: var(--about-spacing-lg);
  padding-bottom: var(--about-spacing-md);
  background: var(--ang-bg-primary, #0f172a);
}

[data-bs-theme="light"] .space-pt.z-index-2,
[data-theme="light"] .space-pt.z-index-2 {
  background: var(--ang-bg-primary, #ffffff);
}

/* About Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: var(--about-spacing-sm);
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--about-radius-sm);
  transition: var(--about-transition);
}

.about-feature-item:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(4px);
}

.about-feature-item i {
  font-size: 1rem;
  color: #3b82f6;
  flex-shrink: 0;
}

.about-feature-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ang-text-primary, #e2e8f0);
  line-height: 1.4;
}

[data-bs-theme="light"] .about-feature-item,
[data-theme="light"] .about-feature-item {
  background: rgba(59, 130, 246, 0.03);
  border-color: rgba(59, 130, 246, 0.12);
}

[data-bs-theme="light"] .about-feature-item:hover,
[data-theme="light"] .about-feature-item:hover {
  background: rgba(59, 130, 246, 0.06);
}

[data-bs-theme="light"] .about-feature-item span,
[data-theme="light"] .about-feature-item span {
  color: var(--ang-text-primary, #1e293b);
}

/* About Image Wrapper */
.about-image-wrapper {
  position: relative;
  border-radius: var(--about-radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--about-transition);
}

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

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 16px 24px;
  border-radius: var(--about-radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.about-experience-badge .years {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.about-experience-badge .text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder-section {
  background: var(--ang-bg-secondary, #1e293b);
  padding: var(--about-spacing-lg) 0;
}

[data-bs-theme="light"] .founder-section,
[data-theme="light"] .founder-section {
  background: var(--ang-bg-tertiary, #f8fafc);
}

.founder-image-wrapper {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--about-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--about-transition);
}

.founder-image-placeholder:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.founder-image-placeholder i {
  font-size: 8rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

.founder-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
}

.founder-badge i {
  font-size: 1rem;
  color: #fbbf24;
  animation: lightbulbGlow 2s ease-in-out infinite;
}

@keyframes lightbulbGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.founder-badge span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-bs-theme="light"] .founder-image-placeholder,
[data-theme="light"] .founder-image-placeholder {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.04));
  border-color: rgba(59, 130, 246, 0.15);
}

/* Founder Bio */
.founder-bio p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ang-text-secondary, #94a3b8);
  margin-bottom: 16px;
}

.founder-quote {
  position: relative;
  background: rgba(59, 130, 246, 0.05);
  border-left: 4px solid #3b82f6;
  padding: 20px 24px;
  margin: var(--about-spacing-sm) 0;
  border-radius: 0 var(--about-radius-md) var(--about-radius-md) 0;
}

.founder-quote i {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.5rem;
  color: #3b82f6;
  opacity: 0.3;
}

.founder-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--ang-text-primary, #e2e8f0);
  margin: 0 0 12px 0;
  padding-left: 28px;
}

.founder-quote cite {
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: #3b82f6;
  padding-left: 28px;
}

[data-bs-theme="light"] .founder-quote,
[data-theme="light"] .founder-quote {
  background: rgba(59, 130, 246, 0.04);
}

[data-bs-theme="light"] .founder-quote p,
[data-theme="light"] .founder-quote p {
  color: var(--ang-text-primary, #1e293b);
}

/* Founder Expertise */
.founder-expertise h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ang-text-primary, #e2e8f0);
  transition: var(--about-transition);
}

.expertise-tag:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.expertise-tag i {
  font-size: 0.875rem;
  color: #3b82f6;
}

[data-bs-theme="light"] .expertise-tag,
[data-theme="light"] .expertise-tag {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.12);
  color: var(--ang-text-primary, #1e293b);
}

[data-bs-theme="light"] .expertise-tag:hover,
[data-theme="light"] .expertise-tag:hover {
  background: rgba(59, 130, 246, 0.12);
}

/* ========================================
   MARQUEE SECTION
   ======================================== */
/* ========================================
   MARQUEE SECTION
   ======================================== */
.marquee-wrapper,
.space-ptb:has(.marquee-wrapper) {
  padding: 20px 0 !important;
  margin: 0 !important;
}

/* ========================================
   HISTORY TIMELINE SECTION
   ======================================== */
.bg-black.ellipse-top {
  padding-top: var(--about-spacing-lg) !important;
  padding-bottom: var(--about-spacing-md) !important;
}

.history-wrapper {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(59, 130, 246, 0.2);
}

.history-wrapper::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1); }
}

.history-year-sm {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.history-info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--about-radius-md);
  padding: 24px;
  transition: var(--about-transition);
}

.history-info:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(4px);
}

.history-year-lg {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.history-content h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 12px;
}

.history-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ang-text-secondary, #94a3b8);
  margin-bottom: 12px;
}

.history-content blockquote {
  background: rgba(59, 130, 246, 0.05);
  border-left: 3px solid #3b82f6;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0 var(--about-radius-sm) var(--about-radius-sm) 0;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--ang-text-secondary, #94a3b8);
}

.history-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.history-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
}

.history-highlights span i {
  font-size: 0.625rem;
}

/* Future Plans Grid */
.future-plans {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--about-radius-md);
  padding: 20px;
  margin-top: 20px;
}

.future-plans h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.future-plans h5 i {
  color: #fbbf24;
}

.future-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.future-plan-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--about-radius-sm);
  padding: 16px;
  text-align: center;
  transition: var(--about-transition);
}

.future-plan-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.future-plan-item i {
  font-size: 2rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

.future-plan-item span {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 4px;
}

.future-plan-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--ang-text-muted, #64748b);
  line-height: 1.4;
}

[data-bs-theme="light"] .history-info,
[data-theme="light"] .history-info {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Sticky Section Styling */
.sticky-top {
  position: sticky;
  z-index: 10;
}

.sticky-top-80 {
  top: 80px;
}

/* Journey Section - Left Sticky Column */
.sticky-top .section-title {
  margin-bottom: 24px;
}

.sticky-top p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ang-text-secondary, #94a3b8);
}

/* Core Values Box */
.core-values-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--about-radius-md);
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: var(--about-transition);
}

.core-values-box:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.core-values-box h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.core-values-box h5 i {
  color: #f472b6;
  font-size: 1rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
}

.core-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--about-transition);
}

.core-value-item:hover {
  padding-left: 10px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--about-radius-sm);
  margin: 0 -8px;
  padding: 12px 8px 12px 18px;
}

.core-value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.core-value-item > i {
  font-size: 1.125rem;
  color: #60a5fa;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 50%;
  transition: var(--about-transition);
}

.core-value-item:hover > i {
  background: rgba(96, 165, 250, 0.2);
  transform: scale(1.1);
}

.core-value-item div strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 4px;
}

.core-value-item div span {
  font-size: 0.8125rem;
  color: var(--ang-text-muted, #94a3b8);
  line-height: 1.5;
}

/* Light Mode - Core Values Box */
[data-bs-theme="light"] .core-values-box,
[data-theme="light"] .core-values-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.04));
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .core-values-box:hover,
[data-theme="light"] .core-values-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .core-values-box h5,
[data-theme="light"] .core-values-box h5 {
  color: #2563eb;
  border-bottom-color: rgba(37, 99, 235, 0.2);
}

[data-bs-theme="light"] .core-value-item > i,
[data-theme="light"] .core-value-item > i {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

[data-bs-theme="light"] .core-value-item:hover > i,
[data-theme="light"] .core-value-item:hover > i {
  background: rgba(37, 99, 235, 0.2);
}

[data-bs-theme="light"] .core-value-item:hover,
[data-theme="light"] .core-value-item:hover {
  background: rgba(37, 99, 235, 0.05);
}

[data-bs-theme="light"] .core-value-item,
[data-theme="light"] .core-value-item {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */
.mission-vision-section-v2 {
  background: var(--ang-bg-secondary, #1e293b);
  padding: var(--about-spacing-lg) 0;
}

[data-bs-theme="light"] .mission-vision-section-v2,
[data-theme="light"] .mission-vision-section-v2 {
  background: var(--ang-bg-tertiary, #f1f5f9);
}

.mission-vision-section-v2 .lead-text {
  font-size: 1rem;
  color: var(--ang-text-secondary, #94a3b8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mv-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--about-radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--about-transition);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: var(--about-transition);
}

.mv-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.mv-card:hover::before {
  height: 6px;
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--about-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--about-transition);
}

.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(-5deg);
}

.mv-icon.mission-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.08));
}

.mv-icon.vision-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
}

.mv-icon i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mv-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ang-text-heading, #f1f5f9);
  margin: 0;
}

.mv-card > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ang-text-secondary, #94a3b8);
  margin-bottom: 20px;
}

.mv-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--ang-text-secondary, #94a3b8);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--about-radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--about-transition);
}

.mv-point:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.mv-point:last-child {
  border-bottom: none;
}

.mv-point i {
  font-size: 0.75rem;
  color: #22c55e;
  flex-shrink: 0;
}

/* Bottom Stats Strip */
.mv-bottom-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--about-radius-md);
}

.mv-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--about-transition);
}

.mv-stat:hover {
  transform: translateY(-2px);
}

.mv-stat:last-child {
  border-right: none;
}

.mv-stat i {
  font-size: 1.125rem;
  color: #60a5fa;
}

.mv-stat span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ang-text-secondary, #94a3b8);
}

/* Light mode */
[data-bs-theme="light"] .mv-card,
[data-theme="light"] .mv-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .mv-card:hover,
[data-theme="light"] .mv-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .mv-bottom-stats,
[data-theme="light"] .mv-bottom-stats {
  background: rgba(59, 130, 246, 0.03);
  border-color: rgba(59, 130, 246, 0.1);
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial-section {
  padding: var(--about-spacing-lg) 0 !important;
}

.testimonial-section .owl-carousel .owl-item {
  background: transparent !important;
}

.testimonial-wrapper.testimonial-style-2 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--about-radius-md);
  padding: 28px;
  transition: var(--about-transition);
}

.testimonial-wrapper.testimonial-style-2:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

[data-bs-theme="light"] .testimonial-wrapper.testimonial-style-2,
[data-theme="light"] .testimonial-wrapper.testimonial-style-2 {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="light"] .testimonial-wrapper.testimonial-style-2:hover,
[data-theme="light"] .testimonial-wrapper.testimonial-style-2:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--ang-bg-primary, #0f172a);
  padding: var(--about-spacing-md) 0;
}

[data-bs-theme="light"] .cta-section,
[data-theme="light"] .cta-section {
  background: var(--ang-bg-primary, #ffffff);
}

.cta-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--about-radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10%, 10%); }
  50% { transform: translate(0, 20%); }
  75% { transform: translate(-10%, 10%); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-box p {
  font-size: 1rem;
  color: var(--ang-text-secondary, #94a3b8);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

[data-bs-theme="light"] .cta-box,
[data-theme="light"] .cta-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.06));
}

/* ========================================
   GENERAL SPACING & TYPOGRAPHY
   ======================================== */
.space-ptb {
  padding: var(--about-spacing-lg) 0 !important;
}

.space-pt {
  padding-top: var(--about-spacing-lg) !important;
}

.space-pb {
  padding-bottom: var(--about-spacing-lg) !important;
}

/* Section titles */
.section-title {
  margin-bottom: 32px;
}

.section-title .title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title .sub-title {
  font-size: 0.8125rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title .lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ang-text-secondary, #94a3b8);
  margin-top: 12px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1199px) {
  :root {
    --about-spacing-xl: 70px;
    --about-spacing-lg: 50px;
    --about-spacing-md: 35px;
  }
}

@media (max-width: 991px) {
  :root {
    --about-spacing-xl: 60px;
    --about-spacing-lg: 45px;
    --about-spacing-md: 30px;
    --about-btn-padding: 12px 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .founder-badge {
    padding: 10px 20px;
  }

  .founder-badge span {
    font-size: 0.8125rem;
  }

  .future-plan-grid {
    grid-template-columns: 1fr;
  }

  .mv-bottom-stats {
    gap: 16px;
    padding: 18px 24px;
  }

  .mv-stat {
    padding: 0 12px;
  }

  .expertise-tags {
    gap: 6px;
  }

  .expertise-tag {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  /* Sticky section - disable on tablet */
  .sticky-top {
    position: relative !important;
    top: auto !important;
  }

  .core-values-box {
    margin-top: 20px;
    padding: 20px;
  }

  /* Button adjustments for tablet */
  .about-btn {
    font-size: 0.875rem;
  }

  .about-btn-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  :root {
    --about-spacing-xl: 50px;
    --about-spacing-lg: 40px;
    --about-spacing-md: 28px;
    --about-spacing-sm: 20px;
    --about-btn-padding: 12px 24px;
  }

  .about-features {
    gap: 10px;
  }

  .about-feature-item {
    padding: 10px 14px;
  }

  .about-experience-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
  }

  .about-experience-badge .years {
    font-size: 1.5rem;
  }

  .about-experience-badge .text {
    font-size: 0.6875rem;
  }

  .founder-image-placeholder i {
    font-size: 6rem;
  }

  .founder-badge {
    bottom: -12px;
    padding: 8px 16px;
  }

  .founder-badge i {
    font-size: 0.875rem;
  }

  .founder-badge span {
    font-size: 0.75rem;
  }

  .history-wrapper {
    padding-left: 24px;
  }

  .history-year-lg {
    font-size: 3rem;
  }

  .history-content h4 {
    font-size: 1.125rem;
  }

  .future-plan-item i {
    font-size: 1.5rem;
  }

  /* Core values mobile adjustments */
  .core-values-box {
    padding: 18px;
  }

  .core-values-box h5 {
    font-size: 0.9375rem;
  }

  .core-value-item > i {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .core-value-item div strong {
    font-size: 0.875rem;
  }

  .core-value-item div span {
    font-size: 0.75rem;
  }

  .mv-card {
    padding: 24px;
  }

  .mv-icon {
    width: 48px;
    height: 48px;
  }

  .mv-icon i {
    font-size: 1.25rem;
  }

  .mv-card-header h3 {
    font-size: 1.25rem;
  }

  .mv-bottom-stats {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 0;
  }

  .mv-stat {
    border-right: none;
    width: 100%;
    justify-content: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mv-stat:last-child {
    border-bottom: none;
  }

  .cta-box {
    padding: 32px 24px;
  }

  .cta-box h2 {
    font-size: 1.375rem;
  }

  /* Mobile button styles */
  .about-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.875rem;
    justify-content: center;
  }

  .about-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .about-btn-group .about-btn {
    width: 100%;
  }

  .cta-section .about-btn-secondary,
  .cta-section .about-btn-outline {
    width: 100%;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .expertise-tags {
    flex-direction: column;
  }

  .expertise-tag {
    width: 100%;
    justify-content: center;
  }

  .history-highlights {
    flex-direction: column;
  }

  .history-highlights span {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .content-wrapper {
    background: #ffffff !important;
  }

  .mv-card,
  .history-info,
  .testimonial-wrapper {
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
  }

  .cta-section {
    display: none;
  }
}