/* ========================================
   ABOUT US PAGE CSS FIXES
   ======================================== */

/* ===== REMOVE ALL HOVER MOVEMENT EFFECTS (ALL RESOLUTIONS) ===== */

/* Remove transform on all cards */
.feature-box:hover,
.service-card:hover,
.package-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.info-card:hover,
.method-item:hover,
.transport-item:hover,
.trust-badge:hover,
.team-member:hover,
.member-card:hover,
.stat-card:hover,
.value-card:hover,
.milestone-card:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Remove transform on all buttons */
.aboutus-page .btn:hover,
.aboutus-page .btn-primary:hover,
.aboutus-page .btn-secondary:hover,
.aboutus-page .btn-outline:hover,
.aboutus-page .cta-btn:hover,
.aboutus-page button:hover,
.aboutus-page a.btn:hover,
.aboutus-page .cta-buttons .btn:hover,
.aboutus-page .action-buttons a:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Remove shadow and animation effects */
.aboutus-page .btn,
.aboutus-page .btn-primary,
.aboutus-page .btn-secondary,
.aboutus-page .btn-outline,
.aboutus-page button,
.aboutus-page a.btn {
  box-shadow: none !important;
  animation: none !important;
}

.aboutus-page .btn:hover,
.aboutus-page .btn-primary:hover,
.aboutus-page .btn-secondary:hover,
.aboutus-page .btn-outline:hover,
.aboutus-page button:hover,
.aboutus-page a.btn:hover {
  box-shadow: none !important;
  animation: none !important;
}

/* Remove ::before pseudo-element effects on buttons */
.aboutus-page .btn::before,
.aboutus-page .btn-primary::before,
.aboutus-page .btn-secondary::before,
.aboutus-page .btn-outline::before,
.aboutus-page button::before {
  display: none !important;
}

/* Keep only subtle icon effects */
.aboutus-page .btn:hover i,
.aboutus-page .btn-primary:hover i,
.aboutus-page .btn-secondary:hover i {
  transform: scale(1.05) !important;
}

/* ===== MOBILE VIEW - HERO SECTION BUTTON FIXES ===== */
@media (max-width: 768px) {
  /* Fix hero content alignment */
  .aboutus-page .hero-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  /* Center and space the intro text */
  .aboutus-page .hero-intro-text {
    text-align: center !important;
    margin-bottom: 15px !important;
  }
  
  /* Center the heading */
  .aboutus-page .hero-heading {
    text-align: center !important;
    margin-bottom: 35px !important;
  }
  
  /* Specifically target "Get Started Free" button using ID */
  #aboutus-hero-cta-btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
    max-width: 200px !important;
    width: auto !important;
    height: auto !important;
    min-height: 44px !important;
    line-height: 1.3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 35px !important;
    border-radius: 50px !important;
  }
  
  /* Make the button text proper size */
  #aboutus-hero-cta-btn span {
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
  }
  
  /* Make the button SVG/icon proper size */
  #aboutus-hero-cta-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  /* Remove hover effects */
  #aboutus-hero-cta-btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Space the feature boxes below button */
  .aboutus-page .hero-feature-boxes {
    margin-top: 0 !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  /* Hide the 3rd feature box (Unlimited Scale) in mobile */
  .aboutus-page .hero-feature-box:nth-child(3) {
    display: none !important;
  }
  
  /* Make hero section buttons smaller */
  .aboutus-page .about .about-content .cta-buttons .btn,
  .aboutus-page .about .cta-buttons .btn,
  .aboutus-page .hero-section .cta-buttons .btn,
  .aboutus-page .about-hero .cta-buttons .btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    width: auto !important;
    max-width: 48% !important;
    display: inline-flex !important;
    line-height: 1.2 !important;
    min-height: auto !important;
  }
  
  /* Make button container flex for side-by-side layout */
  .aboutus-page .about .about-content .cta-buttons,
  .aboutus-page .about .cta-buttons,
  .aboutus-page .hero-section .cta-buttons,
  .aboutus-page .about-hero .cta-buttons {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  
  /* Ensure no transform on mobile */
  .aboutus-page .about .about-content .cta-buttons .btn:hover,
  .aboutus-page .about .cta-buttons .btn:hover,
  .aboutus-page .hero-section .cta-buttons .btn:hover,
  .aboutus-page .about-hero .cta-buttons .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Make button icons smaller */
  .aboutus-page .about .about-content .cta-buttons .btn i,
  .aboutus-page .about .cta-buttons .btn i,
  .aboutus-page .hero-section .cta-buttons .btn i,
  .aboutus-page .about-hero .cta-buttons .btn i {
    font-size: 12px !important;
  }
  
  /* Extra small for primary button icon */
  .aboutus-page .about .about-content .cta-buttons .btn-primary i,
  .aboutus-page .about .cta-buttons .btn-primary i,
  .aboutus-page .hero-section .cta-buttons .btn-primary i,
  .aboutus-page .about-hero .cta-buttons .btn-primary i {
    font-size: 11px !important;
  }
}

