/*!
 * Hanell International - About Page Styles
 * Developer: Brian Guvava | Company: BLAXIUM (https://blaxium.com)
 * Project: Hanell International Website Redesign v1.0.0
 * Last Updated: June 30, 2025
 */

/* =============================================================================
   ABOUT PAGE VARIABLES
   ============================================================================= */

:root {
  --about-hero-height: 60vh;
  --about-section-padding: 80px 0;
  --about-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --about-card-hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  --about-gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --about-gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero-about {
  height: var(--about-hero-height);
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay-primary);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Remove any unwanted spacing after hero */
.hero-about + .section {
  margin-top: 0;
  padding-top: 60px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Hero Statistics */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
  color: white;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-cta {
  margin-top: 2rem;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   SECTION STYLING
   ============================================================================= */

.section {
  padding: var(--about-section-padding);
  position: relative;
}

.section-subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* =============================================================================
   COMPANY OVERVIEW SECTION
   ============================================================================= */

.company-overview {
  padding-top: 0;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  position: relative;
  margin-top: 0;
}

.company-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.company-overview .section-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 109, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.company-overview .section-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.company-overview .section-subtitle {
  position: relative;
  padding-left: 20px;
}

.company-overview .section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 2px;
}

.company-overview .section-title {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.company-overview .section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Section Image Styling */
.section-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.section-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.section-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.section-image:hover img {
  transform: scale(1.05);
}

/* Image Overlay Styling */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(0, 59, 109, 0.8) 0%, 
    rgba(102, 153, 204, 0.6) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.section-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.section-image:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Image Statistics Overlay */
.image-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.image-stat {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.stat-text {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Highlights */
.company-highlights {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.05) 0%, rgba(102, 153, 204, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item:hover {
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.highlight-item span {
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Company Statistics Grid */
.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Certifications */
.company-certifications {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
}

.company-certifications h5 {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.certification-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 59, 109, 0.3);
  border-color: var(--color-accent);
}

.certification-badge i {
  font-size: 0.9rem;
}

/* Value Proposition */
.value-proposition {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 59, 109, 0.2);
  transition: all 0.3s ease;
}

.value-proposition:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 59, 109, 0.3);
}

.value-prop-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-prop-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =============================================================================
   MODAL STYLES - TEAM & ADVISORY
   ============================================================================= */

/* Custom Modal Styling */
.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.3rem;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

/* Team Modal Specific */
.modal-team-image img,
.modal-advisory-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-modal-name,
.advisory-modal-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.team-modal-position,
.advisory-modal-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-modal-credentials,
.advisory-modal-credentials {
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.team-modal-bio h5,
.team-modal-achievements h5,
.team-modal-contact h5,
.advisory-modal-bio h5,
.advisory-modal-expertise h5,
.advisory-modal-achievements h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.team-modal-bio p,
.advisory-modal-bio p {
  color: var(--color-text);
  line-height: 1.7;
}

.team-modal-achievements ul,
.advisory-modal-expertise ul,
.advisory-modal-achievements ul {
  list-style: none;
  padding: 0;
}

.team-modal-achievements li,
.advisory-modal-expertise li,
.advisory-modal-achievements li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.team-modal-achievements li:before,
.advisory-modal-expertise li:before,
.advisory-modal-achievements li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.modal-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.modal-social-links .btn {
  flex: 1;
  border-radius: 25px;
  font-weight: 500;
}

.modal-footer {
  background: rgba(248, 249, 250, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

/* Modal Animations */
.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* =============================================================================
   CORE VALUES SECTION - ENHANCED ANIMATIONS & STYLING
   ============================================================================= */

.core-values {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.core-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="gradient" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23003B6D" stop-opacity="0.02"/><stop offset="100%" stop-color="%23003B6D" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23gradient)"/><circle cx="800" cy="800" r="200" fill="url(%23gradient)"/></svg>') no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.core-values .container {
  position: relative;
  z-index: 2;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 59, 109, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-origin: center;
  will-change: transform, box-shadow;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 59, 109, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 59, 109, 0.15);
  border-color: rgba(0, 59, 109, 0.2);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover::after {
  opacity: 1;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotateY(360deg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.value-card:hover .value-title {
  color: var(--color-primary);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.1) 0%, rgba(102, 153, 204, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 59, 109, 0.1);
}

.value-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.value-card:hover .value-icon::before {
  opacity: 0.1;
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.value-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.value-card:hover .value-description {
  color: var(--color-text-primary);
}

/* =============================================================================
   ACHIEVEMENTS SECTION - ENHANCED ANIMATIONS & STYLING
   ============================================================================= */

.achievements {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
  position: relative;
}

.achievements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.achievement-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 59, 109, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-origin: center;
  will-change: transform, box-shadow;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 193, 7, 0.1) 0%,
    rgba(0, 59, 109, 0.05) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.achievement-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.achievement-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 193, 7, 0.3);
}

.achievement-card:hover::before {
  opacity: 1;
}

.achievement-card:hover::after {
  transform: scaleX(1);
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.15) rotateZ(5deg);
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.achievement-card:hover .achievement-title {
  color: var(--color-primary);
}

.achievement-card:hover .achievement-year {
  color: #FFA500;
  transform: scale(1.05);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #FFA500;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.achievement-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.achievement-card:hover .achievement-icon::before {
  opacity: 0.2;
}

.achievement-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.achievement-year {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFA500;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.achievement-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-description {
  color: var(--color-text-primary);
}

/* =============================================================================
   GLOBAL PRESENCE SECTION - ENHANCED ANIMATIONS & STYLING
   ============================================================================= */

.global-presence {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.global-presence::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="worldGradient" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23003B6D" stop-opacity="0.02"/><stop offset="100%" stop-color="%23669DCC" stop-opacity="0.01"/></linearGradient></defs><path d="M0 300 Q250 200 500 300 T1000 300 V1000 H0 Z" fill="url(%23worldGradient)"/></svg>') no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.global-presence .container {
  position: relative;
  z-index: 2;
}

.global-presence .section-content {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  border: 1px solid rgba(0, 59, 109, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.global-presence .section-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.global-presence .section-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 59, 109, 0.15);
  border-color: rgba(0, 59, 109, 0.2);
}

.global-presence .section-content:hover::before {
  transform: scaleX(1);
}

.regional-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.regional-stat {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.05) 0%, rgba(102, 153, 204, 0.03) 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.regional-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transition: width 0.3s ease;
}

.regional-stat:hover {
  transform: translateX(8px) scale(1.02);
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.08) 0%, rgba(102, 153, 204, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(0, 59, 109, 0.1);
  border-color: rgba(0, 59, 109, 0.2);
}

.regional-stat:hover::before {
  width: 8px;
}

.regional-stat strong {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.regional-stat:hover strong {
  color: var(--color-primary-dark);
}

.global-presence .section-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.global-presence .section-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 59, 109, 0.3) 0%,
    rgba(102, 153, 204, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.global-presence .section-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 59, 109, 0.2);
}

.global-presence .section-image:hover::before {
  opacity: 1;
}

.global-presence .section-image:hover img {
  transform: scale(1.05);
}

.global-presence .btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 59, 109, 0.3);
}

.global-presence .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.global-presence .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 59, 109, 0.4);
  color: white;
}

.global-presence .btn-primary:hover::before {
  left: 0;
}

/* =============================================================================
   RESPONSIVE DESIGN FOR ENHANCED SECTIONS
   ============================================================================= */

@media (max-width: 991.98px) {
  .value-card,
  .achievement-card {
    margin-bottom: 2rem;
  }
  
  .value-card:hover,
  .achievement-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
  
  .global-presence .section-content {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .regional-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .value-card,
  .achievement-card {
    padding: 2rem 1.5rem;
  }
  
  .value-icon,
  .achievement-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .value-title,
  .achievement-title {
    font-size: 1.2rem;
  }
  
  .global-presence .section-content {
    padding: 1.5rem;
  }
  
  .regional-stat {
    padding: 1rem;
    text-align: center;
  }
  
  .regional-stat:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

@media (max-width: 575.98px) {
  .value-card:hover,
  .achievement-card:hover {
    transform: translateY(-5px);
  }
  
  .global-presence .section-image:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .global-presence .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

/* Print styles */
@media print {
  .hero-particles,
  .scroll-hint,
  .hero-cta {
    display: none;
  }

  .hero-about {
    height: auto;
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-overlay {
    background: rgba(0, 59, 109, 0.3);
  }

  .mission-vision-card,
  .value-card,
  .stat-item {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* =============================================================================
   RESPONSIVE DESIGN - PART 2 TIMELINE & TEAM
   ============================================================================= */

/* Timeline Responsive Design */
@media (max-width: 991.98px) {
  .timeline-progress {
    left: 2rem;
  }
  
  .timeline-progress-bar::after {
    left: -8px;
  }
  
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 5rem;
    padding-right: 1rem;
  }
  
  .timeline-marker {
    left: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .timeline-navigation {
    gap: 0.5rem;
  }
  
  .timeline-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .timeline-container {
    padding: 1rem 0;
  }
  
  .timeline-progress {
    left: 1.5rem;
  }
  
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 4rem;
    margin-bottom: 2rem;
  }
  
  .timeline-marker {
    left: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .timeline-title {
    font-size: 1.25rem;
  }
  
  .timeline-navigation {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-nav-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Team Section Responsive */
@media (max-width: 991.98px) {
  .team-image {
    height: 250px;
  }
  
  .team-info {
    padding: 1.5rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .team-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  .team-name {
    font-size: 1.2rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
}

/* Advisory Board Responsive */
@media (max-width: 991.98px) {
  .advisory-image {
    height: 180px;
  }
  
  .advisory-info {
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .advisory-card {
    margin-bottom: 1.5rem;
  }
  
  .advisory-image {
    height: 150px;
  }
  
  .advisory-name {
    font-size: 1rem;
  }
  
  .advisory-title {
    font-size: 0.85rem;
  }
  
  .advisory-cta {
    padding: 2rem 1rem;
  }
  
  .advisory-cta h4 {
    font-size: 1.5rem;
  }
}

/* Modal Responsive */
@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-body .row {
    flex-direction: column;
  }
  
  .modal-body .col-md-4,
  .modal-body .col-md-8 {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .modal-social-links {
    flex-direction: column;
  }
  
  .team-modal-name,
  .advisory-modal-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .timeline-progress {
    left: 1rem;
  }
  
  .timeline-marker {
    left: 1rem;
    width: 35px;
    height: 35px;
  }
  
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 3rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .team-social {
    gap: 0.5rem;
  }
  
  .team-social .social-link {
    width: 35px;
    height: 35px;
  }
  
  .btn-view-profile,
  .btn-view-advisory {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

/* Fade in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes */
[data-animate="fadeInUp"] {
  animation: fadeInUp 0.8s ease-out forwards;
}

[data-animate="fadeInLeft"] {
  animation: fadeInLeft 0.8s ease-out forwards;
}

[data-animate="fadeInRight"] {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Animation delays */
[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }
[data-delay="800"] { animation-delay: 0.8s; }

/* Initial state for animated elements - TEMPORARY FIX */
[data-animate] {
  opacity: 1 !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Hide elements only when JS is enabled and working */
.js-enabled.animations-ready [data-animate] {
  opacity: 0;
}

/* =============================================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================================= */

/* Focus styles */
.value-card:focus-within,
.mission-vision-card:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .value-card,
  .mission-vision-card,
  .stat-item,
  .section-image img {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .value-card,
  .mission-vision-card,
  .stat-item {
    border: 2px solid var(--color-text-primary);
  }
}

/* Enhanced Hero Particles Animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticles 20s infinite linear;
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: 5s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 20%;
  animation-delay: 10s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 70%;
  animation-delay: 15s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 50%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes floatParticles {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Enhanced Hero Title with Highlight Animation */
.highlight-animated {
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Hero CTA Buttons */
.hero-cta {
  margin: 2rem 0;
}

.btn-hero-primary {
  background: var(--color-primary);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 59, 109, 0.4);
}

.btn-hero-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 59, 109, 0.6);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   SECTION STYLING
   ============================================================================= */

.section {
  padding: var(--about-section-padding);
  position: relative;
}

.section-subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* =============================================================================
   COMPANY OVERVIEW SECTION
   ============================================================================= */

.company-overview {
  padding-top: 0;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  position: relative;
  margin-top: 0;
}

.company-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.company-overview .section-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 109, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.company-overview .section-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.company-overview .section-subtitle {
  position: relative;
  padding-left: 20px;
}

.company-overview .section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 2px;
}

.company-overview .section-title {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.company-overview .section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Section Image Styling */
.section-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.section-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.section-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.section-image:hover img {
  transform: scale(1.05);
}

/* Image Overlay Styling */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(0, 59, 109, 0.8) 0%, 
    rgba(102, 153, 204, 0.6) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.section-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.section-image:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Image Statistics Overlay */
.image-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.image-stat {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.stat-text {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Highlights */
.company-highlights {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.05) 0%, rgba(102, 153, 204, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item:hover {
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.highlight-item span {
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Company Statistics Grid */
.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Certifications */
.company-certifications {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(0, 59, 109, 0.1);
}

.company-certifications h5 {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.certification-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 59, 109, 0.3);
  border-color: var(--color-accent);
}

.certification-badge i {
  font-size: 0.9rem;
}

/* Value Proposition */
.value-proposition {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 59, 109, 0.2);
  transition: all 0.3s ease;
}

.value-proposition:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 59, 109, 0.3);
}

.value-prop-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-prop-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =============================================================================
   MODAL STYLES - TEAM & ADVISORY
   ============================================================================= */

/* Custom Modal Styling */
.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.3rem;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

/* Team Modal Specific */
.modal-team-image img,
.modal-advisory-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-modal-name,
.advisory-modal-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.team-modal-position,
.advisory-modal-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-modal-credentials,
.advisory-modal-credentials {
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.team-modal-bio h5,
.team-modal-achievements h5,
.team-modal-contact h5,
.advisory-modal-bio h5,
.advisory-modal-expertise h5,
.advisory-modal-achievements h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.team-modal-bio p,
.advisory-modal-bio p {
  color: var(--color-text);
  line-height: 1.7;
}

.team-modal-achievements ul,
.advisory-modal-expertise ul,
.advisory-modal-achievements ul {
  list-style: none;
  padding: 0;
}

.team-modal-achievements li,
.advisory-modal-expertise li,
.advisory-modal-achievements li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.team-modal-achievements li:before,
.advisory-modal-expertise li:before,
.advisory-modal-achievements li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.modal-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.modal-social-links .btn {
  flex: 1;
  border-radius: 25px;
  font-weight: 500;
}

.modal-footer {
  background: rgba(248, 249, 250, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

/* Modal Animations */
.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* =============================================================================
   CORE VALUES SECTION - ENHANCED ANIMATIONS & STYLING
   ============================================================================= */

.core-values {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.core-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="gradient" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23003B6D" stop-opacity="0.02"/><stop offset="100%" stop-color="%23003B6D" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23gradient)"/><circle cx="800" cy="800" r="200" fill="url(%23gradient)"/></svg>') no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.core-values .container {
  position: relative;
  z-index: 2;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 59, 109, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-origin: center;
  will-change: transform, box-shadow;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 59, 109, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 59, 109, 0.15);
  border-color: rgba(0, 59, 109, 0.2);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover::after {
  opacity: 1;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotateY(360deg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.value-card:hover .value-title {
  color: var(--color-primary);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.1) 0%, rgba(102, 153, 204, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 59, 109, 0.1);
}

.value-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.value-card:hover .value-icon::before {
  opacity: 0.1;
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.value-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
  transition
   ============================================================================= */

/* Timeline Responsive Design */
@media (max-width: 991.98px) {
  .timeline-progress {
    left: 2rem;
  }
  
  .timeline-progress-bar::after {
    left: -8px;
  }
  
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 5rem;
    padding-right: 1rem;
  }
  
  .timeline-marker {
    left: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .timeline-navigation {
    gap: 0.5rem;
  }
  
  .timeline-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .timeline-container {
    padding: 1rem 0;
  }
  
  .timeline-progress {
    left: 1.5rem;
  }
  
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 4rem;
    margin-bottom: 2rem;
  }
  
  .timeline-marker {
    left: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .timeline-title {
    font-size: 1.25rem;
  }
  
  .timeline-navigation {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-nav-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Team Section Responsive */
@media (max-width: 991.98px) {
  .team-image {
    height: 250px;
  }
  
  .team-info {
    padding: 1.5rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .team-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  .team-name {
    font-size: 1.2rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
}

/* Advisory Board Responsive */
@media (max-width: 991.98px) {
  .advisory-image {
    height: 180px;
  }
  
  .advisory-info {
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .advisory-card {
    margin-bottom: 1.5rem;
  }
  
  .advisory-image {
    height: 150px;
  }
  
  .advisory-name {
    font-size: 1rem;
  }
  
  .advisory-title {
    font-size: 0.85rem;
  }
  
  .advisory-cta {
    padding: 2rem 1rem;
  }
  
  .advisory-cta h4 {
    font-size: 1.5rem;
  }
}

/* Modal Responsive */
@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-body .row {
    flex-direction: column;
  }
  
  .modal-body .col-md-4,
  .modal-body .col-md-8 {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .modal-social-links {
    flex-direction: column;
  }
  
  .team-modal-name,
  .advisory-modal-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .timeline-progress {
    left: 1rem;
  }
  
  .timeline-marker {
    left: 1rem;
    width: 35px;
    height: 35px;
  }
  
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 3rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .team-social {
    gap: 0.5rem;
  }
  
  .team-social .social-link {
    width: 35px;
    height: 35px;
  }
  
  .btn-view-profile,
  .btn-view-advisory {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

/* Fade in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes */
[data-animate="fadeInUp"] {
  animation: fadeInUp 0.8s ease-out forwards;
}

[data-animate="fadeInLeft"] {
  animation: fadeInLeft 0.8s ease-out forwards;
}

[data-animate="fadeInRight"] {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Animation delays */
[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }
[data-delay="800"] { animation-delay: 0.8s; }

/* Initial state for animated elements - TEMPORARY FIX */
[data-animate] {
  opacity: 1 !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Hide elements only when JS is enabled and working */
.js-enabled.animations-ready [data-animate] {
  opacity: 0;
}

/* =============================================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================================= */

/* Focus styles */
.value-card:focus-within,
.mission-vision-card:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .value-card,
  .mission-vision-card,
  .stat-item,
  .section-image img {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .value-card,
  .mission-vision-card,
  .stat-item {
    border: 2px solid var(--color-text-primary);
  }
}

/* Enhanced Hero Particles Animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticles 20s infinite linear;
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: 5s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 20%;
  animation-delay: 10s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 70%;
  animation-delay: 15s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 50%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes floatParticles {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Enhanced Hero Title with Highlight Animation */
.highlight-animated {
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Hero CTA Buttons */
.hero-cta {
  margin: 2rem 0;
}

.btn-hero-primary {
  background: var(--color-primary);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 59, 109, 0.4);
}

.btn-hero-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 59, 109, 0.6);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Scroll Hint */
.scroll-hint-animation {
  position: relative;
}

.scroll-hint-arrow {
  animation: scrollBounce 2s infinite;
}

.scroll-hint-arrow-2 {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.3s;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-5px) translateX(-50%);
  }
  60% {
    transform: translateY(-3px) translateX(-50%);
  }
}

/* =============================================================================
   MISSION & VISION SECTION - ENHANCED STYLING
   ============================================================================= */

.mission-vision {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23003b6d" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
  opacity: 0.3;
  animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.mission-vision .container {
  position: relative;
  z-index: 2;
}

.mission-vision-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 59, 109, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  will-change: transform, box-shadow;
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 59, 109, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 153, 204, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.mission-vision-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 25px 25px 0 0;
}

.mission-vision-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 59, 109, 0.2);
  border-color: rgba(0, 59, 109, 0.3);
}

.mission-vision-card:hover::before {
  opacity: 1;
}

.mission-vision-card:hover::after {
  transform: scaleX(1);
}

/* Mission Card Specific Styling */
.mission-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.9) 100%);
  border-left: 6px solid var(--color-primary);
}

.mission-card::after {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0056b3 100%);
}

.mission-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%);
  border-left-color: var(--color-accent);
}

/* Vision Card Specific Styling */
.vision-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 255, 245, 0.9) 100%);
  border-left: 6px solid #28a745;
}

.vision-card::after {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.vision-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 255, 250, 0.95) 100%);
  border-left-color: #20c997;
}

/* Card Header Styling */
.card-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.card-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 59, 109, 0.1) 0%, rgba(102, 153, 204, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: var(--color-primary);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 59, 109, 0.2);
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.15) rotateY(180deg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: white;
  box-shadow: 0 25px 60px rgba(0, 59, 109, 0.4);
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1.15) rotateY(180deg); }
  50% { transform: scale(1.2) rotateY(180deg); }
}

.mission-vision-card:hover .card-icon::before {
  opacity: 1;
  animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: rotate(45deg) translateX(-200%); }
  100% { transform: rotate(45deg) translateX(200%); }
}

.mission-vision-card:hover .card-icon::after {
  opacity: 1;
}

.card-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.mission-vision-card:hover .card-title {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.card-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.mission-vision-card:hover .card-subtitle {
  color: var(--color-primary);
}

/* Card Content Styling */
.card-content {
  position: relative;
}

.card-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.mission-vision-card:hover .card-description {
  color: var(--color-text-primary);
}

/* Mission Objectives Styling */
.mission-objectives {
  list-style: none;
  padding: 0;
  margin: 0;
}

.objective-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 59, 109, 0.05);
  border-radius: 15px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.objective-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 59, 109, 0.1), rgba(102, 153, 204, 0.1));
  transition: width 0.5s ease;
}

.objective-item:hover {
  background: rgba(0, 59, 109, 0.12);
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 59, 109, 0.15);
  border-left-width: 6px;
}

.objective-item:hover::before {
  width: 100%;
}

.objective-item i {
  color: var(--color-primary);
  font-size: 1.3rem;
  min-width: 24px;
  transition: all 0.4s ease;
}

.objective-item:hover i {
  transform: scale(1.2) rotate(360deg);
  color: var(--color-accent);
}

.objective-item span {
  font-weight: 500;
  color: var(--color-text-primary);
  flex: 1;
}

/* Vision Pillars Styling */
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 18px;
  border-left: 6px solid #28a745;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pillar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
  transition: width 0.5s ease;
}

.pillar-item:hover {
  background: rgba(40, 167, 69, 0.12);
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
  border-left-width: 8px;
  border-left-color: #20c997;
}

.pillar-item:hover::before {
  width: 100%;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  min-width: 70px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.pillar-item:hover .pillar-icon {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
}

.pillar-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.pillar-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Impact Statement Styling */
.impact-statement {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.8) 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0, 59, 109, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.impact-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.impact-statement:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.impact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 59, 109, 0.3);
}

.impact-statement:hover .impact-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 15px 40px rgba(0, 59, 109, 0.4);
}

.impact-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.impact-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.impact-number {
  text-align: center;
}

.impact-number .number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 59, 109, 0.2);
}

.impact-number .label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}