/* About Us Page Professional Design - Weblinx Solutions LLC */
body.about-page {
  overflow-x: hidden;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
  max-width: 1920px;
}

.about-main {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  /* margin-top handled by hero.css responsive rules — no inline override needed */
}

/* Modern Hero Section with Enhanced Design */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0 80px;
}

/* Animated Background */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(12, 51, 101, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: patternSlide 60s linear infinite;
}

@keyframes patternSlide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

/* Enhanced Floating Decorative Elements */
.about-hero-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.about-deco-circle-1 {
  display: none;
}

.about-deco-circle-1 .deco-inner {
  display: none;
}

.about-deco-circle-2 {
  display: none;
}

.about-deco-circle-2 .deco-inner {
  display: none;
}

.about-deco-square {
  top: 20%;
  right: 10%;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(12, 51, 101, 0.15);
  border-radius: 30px;
  transform: rotate(15deg);
  animation: floatRotate 28s ease-in-out infinite;
}

.about-deco-square .deco-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 2px solid rgba(12, 51, 101, 0.2);
  border-radius: 15px;
  animation: rotateSlow 20s linear infinite reverse;
}

.about-deco-triangle {
  top: 50%;
  right: 5%;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(118, 75, 162, 0.08);
  animation: floatComplex 22s ease-in-out infinite;
}

.about-deco-dots {
  bottom: 25%;
  right: 15%;
  width: 100px;
  height: 100px;
  background-image: 
    radial-gradient(circle, rgba(12, 51, 101, 0.25) 3px, transparent 3px);
  background-size: 20px 20px;
  animation: floatComplex 18s ease-in-out infinite, fadeInOut 5s ease-in-out infinite;
}

.about-deco-line-1 {
  display: none;
}

.about-deco-line-2 {
  display: none;
}

/* Enhanced Animation Keyframes */
@keyframes floatComplex {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
  }
  25% { 
    transform: translate(20px, -30px) scale(1.05); 
  }
  50% { 
    transform: translate(-15px, -20px) scale(0.95); 
  }
  75% { 
    transform: translate(15px, -35px) scale(1.08); 
  }
}

@keyframes floatRotate {
  0%, 100% { 
    transform: rotate(15deg) translateY(0); 
  }
  50% { 
    transform: rotate(195deg) translateY(-30px); 
  }
}

@keyframes rotateSlow {
  0% { 
    transform: translate(-50%, -50%) rotate(0deg); 
  }
  100% { 
    transform: translate(-50%, -50%) rotate(360deg); 
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 0.6;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2); 
    opacity: 1;
  }
}

@keyframes lineSlide {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(0) rotate(-45deg);
  }
  50% {
    opacity: 0.8;
    transform: translateX(30px) rotate(-45deg);
  }
}

@keyframes fadeInOut {
  0%, 100% { 
    opacity: 0.6; 
  }
  50% { 
    opacity: 1; 
  }
}

/* Hero Content */
.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text {
  color: #1f2937;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.08), rgba(118, 75, 162, 0.08));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(12, 51, 101, 0.2);
  border-radius: 50px;
  color: #0C3365;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  animation: fadeInDown 0.6s ease-out;
}

.about-hero-badge .badge-icon {
  width: 32px;
  height: 32px;
  background: #0C3365;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  animation: none;
}

@keyframes iconRotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

.about-hero-badge .badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: none;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.about-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
  color: #1f2937;
}

.about-hero-title .title-line {
  display: block;
  background: #0C3365;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out backwards;
}

.about-hero-title .title-line:first-child {
  animation-delay: 0.2s;
}

.about-hero-title .title-line:last-child {
  animation-delay: 0.4s;
}

.about-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  max-width: 550px;
}

.about-hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary {
  background: #0C3365;
  color: #ffffff;
}

.btn-hero-primary .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(12, 51, 101, 0.4);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-hero-secondary {
  background: transparent;
  color: #0C3365;
  border-color: rgba(12, 51, 101, 0.3);
}

.btn-hero-secondary:hover {
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1), rgba(118, 75, 162, 0.1));
  border-color: #0C3365;
  transform: translateY(-4px) scale(1.05);
  color: #0C3365;
  box-shadow: 0 10px 25px rgba(12, 51, 101, 0.2);
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.05), rgba(118, 75, 162, 0.05));
  border: 2px solid rgba(12, 51, 101, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0C3365;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-stat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(12, 51, 101, 0.3);
  box-shadow: 0 15px 35px rgba(12, 51, 101, 0.15);
}

