/* ================================
   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; }

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

/* Hide sub-service hero elements initially */
.sub_service_hero_section .sub_service_breadcrumb,
.sub_service_hero_section .sub_service_title_section,
.sub_service_hero_section .sub_service_badge_row,
.sub_service_hero_section .sub_service_button_section {
    opacity: 0;
    transform: translateY(30px);
}

/* Animate sub-service hero elements on page load */
.sub_service_hero_section .sub_service_breadcrumb {
    animation: heroFadeUp 0.7s ease-out 0.1s forwards;
}

.sub_service_hero_section .sub_service_title_section {
    animation: heroFadeUp 0.7s ease-out 0.25s forwards;
}

.sub_service_hero_section .sub_service_badge_row {
    animation: heroFadeUp 0.7s ease-out 0.4s forwards;
}

.sub_service_hero_section .sub_service_button_section {
    animation: heroFadeUp 0.7s ease-out 0.55s forwards;
}

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

/* Hide build section elements initially */
.sub_service_build_section .sub_service_build_title,
.sub_service_build_section .sub_service_build_description,
.sub_service_build_section .sub_service_build_tabs_container,
.sub_service_build_section .sub_service_build_tab_item,
.sub_service_build_section .sub_service_build_tabs_content {
    opacity: 0;
    transform: translateY(30px);
}

/* Animate build section elements on page load */
.sub_service_build_section .sub_service_build_title {
    animation: heroFadeUp 0.7s ease-out 0.7s forwards;
}

.sub_service_build_section .sub_service_build_description {
    animation: heroFadeUp 0.7s ease-out 0.85s forwards;
}

.sub_service_build_section .sub_service_build_tabs_container {
    animation: heroFadeUp 0.7s ease-out 1s forwards;
}

.sub_service_build_section .sub_service_build_tab_item:nth-child(1) {
    animation: heroFadeUp 0.6s ease-out 1.1s forwards;
}

.sub_service_build_section .sub_service_build_tab_item:nth-child(2) {
    animation: heroFadeUp 0.6s ease-out 1.2s forwards;
}

.sub_service_build_section .sub_service_build_tab_item:nth-child(3) {
    animation: heroFadeUp 0.6s ease-out 1.3s forwards;
}

.sub_service_build_section .sub_service_build_tab_item:nth-child(4) {
    animation: heroFadeUp 0.6s ease-out 1.4s forwards;
}

.sub_service_build_section .sub_service_build_tab_item:nth-child(5) {
    animation: heroFadeUp 0.6s ease-out 1.5s forwards;
}

.sub_service_build_section .sub_service_build_tabs_content {
    animation: heroFadeUp 0.7s ease-out 1.15s forwards;
}

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

/* ================================
   Top Section Base Styles
   ================================ */
.sub_service_top_section {
    padding: 165px 80px 0px 80px;
    background-color: #f8f9fa;
}

/* ================================
   Hero Section Base Styles
   ================================ */
.sub_service_hero_section {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 80px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

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

.sub_service_breadcrumb a {
    color: #008BCB !important;
}

.sub_service_title_section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.sub_service_title {
    color: #0D1A3A;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 57.6px;
}

.sub_service_title span {
    color: #008BCB;
}

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

.sub_service_badge_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.sub_service_badge {
    display: flex;
    padding: 8px 12px;
    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);
}

.sub_service_badge_text {
    color: #0D1A3A;
    font-size: 13.5px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.sub_service_button_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

/* ================================
   Build Section Base Styles
   ================================ */
.sub_service_build_section {
    padding: 150px 0;
}

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

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

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

.sub_service_build_tabs_container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    margin-top: 80px;
}

.sub_service_build_tabs_nav {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.sub_service_build_tab_item {
    display: flex;
    height: 96px;
    padding: 24px;
    align-items: center;
    gap: 16px;;
    border-radius: 16px;
    border: 1px solid #E8EAEC;
    background: #FFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sub_service_build_tab_item:hover {
    border: 1.5px solid #8ACAE7;
    background: #FFF;
}

.sub_service_build_tab_item.active {
    border-color: #008BCB;
    background: #FFFFFF;
    border: 1.5px solid #8ACAE7;
}

.sub_service_build_tab_item.active::before {
    background: #008BCB;
}

.sub_service_build_tab_icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 10.667px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #E6F3FA;
    stroke: #008BCB;
}

.sub_service_build_tab_item.active .sub_service_build_tab_icon {
    background: #008BCB;
    stroke: #FFFFFF;
}

.sub_service_build_tab_text {
    color: #0D1A3A;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
}

.sub_service_build_tab_item.active .sub_service_build_tab_text {
    color: #008BCB;
}

