.password-strength {
    height: 8px;
    border-radius: 4px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.password-display {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    letter-spacing: 1px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.75rem;
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
    border-top: 4px solid #3498db;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.problem-solution {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.problem {
    color: #dc3545;
    font-weight: bold;
}

.solution {
    color: #28a745;
    font-weight: bold;
}

.software-card {
    background: rgba(245, 245, 245, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}


.tech-badge {
    margin: 0.5rem;
    /* oder */
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.software-card:hover {
    transform: translateY(-5px);
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

.training-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 6rem 0 3rem;
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
}

.language-tabs {
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #3776ab, #2c3e50);
    color: white;
    border-color: transparent;
}

.level-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s;
    height: 100%;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-header {
    padding: 1.5rem;
    color: white;
    border-radius: 10px 10px 0 0;
}

.level-beginner {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.level-intermediate {
    background: linear-gradient(135deg, #2196F3, #1565C0);
}

.level-advanced {
    background: linear-gradient(135deg, #9C27B0, #6A1B9A);
}

.level-body {
    padding: 1.5rem;
}

.level-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0;
}

.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.benefits-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3498db;
    position: absolute;
    left: 0;
}


.btn-training {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.language-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.python-icon {
    color: #3776ab;
}

.powershell-icon {
    color: #012456;
}

.btn-purple {
    background-color: #9C27B0;
    border-color: #9C27B0;
    color: white;
}

.btn-outline-purple {
    border-color: #9C27B0;
    color: #9C27B0;
}

.btn-outline-purple:hover {
    background-color: #9C27B0;
    color: white;
}
    
/* News Ticker spezifische Styles */
.ticker-preview {
    background-color: #f0f8ff;
    border: 1px solid #3498db;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
    font-family: 'Righteous', sans-serif;
    color: darkblue;
    font-size: 1.2rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.training-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    overflow: hidden;
    background-color: white;
}

.training-card-body {
    padding: 2rem;
}

.training-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.training-card:hover .training-img {
    transform: scale(1.05);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.price-subtext {
    font-size: 0.8rem;
    color: #6c757d;
}




        
.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.benefit-item {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

body {

    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

:root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --clienttool-color: #3a4f6e;
            --module-color: #5a6b8c;
        }
h1, h2, h3 {
    color: rgb(0, 0, 0); /* Überschriftenfarbe anpassen */
}

.navbar {
  width: 100%;
  max-width: 100%;

}

/* Zusätzliche Anpassungen */
.navbar-brand {
    font-weight: bold;
}


.footer {
    padding: 5px 0;
}

/* Hero Section Anpassungen */
.hero-section {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    padding: 100px 0;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

/* Clienttool Notification */
.clienttool-notification {
    border-radius: 12px;
    background-color: rgba(44, 62, 80, 0.9);
    color: white;
    margin-top: 2rem;
}

.clienttool-notification h3 {
    color: white;
}

.clienttool-notification p {
    opacity: 0.9;
}

/* Badge Anpassungen */
.compatibility-badge, .badge {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .clienttool-notification .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}



.card-translucent {
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 2rem;
}

.card-translucent:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}



.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.use-case-badge {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.tech-stack-icon {
    font-size: 2rem;
    margin: 0 10px;
    color: var(--secondary-color);
    opacity: 0.8;
}

.tray-icon {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tray-icon i {
    font-size: 3.5rem;
    color: var(--clienttool-color);
}

.module-card {
    border-left: 4px solid var(--module-color);
    transition: all 0.3s ease;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-left: 6px solid var(--primary-color);
}

.module-icon {
    font-size: 1.5rem;
    color: var(--module-color);
    margin-right: 10px;
}


        
/* Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    height: 100%;
    padding: 2.5rem 2rem;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.pricing-box {
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.price-main {
    color: var(--primary-color);
    line-height: 1;
}

.price-incl {
    color: #28a745;
}

.price-tax {
    font-size: 1rem;
}

.certificate-badge .badge {
    font-weight: 500;
}

.container {
  padding-left: 5px;
  padding-right: 5px;
}

.software-img {
    
    object-fit: cover;
    width: 90%;


}

.software-download {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.version-badge {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

        .system-requirements {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 1.25rem;
            margin: 1.5rem 0;
            border-radius: 6px;
        }

        /* Passwort Generator spezifische Styles */
        #passwordResult {
            font-family: 'Courier New', monospace;
            font-size: 1.3rem;
            letter-spacing: 2px;
            font-weight: 600;
        }
        
        .generate-btn {
            font-weight: 600;
            padding: 0.75rem;
            font-size: 1.1rem;
            border-radius: 8px;
            transition: all 0.2s;
        }
        
        .generate-btn:hover {
            transform: translateY(-2px);
        }
                /* Neue Styles für Desktop-Version */
        .desktop-feature-card {
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }

        .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s ease;
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #343a40;
}

.popup-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #343a40;
}

.popup-text {
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
/* POPUP STYLES mit höherer Spezifität */
body .popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

body .popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

body .popup-content {
    background-color: white !important;
    border-radius: 12px !important;
    padding: 30px !important;
    max-width: 500px !important;
    width: 90% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transform: scale(0.8) !important;
    transition: transform 0.4s ease !important;
    position: relative !important;
}

body .popup-overlay.active .popup-content {
    transform: scale(1) !important;
}

body .popup-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: none !important;
    border: none !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    color: #6c757d !important;
    transition: color 0.2s ease !important;
}

body .popup-close:hover {
    color: #343a40 !important;
}

body .popup-icon {
    font-size: 3rem !important;
    color: #0d6efd !important;
    margin-bottom: 15px !important;
}

body .popup-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #343a40 !important;
}

body .popup-text {
    margin-bottom: 20px !important;
    color: #495057 !important;
    line-height: 1.6 !important;
}

body .popup-buttons {
    display: flex !important;
    gap: 10px !important;
    justify-content: flex-end !important;
}

/* Gallery Styles für die Software-Bilder */
.software-gallery {
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
}

/* Showcase Section */
.showcase-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.showcase-header {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 20px;
}

.showcase-body {
    padding: 25px;
}

/* Examples Grid für Anwendungsbeispiele */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.example-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.example-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Process Steps */
.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Technology Stack Badges */
.technology-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

/* Testimonials */
.testimonial {
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
}

.author {
    font-weight: bold;
    color: var(--dark-color);
    margin-top: 10px;
}

/* License Info Box */
.license-info {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

/* Text Center für Section Titles */
.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Alert für Software Test */
.alert {
    border-radius: 8px;
    border: 1px solid transparent;
}

/* Button Styles */
.btn-outline-primary, .btn-outline-secondary {
    border-width: 2px;
}

/* Responsive Design für Examples Grid */
@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .software-gallery .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .software-gallery .col-md-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }
}

/* Badge Styles für Technologien */
.badge {
    font-weight: 500;
}

/* Section Title mit underline */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1800px;
  }
  
}