/* ================================
   Fade-Up Animation Styles
   ================================ */

/* Base animation state - hidden initially */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animated state - visible */
.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for sequential animations */
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }
.fade-up-delay-7 { transition-delay: 0.7s; }
.fade-up-delay-8 { transition-delay: 0.8s; }

/* ================================
   ABOUT PAGE - Hero Animation
   (CSS-only, triggers on page load)
   ================================ */

/* Hide about hero elements initially */
.about_hero_section .hero_section_badge_secondary,
.about_hero_section .about_hero_section_grid h1,
.about_hero_section .about_hero_section_grid .hero_title_secondary,
.about_hero_section .about_hero_section_grid p,
.about_hero_section .about_hero_section_grid .hero_description_secondary,
.about_hero_section .hero_button_container {
    opacity: 0;
    transform: translateY(30px);
}

/* Animate about hero elements on page load */
.about_hero_section .hero_section_badge_secondary {
    animation: heroFadeUp 0.7s ease-out 0.1s forwards;
}

.about_hero_section .about_hero_section_grid h1,
.about_hero_section .about_hero_section_grid .hero_title_secondary {
    animation: heroFadeUp 0.7s ease-out 0.25s forwards;
}

.about_hero_section .about_hero_section_grid p,
.about_hero_section .about_hero_section_grid .hero_description_secondary {
    animation: heroFadeUp 0.7s ease-out 0.4s forwards;
}

.about_hero_section .hero_button_container {
    animation: heroFadeUp 0.7s ease-out 0.55s forwards;
}

/* ================================
   WHO WE ARE SECTION - On Load Animation
   (CSS-only, triggers on page load)
   ================================ */

/* Hide who we are section elements initially */
.about_who_we_are_section .about_who_we_are_badge,
.about_who_we_are_section .about_who_we_are_section_title,
.about_who_we_are_section .about_who_we_are_section_subtitle,
.about_who_we_are_section .about_who_we_are_right_card {
    opacity: 0;
    transform: translateY(30px);
}

/* Animate who we are section elements on page load */
.about_who_we_are_section .about_who_we_are_badge {
    animation: heroFadeUp 0.7s ease-out 0.6s forwards;
}

.about_who_we_are_section .about_who_we_are_section_title {
    animation: heroFadeUp 0.7s ease-out 0.75s forwards;
}

.about_who_we_are_section .about_who_we_are_section_subtitle {
    animation: heroFadeUp 0.7s ease-out 0.9s forwards;
}

.about_who_we_are_section .row .col-12:nth-child(1) .about_who_we_are_right_card {
    animation: heroFadeUp 0.7s ease-out 1.05s forwards;
}

.about_who_we_are_section .row .col-12:nth-child(2) .about_who_we_are_right_card {
    animation: heroFadeUp 0.7s ease-out 1.2s forwards;
}

/* Hero fade up keyframe animation */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Hero Section Base Styles
   ================================ */
.about_hero_section {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    width: 100%;
    padding: 225px 0 200px 0;
}

.about_hero_section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #F8F9FA);
    pointer-events: none;
}

.about_hero_section_grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero_section_badge_secondary {
    display: flex;
    height: 32px;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
}

.hero_section_badge_text_secondary {
    color: #0D1A3A;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.hero_title_secondary {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px; 
}

