.about-hero-updated {
    position: relative;
    background: linear-gradient(135deg, #003f7d 0%, #0056b3 100%);
    padding: 30px 0 100px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.about-hero-updated .breadcrumb a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero-updated .breadcrumb a:hover {
    color: #fff !important;
}

.hero-content-updated {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.title-accent {
    display: block;
    color: #7dd3fc;
    font-size: 1.2em;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.title-main {
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.hero-wave-divider .shape-fill {
    fill: #FFFFFF;
}

.about-intro-section {
    padding: 50px 0;
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-accent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, #003f7d, #0078d4);
    border-radius: 20px;
    z-index: 0;
}

.about-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0078d4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #0078d4, #7dd3fc);
    transform: translateY(-50%);
}

.about-intro-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #003f7d, #0078d4);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 63, 125, 0.3);
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 63, 125, 0.4);
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

.history-section {
    padding: 50px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 30px;
}

.section-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #003f7d, #0078d4, #7dd3fc);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-content {
    width: calc(50% - 60px);
    text-align: right;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
    width: calc(50% - 60px);
    text-align: left;
    margin-left: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.marker-year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003f7d, #0078d4);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 63, 125, 0.3);
    border: 4px solid #fff;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    border-color: #0078d4;
    box-shadow: 0 15px 40px rgba(0, 120, 212, 0.12);
    transform: translateY(-3px);
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7dd3fc, #0078d4);
    color: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
}

.timeline-icon i {
    font-size: 1.3rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.values-section {
    padding: 50px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.3s ease;
    border: 2px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003f7d, #0056b3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #003f7d;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover h3,
.value-card:hover p {
    color: #fff;
}

.value-card:hover .value-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-card:hover .value-icon-wrapper i {
    color: #fff;
}

.value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4fd, #d1e9fa);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.value-icon-wrapper i {
    font-size: 2rem;
    color: #003f7d;
    transition: color 0.4s ease;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}


.certifications-section {
    padding: 50px 0 100px;
    background: linear-gradient(135deg, #003f7d 0%, #001f3f 100%);
    position: relative;
    overflow: hidden;
}

.footer-wave-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.footer-wave-transition svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 100px;
    transform: rotate(180deg);
}

.footer-wave-transition .shape-fill {
    fill: #003f7d;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 120, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.certifications-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cert-content-wrapper {
    position: relative;
    z-index: 2;
}

.certifications-section .section-label {
    color: #7dd3fc;
}

.certifications-section .section-label::before {
    background: linear-gradient(90deg, #7dd3fc, #0078d4);
}

.certifications-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cert-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.cert-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078d4, #7dd3fc);
    border-radius: 15px;
    flex-shrink: 0;
}

.cert-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.cert-card-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cert-card-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.cta-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.cta-content p {
    color: #666;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #003f7d, #0078d4);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 63, 125, 0.25);
}

.btn-cta-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 63, 125, 0.35);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #003f7d;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #003f7d;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #003f7d;
    color: #fff;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-hero-section {
        padding: 40px 0 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 70px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .timeline-marker {
        left: 25px;
    }

    .marker-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }

    .about-intro-content .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .about-hero-updated {
        padding: 40px 0 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        padding: 30px;
        justify-content: center;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .section-header .section-title,
    .certifications-section .section-title {
        font-size: 2rem;
    }

    .cert-badges {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .about-hero-updated {
        padding: 30px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-accent {
        font-size: 1em;
        letter-spacing: 2px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .marker-year {
        width: 45px;
        height: 45px;
        font-size: 0.75rem;
    }

    .value-card {
        padding: 30px 20px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.section-label {
    padding-left: 0 !important;
}

.section-label::before {
    display: none !important;
}

.section-title::after {
    display: none !important;
    content: none !important;
}