.about-stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: #0C3365;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.about-stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #0C3365;
  display: block;
  margin-bottom: 2px;
  position: relative;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Image Side with Enhanced Design */
.about-hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}

.image-decoration-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 35px;
  z-index: -1;
  animation: decorationPulse 8s ease-in-out infinite;
}

@keyframes decorationPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    opacity: 1;
  }
}

.about-hero-img-main {
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  display: block;
  box-shadow: 0 25px 60px rgba(12, 51, 101, 0.2);
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .about-hero-img-main {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.overlay-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(12, 51, 101, 0.2);
  border-radius: 20px;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overlay-card i {
  font-size: 1.8rem;
  color: #0C3365;
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.overlay-card span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
}

.image-decoration-1 {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: #0C3365;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
  animation: decorationFloat 10s ease-in-out infinite;
}

.image-decoration-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(12, 51, 101, 0.2);
  border-radius: 30px;
  z-index: 1;
  transform: rotate(15deg);
  animation: decorationFloat 12s ease-in-out infinite reverse;
}

.image-decoration-3 {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: decorationFloat 8s ease-in-out infinite;
}

@keyframes decorationFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Story Section */
.about-story-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}



.about-story-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1), rgba(118, 75, 162, 0.1));
  color: #0C3365;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(12, 51, 101, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text {
  position: relative;
}

.story-text::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 50%;
  z-index: -1;
}

.story-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
}

.story-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: calc(100% - 20px);
  background: #0C3365;
  border-radius: 2px;
}

.story-text p:first-of-type {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.story-highlight-item {
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.05), rgba(118, 75, 162, 0.05));
  border: 2px solid rgba(12, 51, 101, 0.15);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.story-highlight-item:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 51, 101, 0.3);
}

.story-highlight-item i {
  font-size: 1.8rem;
  color: #0C3365;
  margin-bottom: 10px;
  display: block;
}

.story-highlight-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.story-highlight-item p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  padding: 0;
}

.story-highlight-item p::before {
  display: none;
}

.story-image {
  position: relative;
}

.story-image-main {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.story-image-main img {
  width: 100%;
  border-radius: 30px;
  transition: transform 0.6s ease;
}

.story-image:hover .story-image-main img {
  transform: scale(1.05);
}

.story-image-decoration-1 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: #0C3365;
  border-radius: 30px;
  z-index: -1;
  opacity: 0.2;
}

.story-image-decoration-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  border: 4px solid rgba(12, 51, 101, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.story-stats-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  justify-content: space-around;
  border: 2px solid rgba(12, 51, 101, 0.1);
}

.story-stat {
  text-align: center;
}

.story-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0C3365;
  display: block;
  margin-bottom: 5px;
}

.story-stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
}

/* Values Section */
.about-values-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.about-values-section .container {
  position: relative;
  z-index: 1;
}

.value-card {
  background: #ffffff;
  border: 2px solid rgba(12, 51, 101, 0.15);
  border-radius: 24px;
  padding: 40px 35px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0C3365;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 51, 101, 0.4);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1), rgba(118, 75, 162, 0.1));
  border: 2px solid rgba(12, 51, 101, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: #0C3365;
  transform: scale(1.1) rotate(-5deg);
  border-color: transparent;
}

.value-icon i {
  font-size: 2.5rem;
  color: #0C3365;
  transition: color 0.4s ease;
}

.value-card:hover .value-icon i {
  color: #ffffff;
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.value-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Mission Vision Section */
.about-mission-section {
  background: #ffffff;
  padding: 100px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  background: #0C3365;
  border-radius: 30px;
  padding: 50px 45px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}



.vision-card {
  background: #f9fafb;
  border: 2px solid rgba(12, 51, 101, 0.15);
  border-radius: 30px;
  padding: 50px 45px;
  position: relative;
  overflow: hidden;
}



.mission-icon,
.vision-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.mission-icon {
  background: rgba(255, 255, 255, 0.2);
}

.vision-icon {
  background: rgba(12, 51, 101, 0.1);
}

.mission-icon i {
  font-size: 2.2rem;
  color: #ffffff;
}

.vision-icon i {
  font-size: 2.2rem;
  color: #0C3365;
}

.mission-title,
.vision-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mission-title {
  color: #ffffff;
}

.vision-title {
  color: #1f2937;
}

.mission-text,
.vision-text {
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.mission-text {
  color: rgba(255, 255, 255, 0.95);
}

.vision-text {
  color: #4b5563;
}

/* Team Section */
.about-team-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 100px 0;
}

.team-member {
  text-align: center;
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 20px;
}

.team-image img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 51, 101, 0.9) 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.team-member:hover .team-overlay {
  transform: translateY(0);
}

