/*
* About Section Styles
*/

.about-section {
    position: relative;
    padding: 60px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%); */
    background-image: url('../../images/bg/about_bg.jpg');
    overflow: hidden;
}

.dark-theme .about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d30 50%, #1e1e1e 100%);
}

/* Animated Background */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    opacity: 0.1;
}

.pattern-svg {
    width: 100%;
    height: 100%;
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--accent-color);
    opacity: 0.15;
    transition: all 0.4s ease;
    cursor: pointer;
}

.shape:hover {
    opacity: 0.3;
    transform: scale(1.2) rotate(45deg);
    color: #51b146;
    filter: drop-shadow(0 0 10px rgba(81, 177, 70, 0.5));
}

.shape svg {
    width: 100%;
    height: 100%;
}

.shape-1 {
    top: 15%;
    left: 10%;
    animation: floatRotate 15s ease-in-out infinite;
}

.shape-2 {
    top: 25%;
    right: 15%;
    animation: floatRotate 20s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    animation: floatRotate 18s ease-in-out infinite 3s;
}

.shape-4 {
    bottom: 20%;
    right: 10%;
    animation: floatRotate 12s ease-in-out infinite 2s;
}

@keyframes floatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-10px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-25px) rotate(270deg) scale(1.05); }
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(81, 177, 70, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(81, 177, 70, 0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #004b6b, #51b146);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.section-subtitle-about {
    font-size: 1.2rem;
    color: #004b6b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



.dark-theme .section-title {
    background: linear-gradient(135deg, #eeeff1, #51b146);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .section-subtitle-about {
    color: rgba(238, 239, 241, 0.9);
}

/* About Content */
.about-content {
    position: relative;
    z-index: 10;
}

.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 75, 107, 0.1);
    border: 1px solid rgba(81, 177, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card-content {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 7px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 75, 107, 0.3),
    0 0 0 1px rgba(81, 177, 70, 0.2);
  /* background: linear-gradient(145deg, #004b6b, #366072); */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 10px 30px rgba(81, 177, 70, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.header-icon::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.6s ease;
}

.header-icon:hover {
    transform: translateY(-3px) scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(81, 177, 70, 0.5);
    background: linear-gradient(135deg, #51b146, #004b6b);
}

.header-icon:hover::before {
    left: 100%;
}

.header-icon:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.header-icon i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.card-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin: 0;
}

.dark-theme .content-card {
    background: rgba(45, 45, 48, 0.9);
    border-color: rgba(81, 177, 70, 0.2);
}

.dark-theme .card-header h3 {
    color: #eeeff1;
}

.dark-theme .card-body p {
    color: rgba(238, 239, 241, 0.8);
}



/* added these to make cards equal length */
.row.align-items-center {
    align-items: stretch !important; /* Change from center to stretch */
}

.about-content {
    position: relative;
    z-index: 10;
    height: 100%; /* Add this */
    display: flex; /* Add this */
}

.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 75, 107, 0.1);
    border: 1px solid rgba(81, 177, 70, 0.1);
    position: relative;
    overflow: hidden;
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
    flex: 1; /* Add this */
}

.card-body {
    flex: 1; /* This makes the body expand to fill available space */
}











/* About Visual */
.about-visual {
    position: relative;
    z-index: 10;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-item.main {
    top: 0;
    right: 0;
    width: 80%;
    height: 70%;
    z-index: 2;
}

.image-item.secondary {
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    z-index: 1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 75, 107, 0.3), rgba(81, 177, 70, 0.2));
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 3;
    min-width: 120px;
    border: 3px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.stats-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 177, 70, 0.1), transparent);
    transition: left 0.6s ease;
}

.stats-badge:hover {
    transform: translateY(-50%) scale(1.05) rotate(2deg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: #51b146;
}

.stats-badge:hover::before {
    left: 100%;
}

.stats-badge:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(81, 177, 70, 0.6);
}

.stats-content .stat-number {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stats-content .stat-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.dark-theme .stats-badge {
    background: rgba(45, 45, 48, 0.95);
    border-color: var(--accent-color);
}

.dark-theme .stats-content .stat-label {
    color: #eeeff1;
}

/* Vision Mission Values Grid */
.vmv-grid {
    margin: 100px 0;
    position: relative;
    z-index: 10;
}

.vmv-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 15px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(81, 177, 70, 0.1);
    box-shadow: 0 15px 45px rgba(0, 75, 107, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 75, 107, 0.15);
}

.vmv-card .vmg-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.vmv-card .vmg-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.vmv-card:hover .vmg-icon {
    transform: translateY(-5px) scale(1.1) rotate(10deg);
    box-shadow: 0 20px 50px rgba(81, 177, 70, 0.4);
}

.vmv-card:hover .vmg-icon::before {
    left: 100%;
}

.vmv-card:hover .vmg-icon i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.vmv-card .vmg-icon i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.vmv-card .card-icon svg {
    width: 40px;
    height: 40px;
}

/* .vision-card .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
} */
.vision-card .vmg-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 auto 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    font-size: 28px;
    position: relative;
}

