/* About Page Base */
  .about-page {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 45%, #f5f4f8 100%);
  }


  /* Hero Section - Vibrant Purple-Blue Gradient */
  .about-hero {
    background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
  }

  .about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.2), transparent 60%),
                radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.18), transparent 55%);
    z-index: 0;
    pointer-events: none;
  }

  .about-hero .container {
    position: relative;
    z-index: 2;
  }

  .about-hero-intro {
    position: relative;
    border-radius: 28px;
    padding: 2.75rem 2.5rem;
    background: linear-gradient(135deg, 
      #1A4F90 0%, 
      #2a669f 30%,
      #5f8c3b 60%,
      #7DA14C 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 60px rgba(15, 12, 32, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 8px 32px rgba(26, 79, 144, 0.4),
                0 4px 16px rgba(125, 161, 76, 0.3);
    height: 100%;
    overflow: hidden;
  }

  .about-hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .about-page .caption-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .about-page .caption-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .about-page .caption-text {
    color: rgba(255, 255, 255, 0.98);
    max-width: 100%;
    line-height: 1.7;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  /* Gradient Text */
  .gradient-text {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .text-white-75 {
    color: rgba(255, 255, 255, 0.75);
  }

  /* About Cards */
  .about-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
  }

  .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  }

  /* Card Header Icons */
  .card-header-icon {
    margin-top: -40px;
    margin-bottom: 1rem;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(26, 79, 144, 0.3);
    transition: all 0.3s ease;
  }

  .icon-wrapper-primary {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
  }

  .icon-wrapper-success {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
  }

  .icon-wrapper-orange {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
  }

  .icon-wrapper i {
    font-size: 2rem;
    color: white;
  }

  .about-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(26, 79, 144, 0.4);
  }

  /* Content Sections */
  .content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
  }

  .content-section .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
  }

  /* Highlight Box */
  .highlight-box {
    border-left: 4px solid #1A4F90;
    transition: all 0.3s ease;
  }

  .highlight-box:hover {
    border-left-color: #7DA14C;
    transform: translateX(5px);
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, rgba(26, 79, 144, 0.05), rgba(125, 161, 76, 0.05));
    border-radius: 24px;
    margin-top: 2rem;
  }

  /* Buttons */
  .btn-primary {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 79, 144, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 79, 144, 0.4);
  }

  .btn-outline-primary {
    border: 2px solid #1A4F90;
    color: #1A4F90;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-outline-primary:hover {
    background: #1A4F90;
    border-color: #1A4F90;
    color: white;
    transform: translateY(-2px);
  }

  .hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hover-lift:hover {
    transform: translateY(-3px);
  }

  /* Animations */
  @keyframes animate-fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes animate-fade-in-up {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes animate-slide-up {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-in {
    animation: animate-fade-in 0.8s ease forwards;
  }

  .animate-fade-in-up {
    animation: animate-fade-in-up 1s ease forwards;
  }

  .animate-slide-up {
    animation: animate-slide-up 1s ease forwards;
  }

  /* Responsive Design */
  @media (max-width: 991px) {
    .icon-wrapper {
      width: 60px;
      height: 60px;
    }

    .icon-wrapper i {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 575px) {
    .about-card {
      border-radius: 16px !important;
      padding: 2rem 1.5rem !important;
    }

    .content-section p {
      font-size: 1rem;
    }

    .content-section .lead {
      font-size: 1.1rem;
    }

    .btn-lg {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .d-flex.gap-3 {
      flex-direction: column;
    }
  }