/* ===== TABLET VIEW - BUTTON FIXES ===== */
@media (min-width: 769px) and (max-width: 991px) {
  /* Slightly smaller buttons in tablet */
  .aboutus-page .about .about-content .cta-buttons .btn,
  .aboutus-page .about .cta-buttons .btn,
  .aboutus-page .hero-section .cta-buttons .btn,
  .aboutus-page .about-hero .cta-buttons .btn {
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
  
  /* No transform on tablet */
  .aboutus-page .about .about-content .cta-buttons .btn:hover,
  .aboutus-page .about .cta-buttons .btn:hover,
  .aboutus-page .hero-section .cta-buttons .btn:hover,
  .aboutus-page .about-hero .cta-buttons .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* ===== DESKTOP VIEW - REMOVE HOVER EFFECTS ===== */
@media (min-width: 992px) {
  /* Remove transform on desktop too */
  .aboutus-page .about .about-content .cta-buttons .btn:hover,
  .aboutus-page .about .cta-buttons .btn:hover,
  .aboutus-page .hero-section .cta-buttons .btn:hover,
  .aboutus-page .about-hero .cta-buttons .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* ===== REMOVE ALL ANIMATIONS ON SPECIFIC ELEMENTS ===== */
.float-animation,
[data-aos],
.feature-box,
.service-card,
.package-card,
.team-member,
.member-card {
  animation: none !important;
  -webkit-animation: none !important;
}

/* ===== ADDITIONAL FIXES FOR ABOUT US PAGE ===== */

/* Team member cards - no movement */
.team-member:hover,
.member-card:hover {
  transform: none !important;
}

/* Stats cards - no movement */
.stat-card:hover,
.stats-item:hover {
  transform: none !important;
}

/* Value/milestone cards - no movement */
.value-card:hover,
.milestone-card:hover,
.timeline-item:hover {
  transform: none !important;
}

/* Social links - no movement */
.social-link:hover,
.social-links a:hover {
  transform: none !important;
}

/* Images - only subtle scale, no translateY */
.about-image img:hover,
.team-image img:hover,
.gallery-image img:hover {
  transform: scale(1.02) !important;
}

/* ========================================
   SECTION SPACING REDUCTION
   ======================================== */

.stats-section,
.mission-section,
.values-section,
.timeline-section {
  padding: 60px 0 !important;
}

.achievements-section {
  padding: 60px 0 !important;
}

#about-features-premium {
  padding: 60px 0 !important;
}

.team-section-v2 {
  padding: 60px 0 !important;
}

/* Tighten mb-5 inside sections */
.stats-section .mb-5,
.mission-section .mb-5,
.values-section .mb-5,
.timeline-section .mb-5 {
  margin-bottom: 2rem !important;
}

@media (max-width: 768px) {
  .stats-section,
  .mission-section,
  .values-section,
  .timeline-section,
  .achievements-section,
  #about-features-premium,
  .team-section-v2 {
    padding: 44px 0 !important;
  }
}


/* ========================================
   ABOUTUS PAGE - MOVED FROM INLINE STYLES
   ======================================== */

/* Hero Section */
.aboutus-hero-section {
  background: #ffffff;
  padding: 1rem 0 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.aboutus-hero-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.aboutus-hero-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.aboutus-hero-gradient-1 {
  position: absolute;
  top: 15%; right: 8%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(229,84,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatAnimation 8s ease-in-out infinite;
}

.aboutus-hero-gradient-2 {
  position: absolute;
  bottom: 20%; right: 15%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(229,84,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatAnimation 6s ease-in-out infinite reverse;
}

.aboutus-hero-circle-1 {
  position: absolute;
  top: 10%; left: 5%;
  width: 120px; height: 120px;
  border: 3px solid rgba(229,84,0,0.15);
  border-radius: 50%;
  animation: rotateFloat 10s linear infinite;
}

.aboutus-hero-circle-2 {
  position: absolute;
  bottom: 15%; left: 10%;
  width: 80px; height: 80px;
  background: rgba(229,84,0,0.06);
  border-radius: 50%;
  animation: floatAnimation 7s ease-in-out infinite;
}

.aboutus-hero-square {
  position: absolute;
  top: 50%; left: 3%;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(229,84,0,0.08) 0%, rgba(229,84,0,0.04) 100%);
  border-radius: 10px;
  transform: rotate(45deg);
  animation: rotateFloat 12s linear infinite reverse;
}

.aboutus-hero-line-1 {
  position: absolute;
  top: 25%; left: 0;
  width: 100px; height: 3px;
  background: linear-gradient(90deg, rgba(229,84,0,0.3) 0%, transparent 100%);
  animation: slideRight 4s ease-in-out infinite;
}

.aboutus-hero-line-2 {
  position: absolute;
  bottom: 30%; right: 0;
  width: 120px; height: 3px;
  background: linear-gradient(270deg, rgba(229,84,0,0.3) 0%, transparent 100%);
  animation: slideLeft 4s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes rotateFloat {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-20px); }
}

@keyframes slideRight {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(30px); opacity: 0.8; }
}

@keyframes slideLeft {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(-30px); opacity: 0.8; }
}

@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); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-width: 992px) {
  .aboutus-hero-section {
    padding: 0;
    align-items: flex-start;
    padding-top: 3rem;
  }
  .aboutus-hero-section .container {
    margin-top: 0;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 991px) {
  .aboutus-hero-pattern { width: 70%; }
  .aboutus-hero-gradient-1,
  .aboutus-hero-gradient-2 { width: 250px; height: 250px; }
  .aboutus-hero-circle-1,
  .aboutus-hero-circle-2,
  .aboutus-hero-square { display: none; }
}

@media (max-width: 768px) {
  .aboutus-hero-pattern { width: 80%; }
  .aboutus-hero-line-1,
  .aboutus-hero-line-2 { display: none; }
}

.aboutus-hero-section .container { position: relative; z-index: 1; }

.hero-content { max-width: 600px; width: 100%; }

.hero-intro-text {
  color: rgb(229,84,0);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-heading {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #1f2937;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.8s ease-out 0.4s both;
}

@media (min-width: 768px) { .hero-heading { font-size: 2.75rem; } }
@media (min-width: 992px) { .hero-heading { font-size: 3.25rem; } }

/* CTA Button */
.hero-cta-button {
  width: 100%; max-width: 250px;
  background: linear-gradient(135deg, rgb(229,84,0) 0%, rgb(196,71,0) 100%);
  color: #ffffff;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
  border: 2px solid rgb(196,71,0);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(229,84,0,0.25);
  position: relative; overflow: hidden; cursor: pointer;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-cta-button::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.hero-cta-button:hover::before { left: 100%; }
.hero-cta-button:hover {
  background: linear-gradient(135deg, rgb(196,71,0) 0%, rgb(150,50,0) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(229,84,0,0.35);
}
.hero-cta-button svg { transition: transform 0.3s ease; }
.hero-cta-button:hover svg { transform: translateX(5px); }

/* Feature Boxes */
.hero-feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem; margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
@media (max-width: 576px) {
  .hero-feature-boxes { grid-template-columns: 1fr; gap: 0.75rem; }
}
.hero-feature-box {
  background: linear-gradient(135deg, rgba(229,84,0,0.08) 0%, rgba(45,100,50,0.05) 100%);
  border: 2px solid rgba(229,84,0,0.2);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.hero-feature-box::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(229,84,0,0.1) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.hero-feature-box:hover::before { opacity: 1; }
.hero-feature-box:hover {
  background: linear-gradient(135deg, rgba(229,84,0,0.12) 0%, rgba(45,100,50,0.08) 100%);
  border-color: rgb(229,84,0);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(229,84,0,0.2);
}
.hero-feature-box:nth-child(1) { animation: scaleIn 0.6s ease-out 0.9s both; }
.hero-feature-box:nth-child(2) { animation: scaleIn 0.6s ease-out 1s both; }
.hero-feature-box:nth-child(3) { animation: scaleIn 0.6s ease-out 1.1s both; }

.hero-feature-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgb(229,84,0) 0%, rgb(196,71,0) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.5rem;
  box-shadow: 0 4px 12px rgba(229,84,0,0.25);
  transition: all 0.3s ease; position: relative; z-index: 1;
}
.hero-feature-box:hover .hero-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(229,84,0,0.35);
}
.hero-feature-icon i { font-size: 1.25rem; color: #ffffff; }
.hero-feature-title { font-size: 0.85rem; font-weight: 700; color: #1f2937; margin: 0 0 0.25rem; position: relative; z-index: 1; }
.hero-feature-desc { font-size: 0.75rem; font-weight: 400; color: #6b7280; margin: 0; line-height: 1.4; position: relative; z-index: 1; }

/* Info Lines */
.hero-info-lines { margin-top: 1rem; animation: fadeInUp 0.8s ease-out 1.2s both; }
.hero-info-line {
  display: flex; align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(229,84,0,0.05) 0%, rgba(45,100,50,0.02) 100%);
  border-left: 3px solid rgb(229,84,0);
  border-radius: 6px;
}
.hero-info-line:last-child { margin-bottom: 0; }
.hero-info-line i { color: rgb(229,84,0); font-size: 1rem; margin-right: 0.5rem; flex-shrink: 0; }
.hero-info-line span { color: #1f2937; font-weight: 600; font-size: 1rem; }

/* Card Grid */
.hero-card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; width: 100%; max-width: 600px; margin: 0 auto;
}
.hero-grid-card {
  width: 100%; border-radius: 20px; padding: 1.5rem 1.25rem;
  background-color: #ffffff; border: 1px solid #e5e7eb;
  transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative; overflow: hidden; min-height: 160px;
}
.hero-grid-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(229,84,0,0.04) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.hero-grid-card:hover::before { opacity: 1; }
.hero-grid-card svg { flex-shrink: 0; width: 40px; height: 40px; }
.hero-grid-card:hover {
  border-color: rgba(229,84,0,0.4);
  box-shadow: 0 4px 16px rgba(229,84,0,0.12);
  transform: translateY(-3px);
}
.hero-card-green {
  background: linear-gradient(135deg, rgb(229,84,0) 0%, rgb(196,71,0) 100%);
  color: #ffffff; border: 1px solid rgb(229,84,0);
}
.hero-card-green:hover { border-color: rgb(196,71,0); box-shadow: 0 4px 16px rgba(229,84,0,0.2); }
.hero-card-green p { color: #ffffff; }
.hero-card-3 {
  border: 2px solid rgba(229,84,0,0.3);
  background: linear-gradient(135deg, rgba(229,84,0,0.04) 0%, rgba(229,84,0,0.01) 100%);
  position: relative;
}
.hero-card-3::after {
  content: ''; position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px;
  border: 2px solid rgba(229,84,0,0.25); border-radius: 50%;
}
.hero-card-3:hover { border-color: rgba(229,84,0,0.6); box-shadow: 0 4px 16px rgba(229,84,0,0.15); }
.hero-card-1 { animation: fadeInRight 0.8s ease-out 0.3s both; }
.hero-card-2 { animation: fadeInRight 0.8s ease-out 0.5s both; }
.hero-card-3 { animation: fadeInRight 0.8s ease-out 0.7s both; }
.hero-card-4 { animation: fadeInRight 0.8s ease-out 0.9s both; }

/* Card Image */
.hero-card-image {
  padding: 0; overflow: hidden; background: #f8f9fa;
  border: 1px solid #e5e7eb; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 160px; display: flex; flex-direction: column;
  position: relative; border-radius: 20px;
}
.hero-card-image-wrapper {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%; overflow: hidden; z-index: 1;
}
.hero-card-image-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(255,255,255,0.1) 100%);
  z-index: 1; transition: all 0.4s ease;
}
.hero-card-image:hover .hero-card-image-wrapper::after {
  background: radial-gradient(ellipse at center, transparent 20%, rgba(255,255,255,0.15) 100%);
}
.hero-card-img {
  width: 100%; height: 100%; min-height: 160px;
  object-fit: cover; object-position: center; display: block;
  transition: all 0.5s ease;
}
.hero-card-image:hover .hero-card-img { transform: scale(1.06); }
.hero-card-image-content {
  padding: 1.25rem; position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  gap: 0.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 100%);
  backdrop-filter: blur(8px);
}
.hero-card-image-content::before {
  content: ''; position: absolute; left: 0; bottom: 0; top: 0; width: 4px;
  background: linear-gradient(180deg, transparent 0%, rgb(229,84,0) 50%, rgb(229,84,0) 100%);
  border-radius: 0 0 0 20px;
}
.hero-card-image:hover { border-color: rgba(229,84,0,0.3); box-shadow: 0 4px 16px rgba(229,84,0,0.12); transform: translateY(-3px); }
.hero-card-image:hover .hero-card-image-content { background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.98) 100%); }
.hero-card-image .hero-card-number { font-size: 2.25rem; margin-bottom: 0.25rem; color: #1f2937; font-weight: 900; line-height: 1; transition: all 0.3s ease; letter-spacing: -1px; }
.hero-card-image:hover .hero-card-number { color: rgb(229,84,0); }
.hero-card-image .hero-card-number span { color: rgb(229,84,0); opacity: 1; }
.hero-card-image-content .fw-bold { color: #1f2937 !important; font-size: 1rem !important; letter-spacing: 0.3px; font-weight: 700 !important; transition: all 0.3s ease; line-height: 1.3; }
.hero-card-image-content .text-muted { color: #6b7280 !important; font-size: 0.8rem !important; font-weight: 400 !important; line-height: 1.4; }
.hero-card-image-content p { position: relative; margin: 0; }
.hero-card-number { font-size: 2.5rem; line-height: 1; font-weight: 700; color: #1f2937; margin-bottom: 0.5rem; }
.hero-card-number span { color: rgb(229,84,0); }
.hero-card-green .hero-card-number { color: #ffffff; }
.hero-card-green .hero-card-number span { color: #ffffff; opacity: 0.95; }
.hero-grid-card p { font-size: 0.9rem; line-height: 1.5; margin: 0; }
.hero-grid-card .fs-2 { font-size: 1.25rem !important; font-weight: 700 !important; }
.hero-grid-card .fs-4 { font-size: 1rem !important; font-weight: 600 !important; }
.hero-grid-card .fs-6 { font-size: 0.8rem !important; font-weight: 400 !important; }
.hero-card-image-content .fs-5 { font-size: 1.1rem !important; font-weight: 700 !important; }
.hero-card-image-content .fs-6 { font-size: 0.85rem !important; font-weight: 400 !important; }

@media (max-width: 767px) {
  .hero-card-grid { grid-template-columns: 1fr; max-width: 350px; gap: 1.25rem; }
  .hero-grid-card { min-height: 140px; }
  .hero-card-image { min-height: 140px; }
  .hero-card-image-content { padding: 1rem; }
  .hero-card-image .hero-card-number { font-size: 2rem; }
  .hero-card-image-content .fw-bold { font-size: 0.95rem !important; }
  .hero-card-img { min-height: 140px; }
}
@media (min-width: 992px) {
  .hero-card-grid { max-width: 650px; gap: 1.75rem; }
  .hero-grid-card { padding: 1.75rem 1.5rem; }
  .hero-card-image-wrapper { height: 100px; }
}

/* Stats Section */
.stats-section { background: #ffffff; }
.stat-card {
  text-align: center; padding: 40px 30px;
  background: linear-gradient(135deg, rgba(229,84,0,0.06) 0%, rgba(229,84,0,0.04) 100%);
  border-radius: 20px; transition: all 0.4s ease;
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(229,84,0,0.12), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover { transform: translateY(-10px); border-color: rgb(229,84,0); box-shadow: 0 20px 60px rgba(229,84,0,0.2); }
.stat-number {
  font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, rgb(229,84,0), color-mix(in srgb, rgb(229,84,0), #000 20%));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; display: block; margin-bottom: 15px;
}
.stat-label { font-size: 1.1rem; color: #6b7280; font-weight: 600; }

/* Mission Section */
.mission-section { background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%); }
.mission-card {
  background: #ffffff; padding: 50px 40px; border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08); height: 100%;
  transition: all 0.4s ease; border: 2px solid transparent;
}
.mission-card:hover { transform: translateY(-8px); border-color: rgb(229,84,0); box-shadow: 0 25px 70px rgba(229,84,0,0.18); }
.mission-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgb(229,84,0), color-mix(in srgb, rgb(229,84,0), #000 20%));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px; box-shadow: 0 8px 25px rgba(229,84,0,0.3);
}
.mission-icon i { font-size: 2.5rem; color: #ffffff; }
.mission-card h3 { font-size: 1.8rem; font-weight: 700; color: #1f2937; margin-bottom: 20px; }
.mission-card p { color: #6b7280; line-height: 1.8; margin: 0; }

/* Values Section */
.values-section { background: #ffffff; }
.value-item {
  display: flex; gap: 25px; padding: 35px;
  background: #f9fafb; border-radius: 16px;
  transition: all 0.3s ease; border-left: 4px solid transparent;
}
.value-item:hover { background: #ffffff; border-left-color: rgb(229,84,0); box-shadow: 0 10px 40px rgba(229,84,0,0.12); transform: translateX(10px); }
.value-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(229,84,0,0.12) 0%, rgba(229,84,0,0.08) 100%);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-icon i { font-size: 1.8rem; color: rgb(229,84,0); }
.value-content h4 { font-size: 1.3rem; font-weight: 700; color: #1f2937; margin-bottom: 10px; }
.value-content p { color: #6b7280; line-height: 1.7; margin: 0; }

/* Team (old) */
.team-section { background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%); }
.team-member-card { background: #ffffff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; height: 100%; border: 2px solid transparent; }
.team-member-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(229,84,0,0.15); border-color: rgba(229,84,0,0.3); }
.team-photo { position: relative; overflow: hidden; height: 320px; background: #f8f9fa; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-member-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 25px 20px; text-align: center; background: #ffffff; }
.team-info h4 { font-size: 1.3rem; font-weight: 700; color: #1f2937; margin-bottom: 8px; }
.team-position { color: rgb(229,84,0); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 12px; }
.team-info p { color: #6b7280; line-height: 1.6; margin: 0; font-size: 0.9rem; }

/* Timeline Section */
.timeline-section { background: #ffffff; }
.timeline { position: relative; padding: 50px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(135deg, rgb(229,84,0), color-mix(in srgb, rgb(229,84,0), #000 20%));
  transform: translateX(-50%); box-shadow: 0 0 10px rgba(229,84,0,0.3);
}
.timeline-item { position: relative; margin-bottom: 60px; }
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; text-align: left; }
.timeline-item:nth-child(even) .timeline-content { margin-right: auto; text-align: right; }
.timeline-content { width: 45%; background: #ffffff; padding: 35px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); position: relative; }
.timeline-dot {
  position: absolute; left: 50%; top: 30px; width: 24px; height: 24px;
  background: linear-gradient(135deg, rgb(229,84,0), color-mix(in srgb, rgb(229,84,0), #000 20%));
  border-radius: 50%; transform: translateX(-50%);
  border: 4px solid #ffffff; box-shadow: 0 0 0 4px rgba(229,84,0,0.25), 0 4px 15px rgba(229,84,0,0.35);
}
.timeline-year {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, rgb(229,84,0), color-mix(in srgb, rgb(229,84,0), #000 20%));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 15px;
}
.timeline-content h4 { font-size: 1.3rem; font-weight: 700; color: #1f2937; margin-bottom: 12px; }
.timeline-content p { color: #6b7280; line-height: 1.7; margin: 0; }

@media (max-width: 991px) {
  .timeline::before { left: 30px; }
  .timeline-dot { left: 30px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width: calc(100% - 80px); margin-left: 80px; text-align: left; }
}

@media (max-width: 768px) {
  .stat-number { font-size: 2.5rem; }
  .mission-card { padding: 35px 25px; }
  .team-photo { height: 280px; }
}
