.about-hero-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    border-radius: 24px;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 64, 175, 0.2));
    z-index: 1;
}

.decoration-2 {
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    opacity: 0.1;
    z-index: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #ffffff;
}

.mission-card,
.vision-card {
    height: 100%;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 64, 175, 0.05));
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.vision-card {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #ffffff;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
}

.vision-card .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #3b82f6;
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.mission-card .card-title {
    color: #0f172a;
}

.vision-card .card-title {
    color: #ffffff;
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-card .card-description {
    color: #475569;
}

.vision-card .card-description {
    color: #cbd5e1;
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li,
.vision-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-weight: 600;
}

.mission-list li i {
    color: #3b82f6;
    font-size: 18px;
}

.vision-list li {
    color: #e2e8f0;
}

.vision-list li i {
    color: #3b82f6;
    font-size: 18px;
}

/* Services Highlight Section */
.services-highlight-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.service-highlight-card {
    height: 100%;
    padding: 36px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-highlight-card:hover::before {
    opacity: 1;
}

.service-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    font-size: 28px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #ffffff;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    font-size: 36px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.value-title {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.value-text {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.cta-wrapper {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-stats {
        justify-content: space-between;
    }

    .about-hero-section,
    .mission-vision-section,
    .services-highlight-section,
    .values-section,
    .about-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .mission-card,
    .vision-card {
        padding: 28px;
    }

    .cta-wrapper {
        padding: 48px 32px;
    }

    .section-title {
        font-size: 28px;
    }
}
