/* Latest Solutions Section - Premium Blue Interactive Carousel Design */
.latest-solutions-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 50%, #0f1629 75%, #0a1220 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Premium Blue Background Effects */
.latest-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.latest-solutions-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header - Premium Blue Glassmorphism */
.solutions-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 40px;
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        0 12px 40px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Blue Badge */
.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 16px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solutions-badge:hover {
    background: rgba(30, 58, 138, 0.3);
    border-color: rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.solutions-badge svg {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.solutions-main-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(30, 58, 138, 0.5);
}

.solutions-main-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solutions-main-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: #bfdbfe; /* Lighter blue for better contrast */
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Carousel Container - Premium Blue Glassmorphism */
.solutions-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.solutions-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solutions-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.solution-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    position: relative;
}

/* Solution Content - Premium Blue Glass Effects */
.solution-content-area {
    flex: 1;
    max-width: 500px;
    position: relative;
    padding: 30px;
    background: rgba(30, 58, 138, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 12px 35px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.solution-category {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.solution-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #f8fafc; /* Very light blue for better contrast */
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #bfdbfe; /* Lighter blue for better contrast */
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.solution-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.solution-features li {
    font-size: 0.9rem;
    color: #bfdbfe; /* Lighter blue for better contrast */
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
    transition: all 0.3s ease;
}

.solution-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.6);
}

.solution-content-area:hover .solution-features li {
    transform: translateX(5px);
    color: #dbeafe; /* Even lighter blue on hover */
}

.solution-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.solution-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-buttons .btn-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solution-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.solution-buttons .btn-outline {
    background: rgba(30, 58, 138, 0.15);
    color: var(--text-color);
    border: 1px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solution-buttons .btn-outline:hover {
    background: rgba(30, 58, 138, 0.25);
    color: var(--text-color);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Solution Image - Premium Blue Glass Effects */
.solution-image-area {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.solution-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.4),
        0 0 30px rgba(30, 58, 138, 0.3);
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 64, 175, 0.3) 0%,
        rgba(37, 99, 235, 0.2) 50%,
        transparent 100%
    );
    z-index: 1;
    border-radius: 20px;
}

.solution-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(1.1);
    position: relative;
    z-index: 1;
}

.solution-tech-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(30, 64, 175, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Carousel Navigation - Premium Blue Glass Effects */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(30, 64, 175, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 6px 20px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-nav:hover {
    background: rgba(30, 64, 175, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

/* Carousel Indicators - Premium Blue Glass Effects */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-indicator.active {
    background: #1e40af;
    transform: scale(1.2);
    box-shadow: 
        0 0 15px rgba(30, 58, 138, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-indicator:hover {
    background: rgba(30, 58, 138, 0.7);
    transform: scale(1.1);
}

/* Auto-play Progress Bar with Premium Blue */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    transition: width 0.1s linear;
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 0 10px rgba(30, 58, 138, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Call to Action - Premium Blue Glass Effects */
.solutions-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        0 12px 40px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solutions-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.solutions-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.solutions-cta-btn svg {
    transition: transform 0.3s ease;
}

.solutions-cta-btn:hover svg {
    transform: translateX(3px);
}

.solutions-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solutions-cta-text span {
    font-size: 1rem;
    font-weight: 600;
}

.solutions-cta-text small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(30, 58, 138, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        0 2px 8px rgba(30, 58, 138, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
}

.floating-element:nth-child(5) {
    bottom: 60%;
    left: 60%;
}

.floating-element:nth-child(6) {
    top: 80%;
    right: 50%;
}

/* Premium Blue Carousel Effects */
.solutions-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .latest-solutions-section {
        padding: 70px 0;
    }
    
    .solutions-header {
        margin-bottom: 40px;
        padding: 35px;
    }
    
    .solutions-carousel-container {
        padding: 0 50px;
    }
    
    .solution-slide {
        gap: 30px;
        padding: 35px;
    }
    
    .solution-content-area {
        padding: 25px;
    }
    
    .solution-image img {
        height: 280px;
    }
    
    .solutions-cta {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .latest-solutions-section {
        padding: 60px 0;
    }
    
    .solutions-header {
        margin-bottom: 35px;
        padding: 30px;
    }
    
    .solutions-carousel-container {
        padding: 0 40px;
    }
    
    .solution-slide {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }
    
    .solution-content-area,
    .solution-image-area {
        max-width: 100%;
        padding: 25px;
    }
    
    .solution-image img {
        height: 240px;
    }
    
    .solution-buttons {
        justify-content: center;
    }
    
    .solutions-cta {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .latest-solutions-section {
        padding: 50px 0;
    }
    
    .solutions-header {
        margin-bottom: 30px;
        padding: 25px;
    }
    
    .solutions-carousel-container {
        padding: 0 0px;
    }
    
    .solution-slide {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .solution-content-area {
        padding: 20px;
    }
    
    .solution-image img {
        height: 200px;
    }
    
    .solution-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .solution-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .carousel-nav svg {
        width: 14px;
        height: 14px;
    }
    
    .solutions-cta {
        padding: 20px;
    }
    
    .solutions-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .solution-slide {
        padding: 10px 10px;
    }
    
    .solution-content-area {
        padding: 16px;
    }
    
    .solution-image img {
        height: 180px;
    }
    
    .solution-buttons .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .solutions-cta {
        padding: 16px;
    }
    
    .solutions-cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .latest-solutions-section {
        padding: 100px 0;
    }
    
    .solutions-header {
        margin-bottom: 60px;
        padding: 50px;
    }
    
    .solutions-carousel-container {
        padding: 0 80px;
    }
    
    .solution-slide {
        gap: 50px;
        padding: 50px;
    }
    
    .solution-content-area {
        padding: 40px;
    }
    
    .solution-image img {
        height: 360px;
    }
    
    .solutions-cta {
        padding: 40px;
    }
    
    .solutions-cta-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Performance optimizations */
.solutions-carousel-track {
    will-change: transform;
    backface-visibility: hidden;
}

.solution-image img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Accessibility */
.carousel-nav:focus-visible,
.carousel-indicator:focus-visible {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .solutions-carousel-track {
        transition: none;
    }
    
    .solution-image img {
        transition: none;
    }
    
    .floating-element {
        animation: none;
    }
    
    .latest-solutions-section::before,
    .latest-solutions-section::after {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .solutions-carousel {
        border-width: 2px;
        border-color: rgba(30, 58, 138, 0.5);
    }
    
    .carousel-nav {
        background: #1e40af;
        border: 2px solid white;
    }
    
    .solution-tech-badge {
        background: #1e40af;
        border-color: white;
    }
    
    .solutions-header,
    .solution-content-area,
    .solutions-cta {
        border-width: 2px;
        border-color: rgba(30, 58, 138, 0.4);
    }
}