:root {
    --primary-color: #01dcf2;
    --secondary-color: #4d44db;
    --dark-color: rgba(23, 31, 58, 1);
    --darker-color: #16213e;
    --light-color: #f1f1f1;
    --gray-color: rgba(255, 255, 255, 0.6);
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading tekst settings */
h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 40px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    font-weight: 500;
}

h4 {
    font-size: 24px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    font-weight: 400;
}

h6 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 400;
}


body {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    color: var(--light-color);
    line-height: 1.6;
}

body,
html {
    overflow-x: hidden;
}

body {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;

}

.container .inner-wrapper {
    position: relative;
    padding: 0 20px;
}

.container .inner-wrapper::before,
.container .inner-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.container .inner-wrapper::before {
    left: 0;
}

.container .inner-wrapper::after {
    right: 0;
}

.design-shape {
    position: fixed;
    width: 700px;
    height: 400px;
    border-radius: 50% / 40%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;

}

.shape-left {
    background: linear-gradient(136.2deg, rgba(7, 104, 109, 0.6) -88.66%, rgba(1, 220, 242, 1) 87.87%);
    top: 200px;
    left: -200px;
}

.shape-right {
    background: linear-gradient(136.2deg, rgba(7, 104, 109, 0.6) -88.66%, rgba(1, 220, 242, 1) 87.87%);
    bottom: 200px;
    right: -200px;
}

.shape-left {
    transform: rotate(15deg);
}

.shape-right {
    transform: rotate(-15deg);
}

@media (max-width: 768px) {
    .shape-left {
        background: linear-gradient(136.2deg, rgba(7, 104, 109, 0.6) -10.66%, rgba(1, 220, 242, 1) 77.87%);
        top: 200px;
        left: -10px;
    }

    .shape-right {
        background: linear-gradient(136.2deg, rgba(7, 104, 109, 0.6) -10.66%, rgba(1, 220, 242, 1) 77.87%);
        bottom: 200px;
        right: -10px;
    }
}


/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}


.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0 auto;
}

.nav-links li {
    margin-left: 22px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active {
    color: var(--primary-color);
    font-weight: 600;

}

.nav-links a.active {
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: none;
    /* sprečava animaciju */
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--light-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}


@media (max-width: 992px) {
    .social-icons a {
        width: 30px !important;
        height: 30px !important;
    }

    .nav-links li {
        margin-left: 26px;
        font-size: 14px;
    }

    .logo img {
        width: 140px;
        height: auto;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        transition: left 0.5s ease;
        padding: 40px 0 100px;
    }

    .nav-links .social-icons {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .navbar .social-icons {
        display: none;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger.active .line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-hero {
    width: 320px;
    height: 36px;
    border-radius: 40px;
    border-width: 1px;
    border: 1px solid #ffffff3d;
    background: #FFFFFF0A;
    border-image-source: linear-gradient(160.74deg, rgba(254, 254, 254, 0.4) 1.89%, rgba(254, 254, 254, 0.012) 87.04%),
        linear-gradient(161.59deg, rgba(254, 254, 254, 0.003) 9.52%, rgba(254, 254, 254, 0.1) 90.62%);
    padding: 2px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-text-container {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px;
    border-radius: 40px;
}

.logo-hero {
    width: 80px;
    height: 30px;
    margin-left: 10px;
}

.hero-title {
    font-weight: 700;
    color: white;
    font-size: 24px;
    margin: 0;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    padding-bottom: 6px;

}

.hero-titles {
    margin-bottom: 40px;
    text-align: center;
}

.hero-subtitle {
    font-weight: 600;
    background: linear-gradient(180deg, #FFFFFF -42.15%, #5BBBC4 135.07%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.hero-description {
    max-width: 715px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.6);
    text-align: justify;
}

.highlight {
    color: #ffffff;
    font-weight: 600;
}

.hero-description p {
    margin-bottom: 16px;
}

.portfolio-button {
    display: inline-block;
    color: white;
    padding: 12px 40px;
    top: 593px;
    left: 849.5px;
    transition: all 0.3s ease;
    border-radius: 25px;
    border-width: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.16);
    transform: translateY(1px);
    text-decoration: none;

}

.portfolio-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-1px);
    box-shadow: 1px 5px 10px rgba(108, 99, 255, 0.2);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
        text-align: center;
    }

    .hero-titles {
        margin-bottom: 30px;
        text-align: center;
        margin-top: 10px;
    }

    .hero-subtitle::after {
        width: 400px;
        top: 177px;
    }

    .hero-subtitle {
        font-size: 46px;
    }

    .hero-content {
        max-width: 100%;
    }

    .logo-text-container {
        display: flex;
        align-items: center;
        gap: 15px;
        border: 1px;
        border-radius: 40px;
    }

    .logo-link {
        text-decoration: none;
        display: inline-block;
    }

    .hero-tagline {
        color: white;
        font-size: 12px;
        margin: 0;
    }

    .hero-description {
        text-align: left;
        padding: 0 20px;
    }

}
/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: translateY(1px);
    text-decoration: none;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 1px 3px rgba(108, 99, 255, 0.16);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 1px 3px rgba(108, 99, 255, 0.16);
}