.team-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #ffffff;
  color: #0C3365;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.95rem;
  color: #0C3365;
  font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-content,
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-deco-square,
  .about-deco-triangle,
  .about-deco-line-1,
  .about-deco-line-2 {
    display: none;
  }

  .about-hero-img-main {
    max-height: 320px;
    object-fit: cover;
  }

  .hero-image-wrapper {
    max-width: 80%;
    margin: 0 auto;
  }

  .story-image-main img {
    max-height: 280px;
    object-fit: cover;
  }

  .team-image img {
    max-height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 60px 0 45px;
  }

  .about-hero-badge {
    font-size: 0.8rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }

  .about-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .about-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 10px;
  }

  .about-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 15px 28px;
    font-size: 0.95rem;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 35px;
  }

  .about-stat-item {
    padding: 16px 18px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .about-stat-number {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .about-stat-label {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .value-card,
  .mission-card,
  .vision-card {
    padding: 30px 22px;
    margin-bottom: 20px;
  }

  .value-icon,
  .mission-icon,
  .vision-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .value-icon i,
  .mission-icon i,
  .vision-icon i {
    font-size: 1.8rem;
  }

  .value-title,
  .mission-title,
  .vision-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .value-description,
  .mission-description,
  .vision-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-deco-circle-1,
  .about-deco-circle-2,
  .about-deco-dots {
    display: none;
  }

  .image-overlay {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .overlay-card {
    padding: 14px 18px;
  }

  .overlay-card span {
    font-size: 0.9rem;
  }

  .overlay-card i {
    font-size: 1.3rem;
  }

  .team-member-card {
    margin-bottom: 25px;
  }

  .team-member-info {
    padding: 24px 20px;
  }

  .team-member-name {
    font-size: 1.15rem;
  }

  .team-member-role {
    font-size: 0.9rem;
  }

  .team-member-bio {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 50px 0 40px;
  }

  .about-hero-badge {
    font-size: 0.75rem;
    padding: 7px 16px;
  }

  .about-hero-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .about-hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding: 0 5px;
  }

  .about-hero-buttons {
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .about-hero-stats {
    gap: 12px;
    margin-top: 30px;
  }

  .about-stat-item {
    padding: 14px 16px;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .about-stat-number {
    font-size: 1.4rem;
  }

  .about-stat-label {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .value-card,
  .mission-card,
  .vision-card {
    padding: 26px 20px;
  }

  .value-icon,
  .mission-icon,
  .vision-icon {
    width: 55px;
    height: 55px;
  }

  .value-icon i,
  .mission-icon i,
  .vision-icon i {
    font-size: 1.6rem;
  }

  .value-title,
  .mission-title,
  .vision-title {
    font-size: 1.1rem;
  }

  .value-description,
  .mission-description,
  .vision-description {
    font-size: 0.85rem;
  }

  .overlay-card {
    padding: 12px 16px;
  }

  .overlay-card span {
    font-size: 0.85rem;
  }

  .team-member-info {
    padding: 20px 18px;
  }

  .team-member-name {
    font-size: 1.05rem;
  }

  .team-member-role {
    font-size: 0.85rem;
  }

  .team-member-bio {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .about-hero-title {
    font-size: 1.4rem;
  }

  .about-hero-description {
    font-size: 0.9rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 13px 20px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .value-card,
  .mission-card,
  .vision-card {
    padding: 22px 18px;
  }
}

/* Timeline Section */
.about-timeline-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.about-timeline-section .container {
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #0C3365;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: #ffffff;
  border: 2px solid rgba(12, 51, 101, 0.15);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 51, 101, 0.4);
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #0C3365;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  border: 5px solid #ffffff;
  z-index: 2;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.timeline-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Achievements Section */
.about-achievements-section {
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.85) 0%, rgba(157, 76, 243, 0.85) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-achievements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}



.about-achievements-section .container {
  position: relative;
  z-index: 1;
}

.about-achievements-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.about-achievements-section .section-title {
  color: #ffffff;
}

.about-achievements-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.achievement-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.achievement-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.achievement-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.achievement-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Why Choose Us Section */
.about-why-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.why-feature {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  align-items: flex-start;
  padding: 25px;
  border: 2px solid rgba(12, 51, 101, 0.15);
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.why-feature:hover {
  border-color: rgba(12, 51, 101, 0.4);
  box-shadow: 0 8px 20px rgba(12, 51, 101, 0.1);
  transform: translateY(-3px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(12, 51, 101, 0.2);
}

.why-icon i {
  font-size: 1.8rem;
  color: #0C3365;
}

.why-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.why-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.about-cta-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border: 3px dashed rgba(12, 51, 101, 0.08);
  border-radius: 50%;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 35px;
  border: 3px solid rgba(12, 51, 101, 0.2);
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-cta-description {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 35px;
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-cta-primary {
  background: #0C3365;
  color: #ffffff;
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  color: #ffffff;
}

.btn-cta-secondary {
  background: transparent;
  color: #0C3365;
  border-color: rgba(12, 51, 101, 0.5);
}

.btn-cta-secondary:hover {
  background: rgba(12, 51, 101, 0.05);
  border-color: #0C3365;
  transform: translateY(-4px);
  color: #0C3365;
}

/* Responsive Updates */
@media (max-width: 991px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 100px;
  }

  .timeline-year {
    left: 30px;
  }

  .why-feature {
    flex-direction: column;
    text-align: center;
  }

  .why-icon {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about-cta-content {
    padding: 50px 30px;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    padding: 25px 20px;
  }

  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}


/* ============================================================
   Milestones Timeline � Entrance Transition
   ============================================================ */

.about-timeline-section .timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.about-timeline-section .timeline-item.timeline-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each item */
.about-timeline-section .timeline-item:nth-child(1) { transition-delay: 0s; }
.about-timeline-section .timeline-item:nth-child(2) { transition-delay: 0.12s; }
.about-timeline-section .timeline-item:nth-child(3) { transition-delay: 0.24s; }
.about-timeline-section .timeline-item:nth-child(4) { transition-delay: 0.36s; }
.about-timeline-section .timeline-item:nth-child(5) { transition-delay: 0.48s; }




/* ============================================================
   ABOUT HERO — VISUAL PANEL (replaces image)
   ============================================================ */
.about-visual-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated background orbs */
.avp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.18;
  animation: avpFloat 8s ease-in-out infinite;
}
.avp-orb--1 {
  width: 220px; height: 220px;
  background: #0C3365;
  top: 0; left: 0;
  animation-delay: 0s;
}
.avp-orb--2 {
  width: 180px; height: 180px;
  background: #1a5fb0;
  bottom: 0; right: 0;
  animation-delay: 2.5s;
}
.avp-orb--3 {
  width: 140px; height: 140px;
  background: #6b46c1;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  animation-delay: 5s;
}
@keyframes avpFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.08); }
}

/* Central ring */
.avp-ring {
  position: relative;
  z-index: 4;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C3365 0%, #1a5fb0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(12, 51, 101, 0.35);
  animation: avpPulseRing 3s ease-in-out infinite;
}
.avp-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(12, 51, 101, 0.25);
  animation: avpRotate 20s linear infinite;
}
.avp-ring::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1.5px dashed rgba(12, 51, 101, 0.12);
  animation: avpRotate 35s linear infinite reverse;
}
@keyframes avpPulseRing {
  0%, 100% { box-shadow: 0 12px 40px rgba(12, 51, 101, 0.35); }
  50%       { box-shadow: 0 20px 60px rgba(12, 51, 101, 0.50); }
}
@keyframes avpRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.avp-ring-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
}
.avp-ring-icon { font-size: 2rem; }
.avp-ring-inner span { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-align: center; }

/* Metric cards */
.avp-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(12, 51, 101, 0.12);
  border: 1px solid rgba(12, 51, 101, 0.08);
  white-space: nowrap;
  animation: avpCardFloat 6s ease-in-out infinite;
}
.avp-card--1 { top: 6%;  left: -2%;  animation-delay: 0s; }
.avp-card--2 { top: 6%;  right: -2%; animation-delay: 1.5s; }
.avp-card--3 { bottom: 6%; left: -2%; animation-delay: 3s; }
.avp-card--4 { bottom: 6%; right: -2%; animation-delay: 4.5s; }

@keyframes avpCardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.avp-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0C3365, #1a5fb0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.avp-card-body { display: flex; flex-direction: column; gap: 1px; }
.avp-card-body strong { font-size: 15px; font-weight: 800; color: #0f172a; line-height: 1; }
.avp-card-body span   { font-size: 11px; color: #64748b; font-weight: 500; }

/* Connection lines */
.avp-line {
  position: absolute;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(12, 51, 101, 0.18), transparent);
  height: 1px;
  transform-origin: center;
  animation: avpLineFade 4s ease-in-out infinite;
}
.avp-line--1 { width: 35%; top: 20%;  left: 14%;  transform: rotate(-25deg); animation-delay: 0s; }
.avp-line--2 { width: 35%; top: 20%;  right: 14%; transform: rotate(25deg);  animation-delay: 1s; }
.avp-line--3 { width: 35%; bottom: 20%; left: 14%;  transform: rotate(25deg);  animation-delay: 2s; }
.avp-line--4 { width: 35%; bottom: 20%; right: 14%; transform: rotate(-25deg); animation-delay: 3s; }
@keyframes avpLineFade {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
  .about-visual-panel { max-width: 380px; }
  .avp-ring { width: 110px; height: 110px; }
  .avp-ring-icon { font-size: 1.6rem; }
  .avp-card { padding: 10px 12px; gap: 8px; }
  .avp-card-body strong { font-size: 13px; }
  .avp-card-body span   { font-size: 10px; }
}
@media (max-width: 767px) {
  .about-visual-panel { max-width: 320px; margin-top: 30px; }
}

/* ============================================================
   ABOUT HERO — DASHBOARD CARD VISUAL
   ============================================================ */
.ahu-visual {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(12, 51, 101, 0.10), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* --- Profile header --- */
.ahu-card--profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #0C3365;
  gap: 12px;
}
.ahu-profile-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ahu-logo-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.ahu-company-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px;
}
.ahu-company-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.ahu-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.ahu-verified i { color: #60d394; }

/* --- Stats row --- */
.ahu-stats-row {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f3f8;
  gap: 0;
}
.ahu-stat {
  flex: 1;
  text-align: center;
}
.ahu-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #0C3365;
  line-height: 1;
  margin-bottom: 3px;
}
.ahu-stat strong span {
  font-size: 14px;
  font-weight: 600;
}
.ahu-stat > span {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ahu-stat-divider {
  width: 1px;
  height: 36px;
  background: #e8edf5;
  flex-shrink: 0;
}

/* --- Services with progress bars --- */
.ahu-services {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f3f8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ahu-services-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 4px;
}
.ahu-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ahu-svc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ahu-svc-dot--1 { background: #0C3365; }
.ahu-svc-dot--2 { background: #1a5fb0; }
.ahu-svc-dot--3 { background: #6b46c1; }
.ahu-svc-dot--4 { background: #0891b2; }

.ahu-svc-bar {
  flex: 1;
  height: 6px;
  background: #f0f3f8;
  border-radius: 3px;
  overflow: hidden;
}
.ahu-svc-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #0C3365, #1a5fb0);
  animation: ahuBarGrow 1.2s cubic-bezier(0.4,0,0.2,1) both;
  animation-delay: 0.4s;
}
@keyframes ahuBarGrow {
  from { width: 0 !important; }
}
.ahu-svc-name {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
  min-width: 150px;
}
.ahu-svc-pct {
  font-size: 12px;
  font-weight: 700;
  color: #0C3365;
  min-width: 30px;
  text-align: right;
}

/* --- Markets footer --- */
.ahu-markets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.ahu-market-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  flex-shrink: 0;
}
.ahu-market-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ahu-market-tags span {
  font-size: 11px;
  font-weight: 600;
  color: #0C3365;
  background: rgba(12,51,101,0.06);
  border: 1px solid rgba(12,51,101,0.12);
  border-radius: 50px;
  padding: 4px 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .ahu-visual { max-width: 100%; }
  .ahu-svc-name { min-width: 120px; font-size: 11px; }
}
@media (max-width: 767px) {
  .ahu-visual { margin-top: 32px; }
  .ahu-stat strong { font-size: 18px; }
}