.vmg-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--accent-color);
    animation: spin 20s linear infinite;
}

.mission-card .vmg-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 auto 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    font-size: 28px;
    position: relative;
}

.values-card .vmg-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 auto 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    font-size: 28px;
    position: relative;
}

.vmv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.vmv-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

.card-bg-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(81, 177, 70, 0.1), transparent);
    border-radius: 0 20px 0 100px;
    z-index: 1;
}

.dark-theme .vmv-card {
    background: rgba(45, 45, 48, 0.9);
    border-color: rgba(81, 177, 70, 0.2);
}

.dark-theme .vmv-card h3 {
    color: #eeeff1;
}

.dark-theme .vmv-card p {
    color: rgba(238, 239, 241, 0.8);
}

/* Key Numbers Section */
.key-numbers {
    margin: 80px 0;
    position: relative;
    z-index: 10;
}

.numbers-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.numbers-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
    z-index: 1;
}

.number-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.number-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 20px;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.number-icon::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.6s ease;
}

.number-item:hover .number-icon {
    transform: translateY(-8px) scale(1.15) rotate(15deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.number-item:hover .number-icon::before {
    left: 100%;
}

.number-item:hover .number-icon i {
    transform: scale(1.3);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.number-icon i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.number-content .number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.number-content .label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}




/* Approach Section */
.approach-section {
    margin-bottom: 20px;
}

.approach-section .section-header h2 {
    color: #004b6b;
    font-weight: 700;
    margin-bottom: 15px;
}

.dark-theme .approach-section .section-header h2 {
    color: #eeeff1;
}

.approach-section .section-header p {
    color: #6c757d;
}

.dark-theme .approach-section .section-header p {
    color: #b0b0b0;
}

.approach-card {
    background: #ededed;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 75, 107, 0.1);
}

.dark-theme .approach-card {
    background: #2a2a2a;
    border-color: #444444;
}

.dark-theme .approach-card:hover {
    box-shadow: 0 10px 30px rgba(81, 177, 70, 0.2);
}

.approach-card h4 {
    color: #004b6b;
    font-weight: 600;
    margin-bottom: 15px;
}

.dark-theme .approach-card h4 {
    color: #eeeff1;
}

.approach-card p {
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

.dark-theme .approach-card p {
    color: #b0b0b0;
}

/* Capabilities Section */
.capabilities-section {
    margin: 0 40px 40px;
    position: relative;
    z-index: 10;
}

.capabilities-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.capabilities-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    /* margin-bottom: 60px; */
}

.capability-item {
    background: rgba(81, 177, 70, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(81, 177, 70, 0.1);
    box-shadow: 0 10px 30px rgba(0, 75, 107, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 75, 107, 0.1);
    border-color: var(--accent-color);
}

.capability-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 15px;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.capability-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 177, 70, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 3;
    border-radius: 15px;
}

.capability-item:hover .capability-icon {
    transform: translateY(-6px) scale(1.2) rotate(12deg);
}

.capability-item:hover .icon-bg {
    opacity: 0.25;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(81, 177, 70, 0.3);
}

.capability-item:hover .capability-icon::before {
    left: 100%;
}

.capability-item:hover .capability-icon i {
    transform: scale(1.4);
    color: #51b146;
    text-shadow: 0 0 20px rgba(81, 177, 70, 0.8);
    filter: drop-shadow(0 0 10px rgba(81, 177, 70, 0.6));
}

.capability-icon i {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    color: var(--accent-color);
    line-height: 70px;
    transition: all 0.3s ease;
}

.capability-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.capability-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

.dark-theme .capabilities-title {
    color: #eeeff1;
}

.dark-theme .capabilities-subtitle {
    color: rgba(238, 239, 241, 0.8);
}

.dark-theme .capability-item {
    background: rgba(45, 45, 48, 0.9);
    border-color: rgba(81, 177, 70, 0.2);
}

.dark-theme .capability-content h4 {
    color: #eeeff1;
}

.dark-theme .capability-content p {
    color: rgba(238, 239, 241, 0.8);
}


.dark-theme .about-card-content {
  background: linear-gradient(145deg, #003048, #1e3540);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.0rem;
    }
    
    .image-stack {
        height: 450px;
    }
    
    .stats-badge {
        left: -10px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 45px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .content-card {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .image-stack {
        height: 400px;
    }
    
    .stats-badge {
        position: static;
        transform: none;
        margin-top: 30px;
        display: inline-block;
    }
    
    .numbers-container {
        padding: 40px 30px;
    }
    
    .number-content .number {
        font-size: 2.0rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle-about {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .vmv-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .image-stack {
        height: 350px;
    }
    
    .image-item.main {
        width: 85%;
    }
    
    .image-item.secondary {
        width: 65%;
    }
    
    .capabilities-title {
        font-size: 2rem;
    }
    
    .capability-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .shape {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .numbers-container {
        padding: 30px 20px;
    }
    
    .number-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .number-content .number {
        font-size: 2rem;
    }
    
    .number-content .label {
        font-size: 0.9rem;
    }
    
    .capabilities-title {
        font-size: 1.8rem;
    }
}