.technical-features {
    position: relative;
    overflow: hidden;
}

.technical-features__image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    max-width: 90%;
}

.technical-features__image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.text-gray-300 {
    color: rgba(203, 213, 225, 0.8);
}

.tech-features-grid {
    margin-top: 10px;
}

.tech-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.tech-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.tech-feature-card:hover::before {
    opacity: 1;
}

.tech-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--feature-color, #3b82f6), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.tech-feature-card:nth-child(1)::before {
    --feature-color: #3b82f6;
}

.tech-feature-card:nth-child(2)::before {
    --feature-color: #10b981;
}

.tech-feature-card:nth-child(3)::before {
    --feature-color: #6366f1;
}

.tech-feature-card:nth-child(4)::before {
    --feature-color: #f59e0b;
}

.tech-feature-card:nth-child(5)::before {
    --feature-color: #ec4899;
}

.tech-feature-card:nth-child(6)::before {
    --feature-color: #8b5cf6;
}

.tech-feature-card:nth-child(7)::before {
    --feature-color: #ef4444;
}

.tech-feature-card:nth-child(8)::before {
    --feature-color: #0ea5e9;
}

.tech-feature-card:nth-child(9)::before {
    --feature-color: #8b5cf6;
}

.tech-feature-card:nth-child(10)::before {
    --feature-color: #10b981;
}

.tech-feature-card:nth-child(11)::before {
    --feature-color: #3b82f6;
}

.tech-feature-card:nth-child(12)::before {
    --feature-color: #f59e0b;
}

.tech-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.tech-feature-card:hover .tech-feature-icon {
    transform: scale(1.1);
}

.tech-feature-content {
    flex-grow: 1;
}

.tech-feature-content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.tech-feature-content p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
    line-height: 1.5;
}

.thm-btn--gradient.style-2 {
    background: linear-gradient(to right, #3b82f6, #6366f1);
    border: none;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.thm-btn--gradient.style-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 1199px) {
    .tech-feature-card {
        padding: 16px;
    }

    .tech-feature-content h4 {
        font-size: 15px;
    }

    .tech-feature-content p {
        font-size: 13px;
    }

    .tech-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
}

@media (max-width: 991px) {
    .technical-features__image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .col-md-6 {
        margin-bottom: 15px;
    }

    .tech-feature-card {
        height: auto;
    }
}