.hero_description_secondary {
    color: #474E56;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}

/* ================================
   Button Styles
   ================================ */
.hero_button_container {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* ================================
   Who We Are Base Styles
   ================================ */

.about_who_we_are_section {
    background: #F8F9FA;
    padding: 10px 80px 135px 80px;
}

.about_who_we_are_header {
    margin-bottom: 50px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.about_who_we_are_badge {
    display: inline-block;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16777200px;
    background: #E6F3FA;
    color: #008BCB;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.about_who_we_are_section_title {
    color: #0D1A3A;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px;
}

.about_who_we_are_section_subtitle {
    color: #3D4861;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
}

.about_who_we_are_right_card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 24px;
    background: #FFF;
}

.about_who_we_are_right_card_header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about_who_we_are_right_card_icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 10.667px;
    border-radius: 16px;
    background: #E6F3FA;
}

.about_who_we_are_right_card_title {
    color: #0D1A3A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
}

.about_who_we_are_right_card_description {
    color: #3D4861;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}

.about_who_we_are_right_card_divider {
    width: 100%;
    height: 1px;
    background: #E8EAEC;
    margin: 32px 0;
}

.about_who_we_are_right_card_badge_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
}

.about_who_we_are_right_card_badge {
    display: flex;
    height: 32px;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: #E6F3FA;
}

.about_who_we_are_right_card_badge_text {
    color: #008BCB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.9px;
}

.about_msmes_matter_card {
    display: flex;
    width: 100%;
    padding: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: #002333;
    margin-top: 135px;
}

.about_msmes_matter_card_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.about_msmes_matter_card_badge {
    display: flex;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16777200px;
    background: #002F45;

    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.about_msmes_matter_card_title {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 46.44px;
}

.about_msmes_matter_card_description {
    color: #E7E8EB;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}

/* ================================
   Leadership & Team Base Styles
   ================================ */
.about_leadership_team_section {
    display: flex;
    padding: 150px 0px;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    background: #FFF;
}

.about_leadership_container {
    padding: 0px 165px;
}

.about_leadership_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    align-self: stretch;
}

.about_leadership_content_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.about_leadership_title_row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
    margin-bottom: 10px;
}

.about_leadership_title {
    color: #0D1A3A;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px;
    margin-bottom: 0px !important;
}

.about_leadership_sub_title {
    color: #9096A4;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 39.9px;
    text-transform: uppercase;
}

.about_leadership_tag_row {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.about_leadership_tag {
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #EEE;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
}

.about_leadership_tag_text {
    color: #008BCB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.about_leadership_content_title {
    color: #0D1A3A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    margin-bottom: 16px;
}

.about_leadership_content_description {
    color: #5D667B;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}

.about_leadership_quotes {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 10px;
    background: #E6F3FA;
}

.about_leadership_quotes_text {
    color: #008BCB;
    font-family: Playfair;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 30.4px;
}

.about_team_container {
    width: 90%;
}

.about_team_header {
    text-align: center;
    padding: 0 20px;
}

.about_team_badge {
    display: inline-block;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16777200px;
    background: #E6F3FA;
    color: #008BCB;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.about_team_section_title {
    color: #0D1A3A;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 46.44px;
    padding: 24px 0;
}

.about_team_section_subtitle {
    color: #5D667B;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}

.about_team_content {
    padding-top: 80px;
}

.about_team_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    width: 100%;
}

.about_team_next_row {
    padding-top: 32px;
}

.about_team_card {
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #F8F8F9;
    background: #F8F9FA;
    transition: all 0.5s ease;
}

.about_team_card:hover {
    border: 1px solid #8ACAE7;
    background: #F8F9FA;
    box-shadow: 0 3.343px 33.429px 0 rgba(67, 63, 108, 0.20);
}

.about_team_card:hover .about_team_card_content .about_team_card_title {
    color: #008BCB;
}

.about_team_card_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.about_team_card_title {
    color: #0D1A3A;
    text-align: center;
    font-size: 15.043px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0px !important;
    transition: all 0.5s ease;
}

.about_team_card_subtitle {
    color: #5D667B;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 15px;
}

/* ================================
   Our Approach Base Styles
   ================================ */
.about_our_approach_section {
    display: flex;
    padding: 150px 80px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #F8F9FA;
}

.about_our_approach_header {
    text-align: center;
    padding: 0 20px;
}

.about_our_approach_badge {
    display: inline-block;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16777200px;
    background: #E6F3FA;
    color: #008BCB;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.about_our_approach_section_title {
    color: #0D1A3A;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px;
    padding: 24px 0;
}

.about_our_approach_section_subtitle {
    color: #5D667B;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}

.about_our_approach_content {
    padding: 124px 50px 0px 50px;
}

.about_our_approach_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    width: 100%;
}

.about_our_approach_card {
    height: 100%;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    background: #FFF;
    position: relative;
}

.about_our_approach_card_badge {
    display: flex;
    width: 43px;
    height: 43px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: -5px;
    top: -15px;
    border-radius: 32px;
    background: #008BCB;
}

.about_our_approach_card_badge_text {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.9px;
}

.about_our_approach_card_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    align-self: stretch;
}

.about_our_approach_card_icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #E8F8FF;
}

.about_our_approach_card_title {
    color: #0D1A3A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    margin-bottom: 0px;
}

.about_our_approach_card_description {
    color: #3D4861;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30.4px;
}