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

/* Base animation state - hidden initially */
/* FIXED: Only transition opacity and transform, not "all" */
.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; }

/* ================================
   Hero Section - On Load Animation
   ================================ */

/* Hide hero elements initially */
.hero_section .hero_review_container,
.hero_section .hero_grid h1,
.hero_section .hero_grid .hero_title,
.hero_section .hero_grid p,
.hero_section .hero_grid .hero_description,
.hero_section .hero_button_container,
.hero_section .hero_bottom_section,
.hero_section .projects_section,
.hero_section .hero_service_section {
    opacity: 0;
    transform: translateY(30px);
}

/* Animate hero elements on page load using CSS animation */
.hero_section .hero_review_container {
    animation: heroFadeUp 0.7s ease-out 0.1s forwards;
}

.hero_section .hero_grid h1,
.hero_section .hero_grid .hero_title {
    animation: heroFadeUp 0.7s ease-out 0.25s forwards;
}

.hero_section .hero_grid p,
.hero_section .hero_grid .hero_description {
    animation: heroFadeUp 0.7s ease-out 0.4s forwards;
}

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

.hero_section .hero_bottom_section {
    animation: heroFadeUp 0.7s ease-out 0.7s forwards;
}

.hero_section .projects_section {
    animation: heroFadeUp 0.7s ease-out 0.85s forwards;
}

.hero_section .hero_service_section {
    animation: heroFadeUp 0.7s ease-out 1s forwards;
}

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

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

.hero_section .container {
    position: relative;
    z-index: 2;
}

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

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

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

/* ================================
   Avatar Group Container
   ================================ */
