/* Culoare nav */

.nav a {
    color: black; /* Change from white (#fff) to black (#000) */
}

.nav li a {
    color: black;
}


    
            /* WHY CHOOSE US */
       
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

        .animated-text p {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            font-size: 1.1rem;
            line-height: 1.6em;
            margin-bottom: 20px;
        }

        /* Staggered delays */
        .animated-text p:nth-of-type(1) {
            animation-delay: 0.5s;
        }
        .animated-text p:nth-of-type(2) {
            animation-delay: 1.5s;
        }
        .animated-text p:nth-of-type(3) {
            animation-delay: 2s;
        }

        @keyframes fadeIn {
            0% { 
                opacity: 0; 
                transform: translateY(20px);
            }
            100% { 
                opacity: 1; 
                transform: translateY(0);
            }
        }











.animated-text {
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.animated-text p {
    font-family: 'Open Sans', Arial, sans-serif; /* Custom font with fallbacks */
    font-size: 1.1rem; /* Slightly larger font size */
    line-height: 1.6; /* Improve readability */
    color: #333; /* Darker font color for visibility */
}

.animated-text.animate {
    opacity: 1; 
    transform: translateY(0); 
}


.animated-text {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 2.5s ease-out, transform 1.5s ease-out; /* Smooth fade-in and slide */
}

.animated-text.animate {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Slide to original position */
}


/* Initial state for the animation */
.animated-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333; /* Darker gray for better visibility */
    opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Start slightly lower */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Smooth transition */
}

/* Visible state after animation is triggered */
.animated-text.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to its original position */
}









/* Header transition effect */
.header-hidden {
    opacity: 0; /* Fades out */
    transform: translateY(-20px); /* Moves slightly up */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Smooth fade-out and slide-up */
}

.header-visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Resets position */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Smooth fade-in */
}



