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

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

/* Hide service hero elements initially */
.service_hero_section .hero_section_badge_secondary,
.service_hero_section .service_hero_section_grid h1,
.service_hero_section .service_hero_section_grid .hero_title_secondary,
.service_hero_section .service_hero_section_grid p,
.service_hero_section .service_hero_section_grid .hero_description_secondary,
.service_hero_section .hero_button_container,
.service_hero_section .service_section_tabs {
    opacity: 0;
    transform: translateY(30px);
}

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

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

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

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

.service_hero_section .service_section_tabs {
    animation: heroFadeUp 0.7s ease-out 0.7s forwards;
}

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

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

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

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

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

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

/* ================================
   Service Section Tabs (Original - in Hero)
   ================================ */
.service_section_tabs {
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

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

.service_tab {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;

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

.service_tab:hover:not(.active) {
    color: #374151;
    background: rgba(255, 255, 255, 0.5);
}

.service_tab.active {
    background: #008BCB;
    color: #FFFFFF;
    font-weight: 400;
}

.service_tab:not(.active) + .service_tab:not(.active)::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #D1D5DB;
}

.vertical_divider {
    width: 1px;
    height: 60%;
    background: #C9CCD1;
}

/* ================================
   Sticky Tabs (Auto-appear on scroll)
   ================================ */
.sticky_tabs_wrapper {
    position: fixed;
    top: 80px; /* Adjust based on your main header height */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 0;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, 
                opacity 0.4s ease, 
                visibility 0.4s ease;
    pointer-events: none;
    background: transparent;
}

.sticky_tabs_wrapper.sticky_tabs_visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sticky_tabs_inner {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

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

.sticky_tab_btn {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #5D667B;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.sticky_tab_btn:hover:not(.sticky_tab_active) {
    color: #374151;
    background: rgba(0, 139, 203, 0.1);
}

.sticky_tab_btn.sticky_tab_active {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #008BCB;
    color: #FFFFFF;
    border-radius: 6px;
}

.sticky_divider_line {
    width: 1px;
    height: 24px;
    background: #E5E7EB;
    flex-shrink: 0;
}

/* ================================
   Service Section
   ================================ */

.service_section {
    padding: 0 80px 150px 80px;
}

.service_card_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    flex-shrink: 0;
}

.service_card_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 100px;
    margin-top: 20px;
    gap: 50px;
    width: 100%;
}

.service_column {
    width: 50%;
}

.service_card_left {
    margin-right: 40px !important;
}

.service_card_right {
    margin-left: 40px !important;
}

.service_card_icon {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 16px 12px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.service_card_text_section {
    padding: 32px 0;
}

.service_card_title {
    color: #0D1A3A;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 46.44px;
    margin-bottom: 16px;
}

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

.service_link {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    color: #008BCB !important;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
}

.service_link svg {
    margin-left: 8px;
}

.service_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F5A623;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service_link:hover::after {
    transform: scaleX(1);
}

.service_card {
    display: flex;
    padding: 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 24px;
}

.service_card_sub_title {
    color: #68727F;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 28.9px;
}

.service_card_list_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

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

/* ================================
   Clients Trust Section
   ================================ */
.clients_trust_section {
    padding: 150px 80px;
    background-color: #F8F9FA;
    overflow: hidden;
}

.clients_trust_header {
    text-align: center;
    margin-bottom: 82px;
    padding: 0 20px;
}

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

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

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

.clients_trust_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.clients_trust_card {
    display: flex;
    padding: 32px;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #fff;
    transition: all .5s;
}

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

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

.clients_trust_card:hover .clients_trust_card_icon {
    background: #008BCB;
}

.clients_trust_card_icon svg path {
    stroke: #008BCB;
    transition: all .5s;
}

.clients_trust_card:hover .clients_trust_card_icon svg path {
    stroke: #FFF;
}

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

.clients_trust_card_description {
    color: #5D667B;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 28.9px;
}

/* ================================
   Our Process Section
   ================================ */
.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;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials_section {
    padding: 150px 0;
    background-color: #F8F9FA;
    overflow: hidden;
}

.testimonials_header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

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

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

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

.testimonials_carousel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider_row {
    position: relative;
    width: 100%;
    overflow: hidden;
    pointer-events: auto;
}

.slider_row::before,
.slider_row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider_row::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.slider_row::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.slider_track {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    pointer-events: auto;
}

.slider_row:hover .slider_track {
    animation-play-state: paused !important;
    cursor: pointer;
}

.slider_row.reverse:hover .slider_track {
    animation-play-state: paused !important;
}

.testimonial_card:hover {
    animation-play-state: paused !important;
}

.slider_track:has(.testimonial_card:hover) {
    animation-play-state: paused !important;
}

.slider_row.reverse .slider_track {
    animation: scrollRight 30s linear infinite;
}

.testimonial_card {
    display: flex;
    width: 620px;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 24px;
    background: #FFF;
    margin: 0 12px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial_card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 4px;
    background: #008BCB;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13, 26, 58, 0.1);
}

.testimonial_card:hover::before {
    opacity: 1;
}

.card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer_info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer_avatar {
    width: 56px;
    height: 56px;
    border-radius: 100px;
    object-fit: cover;
}

.owl-carousel .owl-item img {
    width: auto !important;
}

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

.star_rating {
    display: flex;
    gap: 2px;
}

.star {
    width: 18px;
    height: 18px;
    color: #F5A623;
}

.star.empty {
    color: #E0E0E0;
}

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

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile/Tablet - Owl Carousel */
.testimonials_owl_wrapper {
    padding: 0 20px;
}

.testimonials_owl_carousel {
    width: 100%;
}

.testimonial_card_mobile {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 16px;
    background: #FFF;
    margin: 10px 5px;
    height: auto;
    min-height: 200px;
}

.testimonial_card_mobile .card_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.testimonial_card_mobile .reviewer_avatar {
    width: 48px;
    height: 48px;
}

.testimonial_card_mobile .reviewer_name {
    font-size: 18px;
}

.testimonial_card_mobile .star_rating {
    margin-top: 8px;
}

.testimonial_card_mobile .review_text {
    font-size: 14px;
    line-height: 1.7;
}

.testimonials_owl_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonials_owl_prev,
.testimonials_owl_next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid white;
    box-shadow: 0 4px 20px rgba(13, 26, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0D1A3A;
}

.testimonials_owl_prev:hover,
.testimonials_owl_next:hover {
    background: #008BCB;
    border-color: #008BCB;
    color: #FFFFFF;
}

.testimonials_owl_dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials_owl_carousel .owl-dots {
    display: none !important;
}

.testimonials_owl_dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials_owl_dots .owl-dot.active {
    width: 30px;
    border-radius: 5px;
    background: #008BCB;
}

.testimonials_owl_carousel .owl-stage-outer {
    overflow: visible;
    padding: 10px 0;
}

.testimonials_owl_carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials_owl_carousel .owl-item {
    display: flex;
}

.testimonials_owl_carousel .owl-item .testimonial_card_mobile {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials_desktop_only {
    display: flex;
}

.testimonials_mobile_only {
    display: none;
}