/* Tech Solutions Section - Corrected */
.tech-solutions-section {
    background: var(--bg-hero);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.tech-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sectionntitle {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color:#fff !important;
    background: inherit !important;
    -webkit-background-clip: inherit !important;
    -webkit-text-fill-color: inherit !important;
    background-clip: inherit !important;
}

.section-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Tech Solution Cards */
.tech-solution-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-large);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.tech-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tech-solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.tech-solution-card:hover::before {
    transform: scaleX(1);
}

/* Solution Icon */
.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-solution-card:hover .solution-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.tech-solution-card:hover .solution-icon::before {
    opacity: 1;
}

/* Card Content */
.tech-solution-card h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.tech-solution-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Floating Tech Elements */
.tech-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.tech-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0.4;
    animation: techFloat 25s linear infinite;
}

.tech-element:nth-child(odd) {
    background: var(--neon-green);
}

.tech-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.tech-element:nth-child(2) { left: 20%; animation-delay: 5s; }
.tech-element:nth-child(3) { left: 30%; animation-delay: 10s; }
.tech-element:nth-child(4) { left: 40%; animation-delay: 15s; }
.tech-element:nth-child(5) { left: 50%; animation-delay: 2s; }
.tech-element:nth-child(6) { left: 60%; animation-delay: 7s; }
.tech-element:nth-child(7) { left: 70%; animation-delay: 12s; }
.tech-element:nth-child(8) { left: 80%; animation-delay: 17s; }

@keyframes techFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
        transform: scale(1);
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Scroll Animation */
.scroll-scale-in {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    animation: scaleIn 0.8s ease-out forwards;
}

.scroll-scale-in:nth-child(1) { animation-delay: 0.1s; }
.scroll-scale-in:nth-child(2) { animation-delay: 0.2s; }
.scroll-scale-in:nth-child(3) { animation-delay: 0.3s; }

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .tech-solution-card {
        padding: 3rem 2.5rem;
    }
    
    .solution-icon {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
}

/* Desktop */
@media (max-width: 1199.98px) {
    .tech-solutions-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .tech-solutions-section {
        padding: 3rem 0;
    }
    
    .tech-solution-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* Mobile Large */
@media (max-width: 767.98px) {
    .tech-solutions-section {
        padding: 2.5rem 0;
    }
    
    .tech-solution-card {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .tech-solutions-section {
        padding: 2rem 0;
    }
    
    .tech-solution-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .row {
        margin: 0 -0.5rem;
    }
    
    .col-lg-4 {
        padding: 0 0.5rem;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .tech-solution-card {
        padding: 1.25rem 0.75rem;
    }
    
    .solution-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}