/* Solutions Section Styles */
.solutions-sol {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: solutionsGradient 15s ease infinite;
    color: #fff;
    overflow: hidden;
}

@keyframes solutionsGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Decorative Elements */
.solutions-sol::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

/* Section Header Styling */
.solutions-sol .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.solutions-sol .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.solutions-sol .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fdbb2d, #b21f1f);
    border-radius: 2px;
}

.solutions-sol .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Solutions Content Styling */
.solutions-sol .solutions-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Solution Category Styling */
.solutions-sol .solution-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solutions-sol .solution-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solutions-sol .solution-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.solutions-sol .category-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.solutions-sol .category-title i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Solution Items Styling */
.solutions-sol .solution-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solutions-sol .solution-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-sol .solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.solutions-sol .solution-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.solutions-sol .solution-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.solutions-sol .solution-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Tech Grid Styling */
.solutions-sol .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.solutions-sol .tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.solutions-sol .tech-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.solutions-sol .tech-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fdbb2d;
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-sol .tech-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.solutions-sol .tech-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Solution Illustration Container */
.solution-illustration {
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.illustration-1 {
    top: 10%;
    right: 5%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2"/></svg>');
    background-size: contain;
    animation: rotate 30s linear infinite;
}

.illustration-2 {
    bottom: 10%;
    left: 5%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2"/></svg>');
    background-size: contain;
    animation: rotate 25s linear infinite reverse;
}

/* Amazing Illustration Elements */
.amazing-illustration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.energy-wave {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, rgba(253, 187, 45, 0), rgba(253, 187, 45, 0.1), rgba(253, 187, 45, 0));
    transform: skewY(-3deg);
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: skewY(-3deg) translateY(0); opacity: 0.1; }
    50% { transform: skewY(-3deg) translateY(30px); opacity: 0.3; }
}

.energy-burst {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.3) 0%, rgba(253, 187, 45, 0) 70%);
    animation: burstPulse 5s ease-in-out infinite;
}

.burst-1 {
    top: 30%;
    right: 15%;
    animation-delay: 0s;
}

.burst-2 {
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 1.5s;
}

.burst-3 {
    top: 60%;
    right: 30%;
    width: 100px;
    height: 100px;
    animation-delay: 3s;
}

@keyframes burstPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.energy-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    animation: connectionPulse 4s ease-in-out infinite;
    transform-origin: left center;
}

.connection-1 {
    top: 35%;
    left: 20%;
    width: 300px;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 65%;
    right: 25%;
    width: 250px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.connection-3 {
    top: 50%;
    left: 40%;
    width: 200px;
    transform: rotate(10deg);
    animation-delay: 2s;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.1; height: 1px; }
    50% { opacity: 0.5; height: 2px; }
}

.energy-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 {
    top: 35%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 65%;
    right: 25%;
    animation-delay: 1s;
}

.node-3 {
    top: 50%;
    left: 40%;
    animation-delay: 2s;
}

.node-4 {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.node-5 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.node-6 {
    top: 60%;
    right: 30%;
    animation-delay: 2.5s;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Icons */
.solutions-sol .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.solutions-sol .floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatIcon 15s linear infinite;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000%) rotate(360deg);
        opacity: 0;
    }
}

/* Solution Showcase */
.solutions-sol .solution-showcase {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.solutions-sol .showcase-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.solutions-sol .showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solutions-sol .showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.solutions-sol .showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.solutions-sol .showcase-image {
    height: 200px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solutions-sol .showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 42, 108, 0.6), rgba(178, 31, 31, 0.6), rgba(253, 187, 45, 0.6));
    opacity: 0.7;
    z-index: 1;
}

.solutions-sol .showcase-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.solutions-sol .showcase-content {
    padding: 20px;
}

.solutions-sol .showcase-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.solutions-sol .showcase-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.solutions-sol .showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
}

.solutions-sol .showcase-tags {
    display: flex;
    justify-content: center;
    width: 100%;
}

.solutions-sol .detail-button {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #34D399 0%, #3B82F6 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    text-align: center;
    border: none;
    cursor: pointer;
}

.solutions-sol .detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #3B82F6 0%, #34D399 100%);
}

.solutions-sol .detail-button i {
    font-size: 0.9rem;
}

/* Call to Action */
.solutions-sol .solutions-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.solutions-sol .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.solutions-sol .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.solutions-sol .cta-button i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .solutions-sol .solution-items,
    .solutions-sol .tech-grid,
    .solutions-sol .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-sol {
        padding: 80px 0;
    }
    
    .solutions-sol .section-title {
        font-size: 2.5rem;
    }
    
    .solutions-sol .solution-category {
        padding: 30px;
    }
    
    .solutions-sol .category-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .solutions-sol .solution-items,
    .solutions-sol .tech-grid,
    .solutions-sol .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-sol .section-title {
        font-size: 2rem;
    }
    
    .solutions-sol .category-title {
        font-size: 1.5rem;
    }
}