.sub_service_build_tabs_content {
    width: 67%;
    min-height: 400px;
}

.sub_service_build_tab_panel {
    display: none;
    background: linear-gradient(105deg, #E9F4FF 0%, #DFEFFF 100%);
    border-radius: 16px;
    padding: 40px;
    animation: fadeIn 0.4s ease;
}

.sub_service_build_tab_panel.active {
    display: block;
}

.sub_service_build_tab_section {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 16px;
    background: #FFF;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sub_service_build_panel_title {
    color: #0D1A3A;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

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

.sub_service_build_features_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.sub_service_build_feature_item {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 0.5px solid #DDE0E3;
    background: #FFF;
    transition: all 0.3s ease;
}

.sub_service_build_feature_item:hover {
    border: 0.5px solid #DFE8F5;
    background: #F7FBFF;
}

.sub_service_build_feature_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub_service_build_feature_text {
    color: #3D4861;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}

/* ================================
   Our Process Section Base Styles
   ================================ */
.sub_service_our_process_section {
    padding: 150px 80px;
    background-color: #fff;
    overflow: hidden;
}

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

.our_process_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;
}

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

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

.our_process_container {
    padding-top: 124px;
}

/* Desktop - Horizontal Layout */
.our_process_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.our_process_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.our_process_card_icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    gap: 5.689px;
    border-radius: 14.222px;
    margin-bottom: 64px;
    flex-shrink: 0;
}

.our_process_card_icon_red {
    background: #FF5151;
    box-shadow: 0 46.091px 33.317px 0 rgba(255, 81, 81, 0.05), 0 27.391px 18.12px 0 rgba(255, 81, 81, 0.04), 0 14.222px 9.244px 0 rgba(255, 81, 81, 0.04), 0 5.794px 4.635px 0 rgba(255, 81, 81, 0.03), 0 1.317px 2.239px 0 rgba(255, 81, 81, 0.02);
}

.our_process_card_icon_blue {
    background: #008BCB;
    box-shadow: 0 46.091px 33.317px 0 rgba(0, 139, 203, 0.05), 0 27.391px 18.12px 0 rgba(0, 139, 203, 0.04), 0 14.222px 9.244px 0 rgba(0, 139, 203, 0.04), 0 5.794px 4.635px 0 rgba(0, 139, 203, 0.03), 0 1.317px 2.239px 0 rgba(0, 139, 203, 0.02);
}

.our_process_card_icon_yellow {
    background: #F7B718;
    box-shadow: 0 46.091px 33.317px 0 rgba(247, 183, 24, 0.05), 0 27.391px 18.12px 0 rgba(247, 183, 24, 0.04), 0 14.222px 9.244px 0 rgba(247, 183, 24, 0.04), 0 5.794px 4.635px 0 rgba(247, 183, 24, 0.03), 0 1.317px 2.239px 0 rgba(247, 183, 24, 0.02);
}

.our_process_card_icon_green {
    background: #34C759;
    box-shadow: 0 46.091px 33.317px 0 rgba(52, 199, 89, 0.05), 0 27.391px 18.12px 0 rgba(52, 199, 89, 0.04), 0 14.222px 9.244px 0 rgba(52, 199, 89, 0.04), 0 5.794px 4.635px 0 rgba(52, 199, 89, 0.03), 0 1.317px 2.239px 0 rgba(52, 199, 89, 0.02);
}

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

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

/* Horizontal Connector (Desktop) */
.our_process_connector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 28px;
    flex: 0 0 auto;
    width: 100px;
}

.connector_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 5px;
}

.connector_dot_red {
    background: #FF5151;
}

.connector_dot_blue {
    background: #008BCB;
}

.connector_dot_yellow {
    background: #F7B718;
}

.connector_dot_green {
    background: #34C759;
}

.connector_line {
    flex: 1;
    height: 4px;
    position: relative;
}

