/* ===================================
    About Page Styles
   =================================== */

/* Hero Section Override for About Page */
.hero-about .hero-content {
  text-align: center !important;
}

.hero-about .hero-title,
.hero-about .hero-subtitle {
  text-align: center !important;
}

/* Page Header */
.page-header {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0F3C 0%, #1a2570 50%, #0A0F3C 100%);
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  padding: 0;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: shimmer 8s ease-in-out infinite;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 160, 65, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: shimmer 6s ease-in-out infinite reverse;
}

.page-header-overlay {
  display: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center !important;
  color: var(--white);
  padding: var(--spacing-lg);
}

.page-header-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #E8C46A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 5px;
}

.page-header-subtitle {
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Titles with Gold Underline - Centered */
.section-title-centered {
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title-centered::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Other Section Titles */
.intro-section h2,
.intro-section h3,
.vmv-section h2,
.vmv-section h3 {
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.intro-section h2::after,
.intro-section h3::after,
.vmv-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

[dir="ltr"] .intro-section h2::after,
[dir="ltr"] .vmv-section h2::after,
[dir="ltr"] .values-section h2::after,
[dir="ltr"] .testimonials-section h2::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

/* For left-aligned titles */
.intro-section h2:not(.text-center)::after,
.intro-section h3::after {
  right: 0;
  transform: none;
}

[dir="ltr"] .intro-section h2:not(.text-center)::after,
[dir="ltr"] .intro-section h3::after {
  right: auto;
  left: 0;
}

/* Introduction Section */
.intro-section img {
  transition: transform var(--transition-slow) var(--easing);
}

.intro-section img:hover {
  transform: scale(1.02);
}

/* ===================================
   VMV Cards - Ultra Premium 3D Design
   =================================== */

.vmv-card-large {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 32px;
  padding: 3.5rem 3rem !important;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
  perspective: 1000px;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Animated Top Border */
.vmv-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #C8A041, #E8C46A, #F5D76E, #E8C46A, #C8A041);
  background-size: 200% 100%;
  z-index: 10;
  animation: gradientShift 3s ease infinite;
}

/* Radial Glow Effect */
.vmv-card-large::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.vmv-card-large:hover {
  transform: translateY(-25px) scale(1.05);
  box-shadow: 
    0 40px 80px rgba(232, 196, 106, 0.4),
    0 25px 50px rgba(0, 0, 0, 0.2),
    0 10px 20px rgba(232, 196, 106, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  border-color: rgba(232, 196, 106, 0.6);
  background: linear-gradient(145deg, #ffffff 0%, #fffef8 100%);
}

.vmv-card-large:hover::after {
  opacity: 1;
  width: 400px;
  height: 400px;
}

/* Icon Wrapper - Epic Design */
.vmv-card-large .icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem !important;
  background: linear-gradient(145deg, #fff9e6 0%, #fffef8 50%, #fff9e6 100%);
  box-shadow: 
    0 20px 45px rgba(232, 196, 106, 0.25),
    inset 0 -4px 12px rgba(200, 160, 65, 0.12),
    inset 0 4px 12px rgba(255, 255, 255, 0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Icon Rotating Shine */
.vmv-card-large .icon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.6) 90deg,
    transparent 180deg
  );
  animation: rotatingShine 3s linear infinite;
  opacity: 0;
}

.vmv-card-large:hover .icon-wrapper::before {
  opacity: 1;
}

.vmv-card-large .icon-wrapper i {
  font-size: 60px !important;
  background: linear-gradient(135deg, #C8A041 0%, #E8C46A 50%, #F5D76E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(232, 196, 106, 0.5));
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.vmv-card-large:hover .icon-wrapper {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 
    0 35px 70px rgba(232, 196, 106, 0.5),
    0 20px 40px rgba(232, 196, 106, 0.3),
    inset 0 -6px 18px rgba(200, 160, 65, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  background: linear-gradient(145deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%);
}

.vmv-card-large:hover .icon-wrapper i {
  filter: drop-shadow(0 8px 16px rgba(232, 196, 106, 0.8));
  animation: iconFloat 1.5s ease-in-out infinite;
  transform: scale(1.1);
}

/* Title Styling */
.vmv-card-large h3 {
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: var(--navy-blue);
  margin-bottom: 1.8rem !important;
  line-height: 1.3;
  transition: all 0.4s ease;
  position: relative;
}

.vmv-card-large h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-start), transparent);
  transition: width 0.5s ease;
  border-radius: 2px;
}

.vmv-card-large:hover h3 {
  color: var(--gold-start);
  transform: scale(1.08) translateY(-5px);
  text-shadow: 0 4px 12px rgba(232, 196, 106, 0.4);
}

.vmv-card-large:hover h3::after {
  width: 80%;
  height: 5px;
  box-shadow: 0 2px 8px rgba(232, 196, 106, 0.5);
}

/* Paragraph Styling */
.vmv-card-large p {
  font-size: 1.1rem !important;
  color: #666;
  line-height: 1.8 !important;
  margin-bottom: 0 !important;
  transition: all 0.4s ease;
  text-align: center !important;
}

.vmv-card-large:hover p {
  color: #333;
  transform: translateY(-3px);
  font-weight: 500;
}

/* ===================================
   Value Cards - Premium Design
   =================================== */

.value-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem !important;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
  perspective: 1000px;
  height: 100%;
  cursor: pointer;
}

/* Animated Border */
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0A0F3C, #1a2570, #4a5bb5, #1a2570, #0A0F3C);
  background-size: 200% 100%;
  z-index: 10;
  animation: gradientShift 4s ease infinite;
}

/* Glow Effect */
.value-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(26, 37, 112, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-20px) scale(1.04);
  box-shadow: 
    0 35px 70px rgba(26, 37, 112, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(26, 37, 112, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  border-color: rgba(26, 37, 112, 0.5);
  background: linear-gradient(145deg, #ffffff 0%, #f5f7ff 100%);
}

.value-card:hover::after {
  opacity: 1;
  width: 350px;
  height: 350px;
}

/* Icon Wrapper */
.value-card .icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem !important;
  background: linear-gradient(145deg, #e8eeff 0%, #f5f7ff 50%, #e8eeff 100%);
  box-shadow: 
    0 15px 35px rgba(26, 37, 112, 0.15),
    inset 0 -3px 10px rgba(26, 37, 112, 0.08),
    inset 0 3px 10px rgba(255, 255, 255, 0.9);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Icon Shine Effect */
.value-card .icon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.value-card:hover .icon-wrapper::before {
  opacity: 1;
  animation: shine 1.5s ease-in-out;
}

.value-card .icon-wrapper i {
  font-size: 48px !important;
  background: linear-gradient(135deg, #0A0F3C 0%, #1a2570 50%, #4a5bb5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(26, 37, 112, 0.4));
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover .icon-wrapper {
  transform: scale(1.12) translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(26, 37, 112, 0.4),
    0 15px 30px rgba(26, 37, 112, 0.25),
    inset 0 -4px 15px rgba(26, 37, 112, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  background: linear-gradient(145deg, #e8eeff 0%, #ffffff 50%, #e8eeff 100%);
}

.value-card:hover .icon-wrapper i {
  filter: drop-shadow(0 6px 14px rgba(26, 37, 112, 0.7));
  animation: iconPulse 0.8s ease-in-out infinite;
  transform: scale(1.1);
}

/* Title */
.value-card h4 {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: var(--navy-blue);
  margin-bottom: 1.2rem !important;
  line-height: 1.3;
  transition: all 0.3s ease;
  position: relative;
}

.value-card h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--navy-blue), transparent);
  transition: width 0.4s ease;
}

.value-card:hover h4 {
  color: #1a2570;
  transform: scale(1.08) translateY(-4px);
  text-shadow: 0 3px 10px rgba(26, 37, 112, 0.3);
}

.value-card:hover h4::after {
  width: 85%;
  height: 4px;
  box-shadow: 0 2px 6px rgba(26, 37, 112, 0.4);
}

/* Paragraph */
.value-card p {
  font-size: 1rem !important;
  color: #666;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  transition: all 0.4s ease;
}

.value-card:hover p {
  color: #333;
  transform: translateY(-2px);
  font-weight: 500;
}

/* ===================================
   Testimonial Cards - Elegant Design
   =================================== */

.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #fffef8 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem !important;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

/* Golden Border */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C8A041, #E8C46A, #F5D76E, #E8C46A, #C8A041);
  background-size: 200% 100%;
  z-index: 10;
  animation: gradientShift 3s ease infinite;
}

/* Glow Effect */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-20px) scale(1.04);
  box-shadow: 
    0 35px 70px rgba(232, 196, 106, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(232, 196, 106, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  border-color: rgba(232, 196, 106, 0.6);
  background: linear-gradient(145deg, #ffffff 0%, #fffef5 100%);
}

.testimonial-card:hover::after {
  opacity: 1;
  width: 350px;
  height: 350px;
}

/* Quote Icon */
.quote-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem !important;
  background: linear-gradient(145deg, #fff9e6 0%, #fffef8 50%, #fff9e6 100%);
  box-shadow: 
    0 12px 28px rgba(232, 196, 106, 0.2),
    inset 0 -2px 8px rgba(200, 160, 65, 0.1),
    inset 0 2px 8px rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Quote Icon Shine */
.quote-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.testimonial-card:hover .quote-icon::before {
  opacity: 1;
  animation: shine 1.5s ease-in-out;
}

.quote-icon i {
  font-size: 40px !important;
  background: linear-gradient(135deg, #C8A041 0%, #E8C46A 50%, #F5D76E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(232, 196, 106, 0.4));
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.12) translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(232, 196, 106, 0.45),
    0 15px 30px rgba(232, 196, 106, 0.3),
    inset 0 -4px 15px rgba(200, 160, 65, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  background: linear-gradient(145deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%);
}

.testimonial-card:hover .quote-icon i {
  filter: drop-shadow(0 6px 14px rgba(232, 196, 106, 0.8));
  animation: iconPulse 0.8s ease-in-out infinite;
  transform: scale(1.1);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.1rem !important;
  color: #555 !important;
  line-height: 1.8 !important;
  font-style: italic;
  text-align: center !important;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.testimonial-card:hover .testimonial-text {
  color: #222 !important;
  transform: translateY(-3px);
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes rotatingShine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shine {
  0% {
    left: -100%;
    top: -100%;
  }
  100% {
    left: 100%;
    top: 100%;
  }
}

.testimonials-section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.testimonials-section h2 {
  color: var(--navy-blue);
  margin-bottom: 3.5rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.testimonial-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  text-align: center;
}

/* ===================================
   Responsive Adjustments
   =================================== */

@media (max-width: 991px) {
  .page-header {
    min-height: 50vh;
  }

  .page-header-title {
    font-size: 40px;
  }

  .page-header-subtitle {
    font-size: 22px;
  }

  /* Cards Responsive */
  .vmv-card-large {
    padding: 3rem 2.5rem !important;
  }

  .vmv-card-large .icon-wrapper {
    width: 110px;
    height: 110px;
  }

  .vmv-card-large .icon-wrapper i {
    font-size: 55px !important;
  }

  .vmv-card-large h3 {
    font-size: 1.8rem !important;
  }

  .vmv-card-large p {
    font-size: 1.05rem !important;
  }

  .value-card {
    padding: 2.5rem 2rem !important;
  }

  .value-card .icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .value-card .icon-wrapper i {
    font-size: 44px !important;
  }

  .value-card h4 {
    font-size: 1.4rem !important;
  }

  .testimonial-card {
    padding: 2.5rem 2rem !important;
  }

  .quote-icon {
    width: 75px;
    height: 75px;
  }

  .quote-icon i {
    font-size: 36px !important;
  }

  .testimonial-text {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 767px) {
  .page-header {
    min-height: 45vh;
  }

  .page-header-title {
    font-size: 32px;
  }

  .page-header-subtitle {
    font-size: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Cards Mobile */
  .vmv-card-large {
    padding: 2.5rem 2rem !important;
  }

  .vmv-card-large .icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .vmv-card-large .icon-wrapper i {
    font-size: 50px !important;
  }

  .vmv-card-large h3 {
    font-size: 1.6rem !important;
    margin-bottom: 1.5rem !important;
  }

  .vmv-card-large p {
    font-size: 1rem !important;
  }

  .value-card {
    padding: 2.2rem 1.8rem !important;
  }

  .value-card .icon-wrapper {
    width: 85px;
    height: 85px;
  }

  .value-card .icon-wrapper i {
    font-size: 40px !important;
  }

  .value-card h4 {
    font-size: 1.3rem !important;
  }

  .value-card p {
    font-size: 0.95rem !important;
  }

  .testimonial-card {
    padding: 2.2rem 1.8rem !important;
  }

  .quote-icon {
    width: 70px;
    height: 70px;
  }

  .quote-icon i {
    font-size: 34px !important;
  }

  .testimonial-text {
    font-size: 1rem !important;
  }
}

@media (max-width: 575px) {
  .page-header {
    min-height: 50vh;
  }

  .page-header-title {
    font-size: 26px;
  }

  .page-header-subtitle {
    font-size: 18px;
  }

  /* Extra Small Cards */
  .vmv-card-large {
    padding: 2rem 1.5rem !important;
  }

  .vmv-card-large .icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .vmv-card-large .icon-wrapper i {
    font-size: 45px !important;
  }

  .vmv-card-large h3 {
    font-size: 1.4rem !important;
    margin-bottom: 1.2rem !important;
  }

  .vmv-card-large p {
    font-size: 0.95rem !important;
  }

  .value-card {
    padding: 2rem 1.5rem !important;
  }

  .value-card .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .value-card .icon-wrapper i {
    font-size: 36px !important;
  }

  .value-card h4 {
    font-size: 1.2rem !important;
  }

  .value-card p {
    font-size: 0.9rem !important;
  }

  .testimonial-card {
    padding: 2rem 1.5rem !important;
  }

  .quote-icon {
    width: 65px;
    height: 65px;
  }

  .quote-icon i {
    font-size: 30px !important;
  }

  .testimonial-text {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 991px) {
  .intro-section .col-lg-6:first-child {
    margin-bottom: 2rem;
  }
}

/* RTL Specific Styles */
[dir="rtl"] .intro-section img {
  margin-left: 0;
  margin-right: 0;
}

/* Journey and History Section */
.journey-history-section {
  padding: 3rem 0 !important;
}

.sticky-image {
  position: sticky;
  top: 100px;
  transition: transform var(--transition-slow) var(--easing);
}

.sticky-image:hover {
  transform: scale(1.02);
}

.vertical-timeline {
  position: relative;
  padding-right: 20px;
  border-right: 4px solid var(--gold-start);
}

[dir="ltr"] .vertical-timeline {
  padding-right: 0;
  padding-left: 20px;
  border-right: none;
  border-left: 4px solid var(--gold-start);
}

.timeline-section {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-section:last-child {
  margin-bottom: 0;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.timeline-line-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
  position: absolute;
  right: -30px;
  box-shadow: 0 2px 8px rgba(200, 160, 65, 0.4);
  margin-top: 42px;
}

[dir="ltr"] .timeline-line-dot {
  right: auto;
  left: -30px;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-blue);
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
}

.timeline-header::after {
  content: '';
  position: absolute;
  top: 110%;
  right: -15px;
  width: 80px;
  height: 3.5px;
  background: var(--gold-gradient);
  transform: translateY(-50%);
}

[dir="ltr"] .timeline-header::after {
  right: auto;
  left: -20px;
}

.timeline-text {
  padding-right: 0;
}

.timeline-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

.timeline-connector {
  height: 30px;
}

/* Responsive Timeline */
@media (max-width: 991px) {
  .sticky-image {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .timeline-connector {
    height: 25px;
  }
}

@media (max-width: 767px) {
  .vertical-timeline {
    padding-right: 15px;
    border-right-width: 3px;
  }
  
  [dir="ltr"] .vertical-timeline {
    padding-right: 0;
    padding-left: 15px;
    border-left-width: 3px;
  }
  
  .timeline-line-dot {
    width: 12px;
    height: 12px;
    right: -23px;
  }
  
  [dir="ltr"] .timeline-line-dot {
    right: auto;
    left: -23px;
  }
  
  .timeline-title {
    font-size: 1.3rem;
  }
  
  .timeline-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .timeline-connector {
    height: 20px;
  }
  
  .timeline-section {
    margin-bottom: 1rem;
  }
}

/* Journey Section */
.journey-section {
  background: var(--white);
}

.journey-content {
  max-width: 900px;
  margin: 0 auto;
}

.journey-section .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--navy-blue);
}

.journey-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* VMV Card Large - Removed */

/* Values Intro */
.values-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Goals Section - Removed */
.goals-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
}

/* Advantages Detail Section - Removed */
.advantages-detail-section {
  background: #f8f9fa;
}

.advantage-number {
  position: absolute;
  top: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(200, 160, 65, 0.15);
  line-height: 1;
  z-index: 1;
}

[dir="rtl"] .advantage-number {
  right: 20px;
}

[dir="ltr"] .advantage-number {
  left: 20px;
}

/* Animation on Scroll - Only for content, not sections */
.fade-in-up:not(section) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure sections are always visible */
section.fade-in-up,
section.animate-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}