/* Rounded and Professional Header */
.rounded-header {
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    background-color: #588157; /* Example green color */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
/* Smooth transition styles for the navbar */
.site-header {
    transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.site-header.hidden {
    top: -100px; /* Move navbar off-screen */
    opacity: 0; /* Make navbar invisible */
}

.site-header.visible {
    top: 0; /* Bring navbar back into view */
    opacity: 1; /* Make navbar visible */
}

/* Hide Header */
.rounded-header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}



.service-icon-box-three-media img {
    max-width: 50px;
    margin: auto;
    display: block;
}


.h-bnr-btn {
    display: inline-block !important;
    visibility: hidden; /* Start hidden */
    opacity: 0; /* Fully transparent at the start */
    z-index: 9999 !important;
    background-color: #FF8C00; /* Bright orange */
    color: #FFFFFF; /* White text */
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 2s ease, transform 2s ease; /* Smooth fade and transform */
}

/* When the button becomes visible */
.h-bnr-btn.animate {
    visibility: visible; /* Ensure it's visible */
    opacity: 1; /* Fade to full visibility */
    transform: translateY(0); /* Reset position */
}

/* Add hover animation for extra effect */
.h-bnr-btn:hover {
    background-color: #e67e00; /* Slightly darker orange */
    transform: translateY(-5px); /* Move slightly upward */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Add shadow */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05); /* Slightly larger */
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Apply pulse animation */
.h-bnr-btn {
    animation: pulse 2s infinite; /* Continuous pulsing */
}

.h-bnr-btn {
    display: inline-block;
    visibility: hidden; /* Start as hidden */
    opacity: 0; /* Fully transparent at the start */
    background-color: #FF8C00; /* Bright orange */
    color: #FFFFFF; /* White text */
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 3s ease, visibility 3s ease; /* Smooth fade-in */
}

/* When the fade-in class is applied */
.h-bnr-btn.fade-in {
    visibility: visible; /* Make it visible */
    opacity: 1; /* Fully visible */
}


        /* Initial hidden state for the Citroën image */
        .hidden {
            opacity: 0;
            transform: translateX(100%); /* Off-screen to the right */
            transition: opacity 1s ease, transform 1s ease;
        }

        /* Animation for when the image is visible */
        .animate {
            opacity: 1;
            transform: translateX(0); /* Bring to the original position */
        }

        /* Smooth scrolling animation */
        html {
            scroll-behavior: smooth;
        }

        /* Override styles for the title-outline to ensure it is smaller */
        .h-bnr-top .title-outline {
            font-size: 1.8rem; /* Smaller text size */
            opacity: 0;
            transform: translateX(-100px); /* Start off-screen to the left */
            transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide */
        }

        /* Animation class */
        .h-bnr-top .title-outline.animate {
            opacity: 1;
            transform: translateX(0); /* Move to original position */
        }

        /* Initial state for the paragraph */
        .h-bnr-top p {
            opacity: 0;
            transform: translateY(20px); /* Start slightly below */
            transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide */
        }

        /* Initial state for the button */
        .h-bnr-btn {
            opacity: 0;
            transform: translateY(20px); /* Start slightly below */
            transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide */
        }

        /* Animated state for paragraph */
        .h-bnr-top p.animate {
            opacity: 1;
            transform: translateY(0); /* Reset to original position */
        }

        /* Animated state for button */
        .h-bnr-btn.animate {
            opacity: 1;
            transform: translateY(0); /* Reset to original position */
        }
        /* Initial state for the paragraph */
.h-bnr-top p {
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Slide in from below */
    transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide */
    font-size: 1.2rem; /* Readable text size */
    color: white; /* Contrast text color */
    margin-top: 20px; /* Space below title */
    text-align: left; /* Align the text */
}

/* Animated state for the paragraph */
.h-bnr-top p.animate {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to original position */
}

       .why-choose-animation .tw-why-choose3-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-choose-animation .col-xl-5 img {
    width: 100%;
    max-width: 90%; /* Ensures image scales appropriately */
    margin-left: auto; /* Align image to the left */
}

.why-choose-animation .col-xl-7 {
    padding-left: 30px;
}

.why-choose-animation .col-xl-7 p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-animation .container {
    max-width: 90%; /* Take up more width of the page */
}

.why-choose-animation .row {
    align-items: flex-start;
}

.why-choose-animation .section-head {
    margin-bottom: 30px;
}

.why-choose-animation .button {
    margin-top: 20px;
}     
        
        
        
        /* Style for the <p> text */
.why-choose-animation .content p {
    font-family: 'Roboto', sans-serif; /* Use a clean, modern font */
    font-size: 1.1rem; /* Slightly larger text */
    line-height: 1.8; /* Improve readability */
    color: #333; /* Dark gray for better contrast */
    letter-spacing: 0.5px; /* Subtle spacing for elegance */
    margin-bottom: 20px; /* Add spacing between paragraphs */
    text-align: justify; /* Align the text for a polished look */
    transition: color 0.3s ease; /* Smooth transition for hover effects */
}

/* Optional: Add hover effect */
.why-choose-animation .content p:hover {
    color: #588157; /* Change color to match your site's green when hovered */
}
        
        
        
        
        
        
        
        
     /* Initial hidden state for the image */
.why-choose-animation img {
    opacity: 0; /* Start invisible */
    transform: translateX(-100px); /* Positioned off-screen to the left */
    transition: opacity 1.5s ease, transform 1.5s ease; /* Smooth fade and slide in */
}

/* Animated state when the image is visible */
.why-choose-animation img.animate {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to original position */
}   
        
        
        
        
/* Image animation - sliding in from the left */
.why-choose-animation img {
    opacity: 0;
    transform: translateX(-100px); /* Start off-screen to the left */
    transition: opacity 1.8s ease, transform 1.8s ease; /* Slower and smooth easing */
}

.why-choose-animation img.animate {
    opacity: 1;
    transform: translateX(0); /* Slide into place */
}

/* Text animation - fade in and slide up slowly */
.why-choose-animation .content {
    opacity: 0; /* Start hidden */
    transform: translateY(30px); /* Slightly below the original position */
    transition: opacity 2s ease-out, transform 2s ease-out; /* Slower fade and slide */
}

.why-choose-animation .content.animate {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to original position */
}

/* Button animation - smooth fade-in with slight upward movement */
.why-choose-animation .button {
    opacity: 0;
    transform: translateY(40px); /* Start below */
    transition: opacity 2.5s ease, transform 2.5s ease; /* Slower fade and slide */
}

.why-choose-animation .button.animate {
    opacity: 1;
    transform: translateY(0); /* Reset to original position */
}

    
    
                /* WAS WIR TUN */
    
    
  .service-icon-box-title {
    display: flex;
    flex-direction: column; /* Stack heading and subtext vertically */
    align-items: flex-start; /* Align everything to the left */
    margin-left: -10px; /* Adjust left margin of the entire title section */
}

.service-icon-box-title h3.wt-title {
    margin-bottom: 0.3rem; /* Reduce space between heading and subtext */
    font-size: 1.6rem; /* Adjust font size for better emphasis */
    line-height: 1.2; /* Adjust line spacing for tighter alignment */
}

.service-icon-box-title p {
    margin-left: 0.5rem; /* Indent subtext slightly */
    font-size: 1rem; /* Ensure subtext is legible */
    line-height: 1.4; /* Space out subtext for readability */
}
    
    
    
    
     /* Unique animation wrapper for isolation */
    .what-we-do-animation img,
    .what-we-do-animation .service-icon-box-three,
    .what-we-do-animation .service-icon-box-two,
    .what-we-do-animation .section-head {
        opacity: 0; /* Initially hidden */
        transform: translateY(50px); /* Start below final position */
        transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth fade and slide */
    }

    /* Triggered animation state */
    .what-we-do-animation img.animate,
    .what-we-do-animation .service-icon-box-three.animate,
    .what-we-do-animation .service-icon-box-two.animate,
    .what-we-do-animation .section-head.animate {
        opacity: 1;
        transform: translateY(0); /* Slide into final position */
    }
    

    /* Center the "What We Do" section header */
    .section-head.center {
        text-align: center; /* Center text alignment */
        margin: 0 auto; /* Center the block elements */
        max-width: 800px; /* Optional: constrain the width */
    }

    /* Additional centering for inner elements */
    .what-we-do-title,
    .what-we-do-heading,
    .what-we-do-description {
        text-align: center; /* Ensure all child elements are centered */
        margin: 0 auto; /* Center horizontally */
    }

    /* Spacing for aesthetics */
    .what-we-do-heading {
        margin-top: 20px; /* Add spacing between elements */
        font-size: 2rem; /* Adjust heading size if needed */
    }

    .what-we-do-description {
        margin-top: 10px;
        font-size: 1rem;
        color: #555; /* Subtle text color */
    }
    
    /* Initial state for text */
.what-we-do-animation .section-head,
.what-we-do-animation .service-icon-box-three,
.what-we-do-animation .service-icon-box-two {
    opacity: 0;
    transform: translateY(50px); /* Start below final position */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth fade and slide */
}

/* Triggered animation state for text */
.what-we-do-animation .section-head.animate,
.what-we-do-animation .service-icon-box-three.animate,
.what-we-do-animation .service-icon-box-two.animate {
    opacity: 1;
    transform: translateY(0); /* Slide into final position */
}

/* Initial state for images */
.tw-what-wedo-media img {
    opacity: 0;
    transform: translateX(50px); /* Start off-screen to the right */
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.tw-what-wedo-media img.animate-left {
    opacity: 1;
    transform: translateX(0); /* Slide into place from the left */
}

.tw-what-wedo-media img.animate-right {
    opacity: 1;
    transform: translateX(0); /* Slide into place from the right */
}




/* Style for service text boxes */
.service-icon-box-three,
.service-icon-box-two {
    background-color: #f9f9f9; /* Light background to differentiate */
    border: 1px solid #e0e0e0; /* Subtle border for structure */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Add padding inside the boxes */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* More pronounced shadow for depth */
    margin-bottom: 20px; /* Add spacing between boxes */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth interaction effect */
}

/* Hover effect for text boxes */
.service-icon-box-three:hover,
.service-icon-box-two:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

/* Adjust text alignment and spacing */
.service-icon-box-title h3 {
    font-size: 1.25rem; /* Adjust heading size */
    margin-bottom: 10px;
}

.service-icon-box-title p {
    font-size: 1rem;
    color: #555; /* Softer text color */
}

/* Vertical line styling */
.service-icon-box-three .service-icon-box-three-media i,
.service-icon-box-two .service-icon-box-two-media i {
    margin-right: 10px;
    color: #588157; /* Accent color for icons */
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbars */
}
/* SCHRITSSS */


/* General title styling (centered on both PC and mobile) */
.animated-title h2 {
    font-size: 2rem; /* Title size for PC */
    text-align: center; /* Center alignment */
    margin: 20px 0; /* Space around title */
    font-weight: bold;
    line-height: 1.4;
}

.animated-title .sub-title {
    font-size: 1.2rem; /* Subtitle size */
    text-align: center; /* Center alignment */
    color: #666;
    margin-bottom: 15px;
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    /* Title adjustments */
    .animated-title h2 {
        font-size: 1.5rem; /* Compact size */
        margin: 10px 0;
    }

    .animated-title .sub-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    /* Redesign tabs for mobile */
    .tabs-container {
        padding: 10px; /* Compact padding */
    }

    /* Stack boxes horizontally with scrolling */
    .nav-tabs {
        display: flex;
        flex-direction: row; /* Horizontal alignment */
        overflow-x: auto; /* Enable horizontal scrolling */
        gap: 10px; /* Space between boxes */
        padding: 10px 0;
        margin: 0 auto;
    }

    /* Individual tab items for mobile */
    .nav-tabs .tab-item {
        min-width: 150px; /* Set a minimum width */
        height: auto; /* Let height adjust dynamically */
        padding: 10px;
        font-size: 0.9rem; /* Compact font size */
        text-align: center;
        background-color: #f9f9f9;
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    /* Active tab styling */
    .nav-tabs .tab-item.active {
        background-color: #e9f5e9; /* Highlight color */
        color: #333;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    }

    /* Tab content styling for mobile */
    .tab-content {
        padding: 15px;
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: center;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    /* Adjust icon size */
    .nav-tabs .tab-item i {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
}

/* PC (unchanged styling) */
@media (min-width: 769px) {
    .nav-tabs {
        display: flex;
        justify-content: center; /* Center tabs on PC */
        gap: 20px; /* Space between boxes */
    }

    .nav-tabs .tab-item {
        width: 180px; /* Box width for PC */
        height: 100px; /* Box height for PC */
        padding: 10px;
        font-size: 1rem; /* Font size for PC */
        text-align: center;
        border-radius: 12px;
    }
}




/* ANGEBOTE */

/* General Scrolling Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitles Styling */
.subtitle-large {
    font-size: 6rem; /* Adjust the size */
    font-weight: bold;
    color: #333; /* Subtitle color */
    text-align: center; /* Center align */
    margin: 20px 0; /* Spacing */
}






/* Animation: Initial hidden state */
.custom-animate {
    opacity: 0; /* Fully transparent */
    transform: translateY(50px); /* Start below viewport */
    transition: opacity 1.5s ease, transform 1.5s ease; /* Slow fade and slide animation */
}

/* Animation: Visible state */
.custom-animate.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to original position */
}

/* Additional styling for the title */
.custom-section-head h2 {
    color: #333;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.custom-section-head .fontimpact5 div {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

/* Animation for images */
.custom-img {
    opacity: 0;
    transform: scale(0.9); /* Start slightly smaller */
    transition: opacity 1.5s ease, transform 1.5s ease; /* Slow fade and zoom */
}

/* Style the list-group-item container */
.list-group-item {
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center-align content */
    justify-content: center; /* Ensure vertical centering */
    text-align: center; /* Center the text */
    padding: 20px; /* Add internal padding */
    background-color: #fff; /* Background for better visibility */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    max-width: 250px; /* Restrict maximum width for consistency */
    margin: 10px auto; /* Center the box */
}

/* Image styling */
.list-group-item .media img {
    max-width: 60px; /* Restrict image size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Add spacing below the image */
    display: block; /* Ensure it takes up its own line */
}

/* Text below the image */
.list-group-item span {
    font-size: 14px; /* Adjust text size */
    font-weight: 500; /* Medium weight for readability */
    color: #333; /* Neutral text color */
}

/* Hover effects for interaction */
.list-group-item:hover {
    transform: scale(1.05); /* Slight zoom-in effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .list-group-item {
        padding: 15px; /* Adjust padding for smaller screens */
        flex-direction: column; /* Ensure stacking on mobile */
    }

    .list-group-item .media img {
        margin-bottom: 8px; /* Reduce spacing for smaller screens */
    }
}


/* General Section Styling */
.enhanced-section {
    background: linear-gradient(135deg, #f8f9fa 40%, #e9ecef);
    border-radius: 10px;
    padding: 60px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
.section-head h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.fontimpact5 p {
    font-size: 1rem;
    color: #588157;
    font-weight: 500;
}

/* Left Side Icon Box */
.icon-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon {
    color: #588157;
    margin-bottom: 10px;
}

.icon-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Form Wrapper */
.form-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .icon-card {
        margin-bottom: 20px;
    }

    .form-wrapper {
        padding: 15px;
    }
}


/* Parent container styling to center content */
.row.justify-content-center.align-items-center {
    display: flex; /* Enable Flexbox */
    flex-wrap: nowrap; /* Keep elements on the same line */
    justify-content: center; /* Center elements horizontally */
    align-items: center; /* Center elements vertically */
    gap: 30px; /* Add space between text and form */
    padding: 40px 0; /* Add padding around the section */
}

/* Ensure the icon-card and form-wrapper are equal in height */
.icon-card, .form-wrapper {
    flex: 0 1 45%; /* Allow each to take 45% of the width */
    max-width: 600px; /* Restrict maximum width */
    text-align: center; /* Center align text within the icon card */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .row.justify-content-center.align-items-center {
        flex-direction: column; /* Stack elements vertically */
        text-align: center; /* Center all text */
    }

    .icon-card, .form-wrapper {
        flex: 1 1 100%; /* Full width on smaller screens */
        max-width: 100%; /* Remove width restriction */
    }
}
/* BEWERBEN */




/* Initial hidden state for animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px); /* Start slightly below viewport */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth fade and slide animation */
}

/* Visible state for animations */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0); /* Reset to original position */
}


/* Parent container styling for the Bewerben section */
.bewerben-row {
    display: flex; /* Enable Flexbox */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    text-align: center; /* Center-align text */
    gap: 20px; /* Add spacing between elements */
    height: 100%; /* Ensure the content stretches full height */
}

/* Text column styling for the Bewerben section */
.bewerben-section-head {
    flex: 1 1 100%; /* Full width for smaller screens */
    max-width: 800px; /* Limit the width of the text */
    text-align: center; /* Center the text */
    margin-bottom: 20px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start below viewport */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth animation */
}

/* Form container styling for the Bewerben section */
.bewerben-form-center {
    flex: 1 1 100%; /* Full width for smaller screens */
    max-width: 800px; /* Limit the width of the form */
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start below viewport */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth animation */
}

/* Animation: Visible state for elements */
.bewerben-section-head.visible,
.bewerben-form-center.visible {
    opacity: 1;
    transform: translateY(0); /* Reset to original position */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bewerben-row {
        flex-direction: column; /* Stack text and form vertically */
    }
}


/*KONTAKT US /


/* Initial state for animation (hidden) */
.contact-info .info-box, .section-head {
    opacity: 0; /* Start invisible */
    transform: translateY(50px); /* Start slightly below */
    transition: opacity 1.5s ease, transform 1.5s ease; /* Smooth easing */
}

/* Visible state when animation triggers */
.contact-info .info-box.animate, .section-head.animate {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to original position */
}

/* Optional: Add hover effects for extra interactivity */
.info-box:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    transition: transform 0.3s ease;
}
/* Add delay to the left box */
.contact-info .left-box {
    transition-delay: 0.2s;
}

/* Add delay to the right box */
.contact-info .right-box {
    transition-delay: 0.4s;
}


.contact-info {
    margin-bottom: 100px; /* Adjust the value for more space */
}

.map-container {
    margin-bottom: 50px; /* Add spacing below the map */
}

.section-head {
    margin-bottom: 20px; /* Adjust spacing above the contact info if needed */
}


/* EXTRA */

/* General Footer Styling */
.footer-black {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 calc(25% - 20px); /* 4 equal sections */
    margin: 10px;
    text-align: left;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    color: #ccc; /* Softer text color */
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #588157; /* Highlighted green color */
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #588157; /* Green hover effect */
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.footer-contact ul li i {
    color: #588157; /* Green icon color */
    font-size: 14px;
}

.footer-social ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px; /* Spacing between icons */
}

.footer-social ul li a {
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.footer-social ul li a:hover {
    color: #588157; /* Green hover effect */
    transform: scale(1.2); /* Slight zoom effect */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #333; /* Subtle divider */
    padding-top: 15px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections vertically */
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}














/* Tabs Container */
.tabs-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Main Tab Navigation */
.nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Spacing between tabs */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-tabs .tab-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-tabs .tab-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: inherit;
}

/* Active Tab Styling */
.nav-tabs .tab-item.active {
    background-color: #588157;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Hover Effects */
.nav-tabs .tab-item:hover {
    background-color: #d3e4d1;
    color: #333;
    transform: scale(1.05);
}

/* Tab Content */
.tab-content {
    margin-top: 30px;
    text-align: left;
}

.tab-content .tab-pane {
    display: none; /* Hide inactive panes */
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content .tab-pane.active {
    display: block; /* Show active pane */
}

/* Sub-Tabs */




/* General Navbar Button Styles */
.nav a {
    color: black; /* Button text color */
    font-family: 'Roboto', sans-serif; /* Use Roboto font like the footer */
    font-size: 1rem; /* Adjust font size */
    font-weight: 700; /* Bold font weight to match the footer */
    text-transform: uppercase; /* Consistent uppercase text */
    padding: 10px 15px; /* Add spacing for button padding */
    letter-spacing: 1px; /* Slight letter spacing for a clean look */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* Navbar Button Hover Effect */
.nav a:hover {
    color: #588157; /* Change text color to green accent */
    transform: scale(1.05); /* Slight zoom-in effect */
    text-decoration: none; /* Remove underline */
}

/* Button Style for Email */
.nav li .button01 a {
    color: white;
    font-family: 'Roboto', sans-serif; /* Consistent font */
    font-weight: bold; /* Match footer style */
    background-color: #000; /* Black button */
    padding: 10px 20px; /* Add padding inside the button */
    border-radius: 6px; /* Rounded edges for the button */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
    text-transform: uppercase; /* Match text style */
    letter-spacing: 1px; /* Add spacing between letters */
}

/* Button Hover Effect */
.nav li .button01 a:hover {
    background-color: #588157; /* Change button background to green on hover */
    transform: translateY(-2px); /* Subtle upward movement */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav a {
        font-size: 0.9rem; /* Slightly smaller font on mobile */
    }

    .nav li .button01 a {
        font-size: 0.9rem;
        padding: 8px 16px; /* Compact padding for smaller screens */
    }
}


/* General Navbar Styles */
.header-nav ul.nav > li > a {
    color: black !important; /* Make navbar links black */
    font-size: 16px; /* Adjust font size */
    text-transform: none; /* Keep text normal case */
    padding: 10px 15px; /* Add some spacing */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
}

.header-nav ul.nav > li > a:hover {
    color: white !important; /* Change to green on hover */
    text-decoration: none; /* Remove underline */
}

/* Button Styling */
.header-nav ul.nav > li .button01 {
    background-color: black !important; /* Button background black */
    border: none; /* Remove any border */
    color: white !important; /* White text */
    padding: 10px 20px; /* Adjust padding for proper spacing */
    font-size: 16px; /* Button font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s ease-in-out, transform 0.2s ease; /* Smooth transition */
}

.header-nav ul.nav > li .button01 a {
    color: white !important; /* Ensure link inside button is white */
    text-decoration: none; /* Remove underline */
}

.header-nav ul.nav > li .button01:hover {
    background-color: #588157 !important; /* Change to green on hover */
    transform: scale(1.05); /* Slight scaling on hover */
}

/* Fix for mobile toggle button */
.navbar-toggler {
    border-color: black !important; /* Black border for toggle */
    background-color: white !important; /* Background white for visibility */
}

.navbar-toggler .icon-bar {
    background-color: black !important; /* Black icon bars */
}










/* Footer Styles */
.footer-modern {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 50px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-column {
    flex: 1 1 45%;
    margin-bottom: 20px;
}

.footer-left img {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-column h3 {
    font-size: 18px;
    color: #588157; /* Accent color */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #588157;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #ccc;
}

/* Animations */
.animated-footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.animated-footer.visible {
    opacity: 1;
    transform: translateY(0);
}


/* NEWS SECTION */





.news-card {
    background: linear-gradient(145deg, #f3f3f3, #ffffff); /* Subtle gradient background */
    border-radius: 20px; /* More rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); /* Enhanced shadow for depth */
    border: 1px solid #e6e6e6; /* Thin border for definition */
    padding: 30px; /* Add more padding for spacious design */
    max-width: 800px; /* Slightly wider */
    margin: 0 auto; /* Center the box */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth hover effect */
}

.news-card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15), 0 6px 10px rgba(0, 0, 0, 0.1); /* Shadow enhancement on hover */
}

.news-heading {
    font-size: 2rem; /* Larger heading */
    font-weight: bold;
    color: #588157; /* Use the site’s green for emphasis */
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase; /* Make the heading uppercase */
    letter-spacing: 1px; /* Slightly spaced letters */
}

.news-text {
    font-size: 1.1rem; /* Slightly larger text */
    color: #555555;
    line-height: 1.8;
    text-align: justify; /* Justified text for neat alignment */
    margin-bottom: 15px;
}

.news-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section-head {
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: 2.5rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-head .news-subtitle {
    font-size: 1.2rem;
    color: #588157; /* Use site’s green */
    font-style: italic; /* Add slight style to differentiate */
}