.connector_line_red_blue {
    height: 3px;
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(90deg, #fedbdb 0%, #cde7f3 100%);
    -webkit-mask: repeating-linear-gradient(90deg, transparent, transparent 4px, black 4px, black 14px);
    mask: repeating-linear-gradient(90deg, transparent, transparent 4px, black 4px, black 14px);
}

.connector_line_blue_yellow {
    height: 3px;
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(90deg, #cde7f3 0%, #faefd2 100%);
    -webkit-mask: repeating-linear-gradient(90deg, transparent, transparent 4px, black 4px, black 14px);
    mask: repeating-linear-gradient(90deg, transparent, transparent 4px, black 4px, black 14px);
}

.connector_line_yellow_green {
    height: 3px;
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(90deg, #faefd2 0%, #d7f3dc 100%);
    -webkit-mask: repeating-linear-gradient(90deg, transparent, transparent 4px, black 4px, black 14px);
    mask: repeating-linear-gradient(90deg, transparent, transparent 4px, black 4px, black 14px);
}

/* Mobile/Tablet - Vertical Timeline */
.our_process_timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.our_process_timeline_item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
}

.our_process_timeline_track {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline_icon_wrapper {
    position: relative;
    z-index: 2;
}

.timeline_icon_wrapper .our_process_card_icon {
    margin-bottom: 0;
}

.timeline_line {
    width: 3px;
    flex: 1;
    min-height: 40px;
    margin: 12px 0;
}

.timeline_line_red_blue {
    background: linear-gradient(180deg, #FF5151 0%, #008BCB 100%);
}

.timeline_line_blue_yellow {
    background: linear-gradient(180deg, #008BCB 0%, #F7B718 100%);
}

.timeline_line_yellow_green {
    background: linear-gradient(180deg, #F7B718 0%, #34C759 100%);
}

.timeline_line_green_red {
    background: linear-gradient(180deg, #34C759 0%, #FF5151 100%);
}

.our_process_timeline_content {
    flex: 1;
    padding: 8px 0 40px 0;
}

.our_process_timeline_content .our_process_card_title {
    text-align: left;
    margin-bottom: 12px;
}

.our_process_timeline_content .our_process_card_description {
    text-align: left;
}

.our_process_timeline_item.last_item .our_process_timeline_content {
    padding-bottom: 0;
}

/* Visibility Controls */
.our_process_desktop_only {
    display: block;
}

.our_process_mobile_only {
    display: none;
}

/* ================================
   Technologies Section Base Styles
   ================================ */
.sub_service_technologies_section {
    padding: 150px 80px;
    background-color: #F8F9FA;
}

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

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

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

.sub_service_technologies_container {
    padding: 74px 0px;
}

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

.sub_service_technologies_card {
    display: flex;
    padding: 24px 10px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
    background: #FFF;
    border: 1px solid transparent;
    height: 100%;
    transition: all 0.5s ease;
}

.sub_service_technologies_card:hover {
    border: 1px solid #8ACAE7;
    background: #FFF;
    box-shadow: 0 4px 12px 0 rgba(13, 26, 58, 0.12);
}

.sub_service_technologies_card_header {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

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

.sub_service_technologies_card_title {
    color: #0D1A3A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 0px !important;
}

.sub_service_technologies_card_subtitle {
    color: #5D667B;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.sub_service_technologies_card_divider {
    width: 100%;
    height: 1px;
    background: #EAEAEA;
}

.sub_service_technologies_card_body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.sub_service_technologies_card_body_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.sub_service_technologies_card_icon {
    display: flex;
    width: 76px;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.sub_service_technologies_card_icon:hover {
    border: 1px solid #DFE8F5;
    background: #F7FBFF;
}

.sub_service_technologies_card_icon_image {
    width: 28px;
    height: 28px;
    transition: all 0.5s ease;
    mix-blend-mode: luminosity;
}

.sub_service_technologies_card_icon:hover .sub_service_technologies_card_icon_image {
    mix-blend-mode: normal;
}

.sub_service_technologies_card_icon_text {
    color: #5D667B;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 14px;
    text-align: center;
}

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

/* ================================
   Explore Section Base Styles
   ================================ */
.sub_service_explore_section {
    padding: 150px 80px;
    background-color: #f8f9fa;
}

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

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

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

.sub_service_explore_container {
    padding: 80px 0;
}

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

.sub_service_explore_card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid #E8EAEC;
    background: #FFF;
    transition: all 0.5s ease;
    height: 100%;
}

.sub_service_explore_card:hover {
    background: #008BCB;
    border: 1px solid #008BCB;
}

.sub_service_explore_card:hover .sub_service_explore_card_header .sub_service_explore_card_icon {
    background: #fff;
}

.sub_service_explore_card:hover .sub_service_explore_card_header .sub_service_explore_card_icon svg path {
    stroke: #008BCB;
}

.sub_service_explore_card:hover .sub_service_explore_card_header .sub_service_explore_card_title {
    color: #fff;
}

.sub_service_explore_card:hover .sub_service_explore_card_description {
    color: #fff;
}

.sub_service_explore_card_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    transition: all 0.5s ease;
}

.sub_service_explore_card_icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    gap: 10.667px;
    border-radius: 16px;
    background: #008BCB;
    transition: all 0.5s ease;
}

.sub_service_explore_card_icon svg path {
    stroke: #fff;
    transition: all 0.5s ease;
}

.sub_service_explore_card_title {
    color: #0D1A3A;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

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

.sub_service_explore_section_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sub_service_explore_section_link {
    text-decoration: none !important;
    height: 100%;
}