/* Section Services  */
.section-title {
    background: linear-gradient(180deg, #FFFFFF -42.15%, #5BBBC4 135.07%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 80px 50px;
    max-width: 860px;
    margin: 60px auto 0 auto;
    width: 100%;
}


.service-card {
    width: 400px;
    height: 270px;
    position: relativportfolioe;
    background: rgba(13, 112, 134, 0.1);
    border-radius: 10px;
    padding: 60px 30px 40px;
    text-align: center;
    overflow: visible;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.service-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(23, 31, 58, 1);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.icon-set-lg {
    width: 42px;
    height: 42px;
    text-align: center;
}

.icon-set-md {
    width: 34px;
    height: 34px;
    text-align: center;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card .text-container {
    text-align: left;
}

.service-card p.custom-paragrph {
    display: inline;
    white-space: nowrap;
    color: white;
    font-weight: bold;
    font-size: 13px;
    margin-right: 0;
}

.service-card p.custom-paragrph+p {
    /* display: inline; */
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
    white-space: normal;
}

.service-card p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

@media (max-width: 480px) {

    .service-card p.custom-paragrph,
    .service-card p.custom-paragrph+p {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
    }

    .service-card {
        margin-top: 40px;
        width: 100%;
        height: auto;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 38px;
    }

    .service-card {
        padding: 50px 20px 30px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.container-about {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    background: rgba(23, 31, 58, 0.1);
}

.container-about .inner-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    padding: 0 20px;
}

.container-about .inner-wrapper::before,
.container-about .inner-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.container-about .inner-wrapper::before {
    left: 0;
}

.container-about .inner-wrapper::after {
    right: 0;
}

.about-content {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.section-title-about {
    background: linear-gradient(180deg, #FFFFFF -42.15%, #5BBBC4 135.07%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    position: relative;
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.section-title-about::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 1px;
    background: linear-gradient(to left, rgba(23, 31, 58, 0.10) 0.3%, rgba(255, 255, 255, 0.40) 100%);
    bottom: -12px;
    left: 0%;
    border-radius: 1px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-size: 1rem;
}

.stats {
    display: flex;
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item-home {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 5px;
}

/* Image Container */
.about-image-container {
    width: 430px;
    height: 290px;
    border-radius: 10px;
    background: rgba(13, 112, 134, 0.1);
    border: 1px solid transparent;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* wichtig, verhindert Herausragen */
}


.about-image {
    width: 367px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
}

.about-image>div {
    width: 100%;
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem;
    background-color: #1e1e1e;
    color: #d4d4d4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

#code-container,
#output-container {
    width: 100%;
}

/* Floating Animation */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-about {
        padding: 0 30px;
    }

    .about-content {
        padding: 30px;
    }

    .about-image-container {
        width: 380px;
        height: 260px;
    }

    .about-image {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 80px 0;
    }

    .container-about .inner-wrapper {
        gap: 30px;
    }

    .section-title-about {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .about-image-container {
        width: 340px;
        height: 240px;
    }

    .about-image {
        width: 250px;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .container-about .inner-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }

    .about-image-container {
        order: -1;
        width: 100%;
        max-width: 400px;
        height: 250px;
        margin: 0 auto 30px;
    }

    .about-content {
        order: 1;
        max-width: 100%;
        padding: 25px;
    }

    .stats {
        justify-content: center;
        gap: 20px;
    }

    .section-title-about {
        font-size: 2rem;
        text-align: left;
    }

    .section-title-about::after {
        left: 0;
    }

    .about-content p {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }

    .container-about .inner-wrapper {
        padding: 0 10px;
    }

    .section-title-about {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 20px 15px;
    }

    .about-image-container {
        height: 200px;
    }

    .about-image {
        width: 200px;
    }

    .stats {
        flex-direction: row;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item-home {
        min-width: calc(50% - 15px);
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 400px) {
    .section-title-about {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .about-image-container {
        height: 180px;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 80px;
    position: relative;
    overflow: visible;

}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.portfolio-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
    border-radius: 8px;
    background: rgba(13, 112, 134, 0.1);
    height: 391.71px;
    width: 300px;
    padding: 20px;
    z-index: 1;

}

.hidden {
    display: none !important;
}

.portfolio-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}


.portfolio-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.portfolio-image-container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-item img {
    width: 223.79px;
    height: 77.22px;
    object-fit: contain;
    margin-top: 20px;
}


.portfolio-item .description {
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 15px;
}


.portfolio-item .btn .fa-solid {
    margin-left: 10px;
    font-size: 18px;
}

.portfolio-arrow-fixed {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: 50% 0 0 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: -6px 0 12px rgba(0, 0, 0, 0.3);
}

.portfolio-arrow-fixed:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .portfolio-item {
        width: 300px;
        margin: 0 auto;
    }

    .portfolio-arrow-fixed {
        display: none;
    }

    #portfolio .inner-wrapper::before {
        left: -80px;
    }

    #portfolio .inner-wrapper::after {
        right: -80px;
    }

}

@media screen and (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
    .portfolio {
        padding: 40px 20px;
    }

    .portfolio-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0;
        margin-top: 40px;
    }

    .portfolio-item {
        width: 48%;
        min-width: 280px;
        max-width: 300px;
        height: 460px;
        padding: 20px;
        box-sizing: border-box;
    }

    .portfolio-item img {
        width: 223.79px;
        height: 77.22px;
        object-fit: contain;
        margin-top: 20px;
    }

    .portfolio-item .btn {
        padding: 8px 12px;
        font-size: 14px;
        margin-top: 10px;
        align-self: stretch;
        max-width: 100%;
        box-sizing: border-box;

        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .portfolio-item .btn .fa-solid {
        font-size: 16px;
        margin-left: 8px;
    }

    .portfolio-arrow-fixed {
        display: none;
    }
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
    padding: 80px;
    position: relative;
    overflow: visible;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.social-media {
    margin-top: 40px;
}

.social-media h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--primary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.contact-form select,
.contact-form select option {
    color: #fff;
    background-color: #222;
}

/* Responsive Anpassungen */
@media (max-width: 576px) {
    .contact {
        padding: 60px 15px;
    }
}

@media (max-width: 768px) {
    .contact-info h3 {
        margin-top: 30px;
    }

}

/* Footer Styles */
.footer {
    background-color: var(--darker-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 500;
}

.p-phone {
    font-size: 20px;
    margin-bottom: 4px;
}

.p-mail {
    font-size: 20px;
    margin-bottom: 16px;
}

.info-links {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    bottom: 3px;
    left: 4px;
    position: relative;
}

.info-links:hover {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links h4,
.footer-services h4,
.footer-social h4,
.footer-content h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-social h4::after,
.footer-content h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a i {
    color: #fff;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-color);
    font-size: 14px;
}

/* Animations */
.animate-text.animated,
.animate-btn.animated,
.animate-card.animated,
.animate-float.animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-image {
        position: relative;
        width: 100%;
        margin-top: 50px;
    }

    .about-image {
        position: relative;
        width: 100%;
        margin-top: 50px;
        transform: none;
    }

    .hero-content,
    .about-content {
        /* max-width: 100%; */
        text-align: center;
    }

    .stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .container-hero {
        width: 240px;
        height: 34px;
    }

    .logo-hero {
        width: 65px;
        height: 30px;
        margin-left: 10px;
    }

    .hero-tagline {
        color: white;
        font-size: 10px;
        margin: 0;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-subtitle::after {
        width: 200px;
        top: 143px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-title {
        font-size: 30px;
    }

    .btn {
        padding: 10px 20px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-description {
        margin-bottom: 30px;
    }
}

@media (max-width: 450px) {
    .hero-subtitle::after {
        width: 200px;
        top: 180px;
    }

}

/* Page Hero Styles */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    text-align: center;
    overflow: visible;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.page-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    opacity: 0;
    transform: translateY(20px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-color);
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 36px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 150px 0 80px;
    }

    .page-title {
        font-size: 30px;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* Service Hero Styles */
.service-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
}

.service-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* Service Intro */
.service-intro {
    padding: 100px 0;
    overflow: visible;
    position: relative;
}

.service-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray-color);
}

/* Service Stats */
.service-stats {
    padding: 80px 0;
    overflow: visible;
    position: relative;
}


.service-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(108, 99, 255, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-color);
}

/* Service Process */
.service-process {
    padding: 100px 0;
    overflow: visible;
    position: relative;
}

.service-process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(108, 99, 255, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray-color);
}

/* Why Use section - Webdesign page */
.why-us {
    padding: 80px 0;
    overflow: visible;
    position: relative;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-us-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-us-card:hover {
    transform: translateY(-5px);
}

.why-us-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.why-us-card p {
    font-size: 16px;
    color: var(--gray-color);
}


/* Timeline Process (for SEO page) */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding-left: 150px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 170px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-number {
    position: absolute;
    left: -150px;
    top: 0;
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    background: rgba(108, 99, 255, 0.1);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--gray-color);
}

/* Service Features */
.service-features {
    padding: 10px 0;
    position: relative;
    overflow: visible;
}

/* .service-features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
} */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(108, 99, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-color);
}

/* Service Types (App Development) */
.service-types {
    padding: 100px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.type-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}


.type-card:hover {
    transform: translateY(-10px);
    background: rgba(108, 99, 255, 0.1);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
}

.type-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.type-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    text-align: center;
}

.type-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin-top: 20px;
}

.type-tech li {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Service Packages */
.service-packages {
    padding: 100px 0;
    overflow: visible;
    position: relative;
}

.service-packages::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-10px);
    background: rgba(108, 99, 255, 0.1);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: translateY(-20px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.package-features {
    margin-bottom: 30px;
    list-style: none;
}

.package-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.package-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.package-card .btn {
    width: 100%;
    text-align: center;
}

/* Service FAQ */
.service-faq {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.service-faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}


.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(108, 99, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray-color);
}

/* Service Portfolio */
.service-portfolio {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.service-portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.text-center {
    text-align: center;
    margin-top: 50px;
}

/* Service Tabs (Digital Marketing) */
.services-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-contents {
    position: relative;
    min-height: 400px;
}

.tab-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-text ul {
    list-style: none;
    margin: 25px 0;
}

.tab-text li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.tab-text i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.tab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Strategy Steps */
.strategy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategy-step {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
}

.strategy-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.strategy-step p {
    color: var(--gray-color);
}

/* Case Studies */
.service-case-studies {
    padding: 100px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
}

.case-study::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.case-study img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-study:hover img {
    transform: scale(1.1);
}

.case-study-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.case-study-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.case-study-content p {
    margin-bottom: 20px;
}

/* Testimonials Slider */
.service-testimonials {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.service-testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0px;
    color: rgba(255, 255, 255, 0.8);
}

/* .testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 60px;
    color: rgba(108, 99, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
}

.testimonial-content p::before {
    top: -30px;
    left: -20px;
}

.testimonial-content p::after {
    bottom: -50px;
    right: -20px;
} */

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.company {
    font-size: 14px;
    color: var(--gray-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tab-content-inner {
        grid-template-columns: 1fr;
    }

    .tab-image {
        order: -1;
    }

    .process-timeline {
        padding-left: 100px;
    }

    .process-timeline::before {
        left: 120px;
    }

    .timeline-number {
        left: -100px;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 36px;
    }

    .service-subtitle {
        font-size: 18px;
    }

    .intro-content h2 {
        font-size: 30px;
    }

    .package-card.featured {
        transform: translateY(0);
    }

    .process-timeline {
        padding-left: 0;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-number {
        position: relative;
        left: 0;
        margin-bottom: 20px;
    }

    .timeline-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 150px 0 80px;
    }

    .service-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Project Details Page Styles */
.project-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.project-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.project-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.project-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.project-overview {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.project-overview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.overview-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.project-meta {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.meta-item {
    text-align: left;
    min-width: 150px;
}

.meta-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.meta-item p,
.meta-item a {
    color: white;
    font-weight: 500;
}

.meta-item a:hover {
    color: var(--primary-color);
}

.project-challenge,
.project-solution {
    padding: 80px 0;
    position: relative;
}

.project-solution::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.project-challenge {
    position: relative;
}

.project-challenge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.challenge-content,
.solution-content {
    max-width: 900px;
    margin: 0 auto;
}

.challenge-content h2,
.solution-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.challenge-content p,
.solution-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 10px 10px 10px;
    border-radius: 10px;
    text-align: center;
}

.solution-step::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.solution-step:hover {
    transform: translateY(-10px);
    background: rgba(1, 220, 242, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(1, 220, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.solution-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.solution-step p {
    font-size: 15px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: rgba(13, 112, 134, 0.1);
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.project-features {
    padding: 100px 0;
    position: relative;
}

.project-features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(1, 220, 242, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(1, 220, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray-color);
}

.project-gallery {
    padding: 100px 0;
    position: relative;
}

.project-gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: center;
}

.project-results {
    padding: 80px 0;
    background-color: var(--darker-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-10px);
    background: rgba(1, 220, 242, 0.1);
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-label {
    font-size: 16px;
    color: var(--gray-color);
}

.project-testimonial {
    padding: 100px 0;
    position: relative;
}

.project-testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 31, 58, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(23, 31, 58, 0.1) 100%);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.testimonial-content::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.testimonial-text p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 60px;
    color: rgba(1, 220, 242, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
}

.testimonial-text p::before {
    top: -30px;
    left: -20px;
}

.testimonial-text p::after {
    bottom: -50px;
    right: -20px;
}

.testimonial-author {
    display: block;
    text-align: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: var(--gray-color);
}

.project-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

.projekat-logo {
    width: auto;
}

.projekat-image-container {
    width: 100%;
    height: 290px;
    border-radius: 10px;
    background: rgba(13, 112, 134, 0.1);
    border: 1px solid transparent;
    position: relative;
}

.projekat-image {
    width: 407px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
}

.projekat-image>div {
    width: 100%;
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem;
    background-color: #1e1e1e;
    color: #d4d4d4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {

    .projekat-image-container {
        order: -1;
        width: 100%;
        height: 170px;
        margin: 0 auto 30px;
    }

    .projekat-image {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        overflow: hidden;
        padding: 20px;
    }
}

/* Animation Classes */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* When elements come into view */
.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .project-title {
        font-size: 42px;
    }

    .project-subtitle {
        font-size: 18px;
    }

    .overview-content h2,
    .challenge-content h2,
    .solution-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 150px 0 80px;
    }

    .project-title {
        font-size: 36px;
    }

    .project-meta {
        flex-direction: column;
        gap: 20px;
    }

    .solution-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .project-hero {
        padding: 130px 0 60px;
    }

    .project-title {
        font-size: 32px;
    }

    .project-subtitle {
        font-size: 16px;
    }

    .overview-content h2,
    .challenge-content h2,
    .solution-content h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Tech Stack Section */
.project-tech {
    padding: 100px 0;
    position: relative;
}

.project-tech::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tech-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.tech-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(1, 220, 242, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.tech-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.tech-item h3 {
    font-size: 18px;
    margin-top: 15px;
    color: var(--light-color);
}

/* Choose Us Section */
.choose-us {
    background-color: var(--darker-color);
    padding: 80px 20px;
    position: relative;
    overflow: visible;
}

.choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(23, 31, 58, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(23, 31, 58, 0.1) 100%);
}

.choose-us .section-title {
    margin-bottom: 50px;
    color: var(--light-color);
    text-align: center;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.choose-card {
    width: 100%;
    max-width: 350px;
    height: 270px;
    position: relative;
    background: rgba(13, 112, 134, 0.1);
    border-radius: 10px;
    padding: 60px 30px 40px;
    text-align: center;
    overflow: visible;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(254, 254, 254, 0.4), rgba(254, 254, 254, 0.01));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.choose-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.choose-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.choose-card p {
    font-size: 16px;
    color: var(--gray-color);
}

@media (max-width: 576px) {
    .choose-card {
        padding: 40px 20px 30px;
        height: auto;
    }
}

/* Breadcrump Navigation */

.breadcrumb-nav {
    padding: 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
}

.breadcrumb-item {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--light-color);
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: var(--gray-color);
    margin: 0 8px;
}

.breadcrumb-item.active span {
    padding: 8px 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-links {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    bottom: 3px;
    left: 4px;
    position: relative;
}

/* Current Projects section */
.current-projects {
    padding: 80px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.current-projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(23, 31, 58, 0.1) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(23, 31, 58, 0.1) 100%);
}

.current-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.current-project-card {
    background: rgba(13, 112, 134, .1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon i {
    font-size: 24px;
    color: white;
}

.project-status {
    margin-left: 15px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.status-badge.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.status-badge.planning {
    background: linear-gradient(135deg, var(--warning-color), #ff9800);
}

.status-badge.testing {
    background: linear-gradient(135deg, var(--success-color), #4caf50);
}

.current-project-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.current-project-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .current-projects {
        padding: 60px 0;
    }

    .current-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .current-project-card {
        padding: 20px;
    }

    .project-icon {
        width: 50px;
        height: 50px;
    }

    .project-icon i {
        font-size: 20px;
    }

    .current-project-card h3 {
        font-size: 20px;
    }
}

/* Language-switcher styles removed — site is Serbian-only */
    .language-option {
        padding: 10px 12px;
        font-size: 13px;
    }

.language-option-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-option-simple:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateX(5px);
}