.hero_review_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.avatar_group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.avatar_group_wrapper {
    width: 35px;
    height: 35px;
    border-radius: 100px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avatar_group_wrapper_left {
    margin-left: -12px;
}

.hero_avatar_image {
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.hero_review_text {
    color: #3D4861;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 28.9px;
}

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

.hero_bottom_section {
    padding-top: 100px;
}

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

.divider {
    height: 1px;
    width: 371px;
    background-color: #F3F3F3;
}

.hero_bottom_section_text {
    color: #3D4861;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 28.9px;
}

.projects_section {
    padding-top: 56px;
}

.projects_section .container .owl-carousel .owl-stage-outer .owl-stage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.item {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_service_section {
    padding: 30px 100px 0 100px;
}

/* ================================
   Why Consign Section
   ================================ */
.why_consign_section {
    padding: 150px;
    background-color: #FAFBFC;
}

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

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

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

/* FIXED: Separate hover transitions from fade animation */
.why_consign_card {
    display: flex;
    flex-direction: row;
    padding: 32px;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    background: #FFF;
    border: 2px solid #fff;
}

/* Hover transition - only applies after animation completes */
.why_consign_card.animated {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why_consign_card:hover {
    border: 1.5px solid #8ACAE7;
    box-shadow: 0 4px 12px 0 rgba(13, 26, 58, 0.05);
}

.why_consign_card_icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #E6F3FA;
    transition: background-color 0.3s ease;
}

.why_consign_card:hover .why_consign_card_icon {
    background: #008BCB;
}

.why_consign_card_icon svg path {
    stroke: #008BCB;
    transition: stroke 0.3s ease;
}

.why_consign_card:hover .why_consign_card_icon svg path {
    stroke: #FFF;
}

.why_consign_card_title {
    color: #3D4861;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
    margin-bottom: 0px;
}

/* ================================
   Piller Of Growth Section
   ================================ */
.piller_of_growth_section {
    display: flex;
    padding: 150px 80px;
    flex-direction: column;
    align-items: center;
    background: #002333;
}

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

.our_services_badge {
    display: inline-block;
    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;
}

.piller_of_growth_title {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px;
    padding: 16px 0;
}

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

.piller_of_growth_content {
    padding: 80px 0;
}

/* FIXED: Separate hover transitions from fade animation */
.piller_of_growth_card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 24px;
    border: 1px solid #003954;
    width: 100%;
}

/* Hover transition - only applies after animation completes */
.piller_of_growth_card.animated {
    transition: margin-top 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.piller_of_growth_card:hover {
    margin-top: -10px;
    background-color: #002D43;
    border: 1px solid #002D43;
    box-shadow: 0 4px 12px 0 rgba(0, 76, 112, 0.20);
}

.piller_of_growth_card_icon {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 20px 18px;
    justify-content: center;
    align-items: center;
    gap: 10.667px;
    border-radius: 10.667px;
    background: #003A55;
}

.piller_of_growth_card_icon svg {
    stroke: #fff;
    transition: stroke 0.3s ease;
}

.piller_of_growth_card:hover .piller_of_growth_card_icon svg {
    stroke: #008BCB;
}

.piller_of_growth_card_title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.piller_of_growth_card_sub_title {
    color: #E7E8EB;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
}

.piller_of_growth_card_link {
    color: #E7E8EB !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
}

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

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

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

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

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

.piller_of_growth_bottom_text {
    color: #E7E8EB;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.4px;
    margin-bottom: 24px;
}

/* ================================
   Products Section - Nested Scroll Layout
   ================================ */
.products_section {
    display: flex;
    padding: 100px 80px;
    flex-direction: column;
    align-items: center;
}

/* Header */
.products_header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

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

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

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

/* Products Container - Fixed Height with Nested Scroll */
.products_scroll_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    height: 35vh;
    min-height: 400px;
}

/* Left column - nested scrollable content with snap */
.products_content_col {
    flex: 1;
    width: 50%;
    height: 100%;
    overflow-y: auto;
    /* padding-right: 20px; */
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    
    /* Custom scrollbar */
    scrollbar-width: none;
    /* scrollbar-color: #008BCB #E6F3FA; */
}

.products_content_col::-webkit-scrollbar {
    width: 6px;
}

.products_content_col::-webkit-scrollbar-track {
    background: #E6F3FA;
    border-radius: 3px;
}

.products_content_col::-webkit-scrollbar-thumb {
    background: #008BCB;
    border-radius: 3px;
}

.products_content_col::-webkit-scrollbar-thumb:hover {
    background: #006a9e;
}

/* Each product row - full height, snap to start */
.products_row {
    min-height: 100%;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 20px 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.products_row.active {
    opacity: 1;
}

.products_row:first-child {
    padding-top: 0;
}

.products_row:last-child {
    padding-bottom: 0;
}

/* Right column - fixed image display */
.products_image_col {
    flex: 1;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.products_image_sticky {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image slides - stacked, only active visible */
.products_image_slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* max-width: 500px; */
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products_image_slide.active {
    opacity: 1;
}

.products_image_slide img.products_image {
    width: 100%;
    /* max-width: 500px; */
    height: auto;
    max-height: 45vh;
    object-fit: contain;
}

/* Product Content Styling */
.products_title_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.products_title_row_image_col {
    flex-shrink: 0;
}

.product_title_image {
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
    border-radius: 8px;
    background: #D9D9D9;
}

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

.products_subtitle {
    color: #9096A4;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.products_description {
    color: #3D4861;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    margin: 16px 0;
}

.products_title_badge_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.products_title_badge {
    display: flex;
    height: 32px;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid #B0DBEF;
    background: #E8F8FF;
}

.products_title_badge_text {
    color: #008BCB;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.products_highlights_title {
    color: #0D1A3A;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.products_highlights_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.products_highlights_row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.products_highlights_description {
    color: #3D4861;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.products_link {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #008BCB !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-top: 12px;
}

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

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

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

/* Mobile/Tablet Card Layout */
.products_cards_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

/* FIXED: Separate hover transitions from fade animation */
.products_card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 26, 58, 0.08);
}

/* Hover transition - only applies after animation completes */
.products_card.animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.products_card_image_wrapper {
    width: 100%;
    overflow: hidden;
    background: #F5F7FA;
}

.products_card_image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.products_card_content {
    padding: 20px;
}

.products_card_header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.products_card_logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #D9D9D9;
    flex-shrink: 0;
}

.products_card_title_group {
    flex: 1;
}

.products_card_highlights {
    margin-top: 16px;
}

.products_card_link_wrapper {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E8EBF0;
}

/* Responsive Visibility Controls */
.products_desktop_only {
    display: flex;
}

.products_mobile_only {
    display: none;
}

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

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

/* Desktop - Auto Scrolling Carousel */
.testimonials_carousel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

/* Edge fade effect */
.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 */
.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;
}

/* Reverse direction for second row */
.slider_row.reverse .slider_track {
    animation: scrollRight 30s linear infinite;
}

/* Testimonial Card - Desktop */
.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 */
.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 */
.star_rating {
    display: flex;
    gap: 2px;
}

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

.star.empty {
    color: #E0E0E0;
}

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

/* Animation Keyframes */
@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 */
.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;
}

/* Custom Navigation */
.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;
}

/* Owl Carousel Dots Override */
.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;
}

/* Owl Carousel Overrides */
.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;
}

/* Responsive Visibility Controls */
.testimonials_desktop_only {
    display: flex;
}

.testimonials_mobile_only {
    display: none;
}

/* ================================
   Industries We Serve Section
   ================================ */
.industries_we_serve_section {
    padding: 150px 80px;
    background-color: #FFF;
    overflow: hidden;
}

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

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

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

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

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

/* FIXED: Separate hover transitions from fade animation */
.industries_we_serve_card {
    height: 100%;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 12px;
    background: #F8F9FA;
    border: 1px solid transparent;
}

/* Hover transition - only applies after animation completes */
.industries_we_serve_card.animated {
    transition: border-color 0.3s ease, background-color 0.3s ease, margin-top 0.3s ease, box-shadow 0.3s ease;
}

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

.industries_we_serve_card_icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #FFF;
    transition: background-color 0.3s ease;
}

.industries_we_serve_card:hover .industries_we_serve_card_icon {
    background: #008BCB;
}

.industries_we_serve_card_icon svg path {
    stroke: #008BCB;
    transition: stroke 0.3s ease;
}

.industries_we_serve_card:hover .industries_we_serve_card_icon svg path {
    stroke: #FFF;
}

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

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