/* Container */
.techStack {
   
    max-width: 100vw;
    padding: 20px;
    /* Seitlicher Abstand */
    margin: 0;
}

/* Frame Box */
.tech-frame {
padding: 20px;    margin: 0 auto;
    /* Zentriert */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    /* Feinschliff: Weicherer Schatten */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    backdrop-filter: blur(6px);
    /* Feinschliff: Etwas stärkerer Blur */
}

/* Titel */
.tech-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 30px 0;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
}

/* Icons */
.tech-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    /* Feinschliff: Mehr Abstand */
    margin-bottom: 40px;
    /* Feinschliff: Mehr Raum zu Karten */
}

.tech-icon {
    width: 60px;
    /* Optimierte Größe */
    height: 60px;
    object-fit: contain;
}

.tech-icon:hover {
    filter: grayscale(0%) opacity(1);
    /* Farbe bei Hover */
    transform: scale(1.15);
    /* Etwas stärkerer Zoom */
    box-shadow: 0 0 8px rgba(0, 255, 194, 0.5);
    /* Feinschliff: #00ffc2-Glow */
}

/* Layout */
.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Feinschliff: Etwas breitere Karten */
    gap: 40px;
    /* Feinschliff: Mehr Abstand */
}

/* Cards */
.tech-card {
    background: rgba(0, 0, 0, 0.5);
    /* Angepasst an service-card */
    border-left: 4px solid #00ffc2;
    padding: 25px;
    border-radius: 6px;
    color: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    /* Feinschliff: Mehr Transition */
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
    border-color: #00ffc2;
    /* Feinschliff: Verstärkt Akzent */
}

/* Card Titel */
.tech-card h5 {
    font-size: 1rem;
    font-weight: 700;
    /* Feinschliff: Stärker für Hierarchie */
    margin: 0 0 15px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
}

/* Sub-Cards */
.sub-card {
    margin-top: 25px;
    /* Feinschliff: Mehr Luft */
}

/* Sub-Card Titel */
.sub-card h6 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 10px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
}

/* Card Text */
.tech-card p,
.sub-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
    color: #ffffff;
}

/* Hervorhebungen */
.tech-card strong {
    font-weight: 500;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .techStack {
        padding: 15px;
        /* Etwas weniger für Mobile */
    }

    .tech-title {
        font-size: 0.9375rem;
        margin: 0 0 20px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .tech-icons {
        gap: 20px;
        margin-bottom: 30px;
    }

    .tech-icon {
        width: 48px;
        /* Optimierte Mobile-Größe */
        height: 48px;
    }

    .tech-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-card h5 {
        font-size: 0.9375rem;
        margin: 0 0 10px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .sub-card h6 {
        font-size: 0.9375rem;
        margin: 0 0 8px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .tech-card p,
    .sub-card p {
        font-size: 0.9375rem;
        margin: 0 0 15px;
        padding-left: 8px;
        padding-right: 8px;
    }
}