/* =========================== */
/* GLOBAL STYLES */
/* =========================== */


body {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    background-image: url("/assets/images/hero-back.svg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    width: 400px;
    opacity: 0;
    transform: scale(0.9);
}

.preloader-svg {
    width: 400px;
    height: 200px;
    fill: none;
}

.preloader-svg path {
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    opacity: 0.8;
}

.preloader-path.t {
    stroke: #7ADD00;
    fill: #7ADD00;
}

@media only screen and (max-width: 600px) {

    .preloader-svg {
        width: 200px;
        height: 100px;
    }

    #preloader {
        background-size: contain;
        background-position: center;
    }

}


h1, h2, h3, h4 {
    font-weight: 700;
}

h1 {
    /* font-size: 62px; */
    font-size: clamp(42px, 8vw, 62px);
}

h2 {
    /* font-size: 40px; */
    font-size: clamp(32px, 8vw, 52px);
    position: relative;
    padding-bottom:10px;
    font-weight:400;
}

h2:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 100px;
    background-color: #7ADD00;
}

h3 {
    /* font-size: 28px; */
    font-size: clamp(20px, 8vw, 28px);
    font-weight:300;
}

p, li {
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================== */
/* HEADER */
/* =========================== */
.wrapper {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}
.wrapper--narrow {
    max-width: 1165px;
}

.header {
    background: #000;
    padding: 15px 0px;
    /* border-bottom: 1px solid #efefef; */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing:border-box;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing:border-box;
}
.header .logo img {
    width: 150px;
}

.header__left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .nav {
    margin-right: 30px;
}

.header .nav ul {
    list-style: none;
    display: flex;
    padding: 0px;
    
}

.book-a-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}

.book-a-call a {
    /* border: 1px solid #7ADD00; */
    color: #fff;
    background-color: #7ADD00;
    transition: all .3s ease-in-out;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    font-size: 14px;
    font-weight: 600;
}

.book-a-call a:hover {

    background-color: #fff;
    color: #000;
}

.book-a-call a svg {
    fill: #fff;
    width: 15px;
    height: 15px;
    transition: all .3s ease-in-out;
}

.book-a-call a:hover svg {
    fill: #000;
}

/* Sticky header */
.header-sticky {
    position: fixed;
    top: -130px; /* Početno sakriven izvan ekrana */
    left: 0;
    width: 100%;
    background: #000;
    transition: top 0.4s ease-in-out;
    z-index: 1000;
    box-sizing: border-box;
    padding: 10px 0;
}


.header-sticky__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.header-sticky.show {
    top: 0; /* Kada se doda klasa 'show', header postaje vidljiv */
}

.logo img {
    max-width: 260px;
}

.header__cta {
    background-color: #7ADD00;
    color: #000;
    padding: 12px 18px;
    font-size: 24px;
    font-weight: 400;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease-in-out;
}

.header__cta:hover {
    background-color: #fff;
    color: #7ADD00;
}

/* Animacija strelice gore-dolje */
.header__cta svg {
    animation: bounceArrow 1.5s infinite ease-in-out;
    width: 34px;
    height: 34px;
    fill: #000;
}

.header__cta:hover svg {
    fill: #7ADD00;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}



/* NAV */
.nav li {
    position: relative;
    margin-right:20px;
}

.nav li:last-child {
    margin-right:0px;
}

.header .nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight:300;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* Razmak od teksta */
    width: 0;
    height: 2px;
    background-color: #7ADD00; /* Boja crte */
    transition: width 0.3s ease-in-out;
}

/* Hover efekt – crta se širi s lijeva na desno */
.nav li:hover::after {
    width: 100%;
}

/* =========================== */
/* HERO SECTION */
/* =========================== */

.hero {
    /* background: url("../images/hero-bg.jpg") no-repeat center center/cover; */
    /* text-align: center; */
    position: relative;
    height: 100vh;
    /* min-height: 90vh; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.hero__header {
    position: absolute;
    top: 20px;
    width: 100%;
}

.hero-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero__right {
    display: flex;
}

.hero__socials {
    margin-right: 30px;
}

.hero__socials a {
    padding-right: 15px;
    
}

.hero__socials a:last-child {
    padding-right: 0px;
}

.hero__socials a i{
    font-size: 24px;
}

.hero__socials a:hover {
    color: #7ADD00;
    opacity: .8;
}

.hero__logo img {
    width: 260px!important;
}

.hero-home__projects {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    /* width: 30%; */
}

.hero-home__projects h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    margin: 0;
}

.hero-home__projects h3 span {
    color: #7ADD00;
}

.hero-home__projects p {
    color: #fff;
    text-align: left;
    max-width: 180px;
    margin: 0px;
    font-size: 16px!important;
}

.hero-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.hero img {
    width: 100%;
    height: 100%;
    display:block;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 1.5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero__container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.hero h1 {
    font-size: 62px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 74px;
    width: 100%;
    max-width: 80%;
}

.hero h1 strong {
    color: #7ADD00;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
    max-width: 1064px;
}

.hero__buttons {
    display: inline-flex;
    flex-direction: column;
    margin-top: 40px;
}

.hero__buttons span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #7ADD00;
}

.cta-btn {
    position: relative;
    display: inline-flex!important;
    font-size: 24px!important;
    /* color: #7ADD00!important; */
    background-color: #7ADD00!important;
    margin-top: 5px;
    text-transform: none!important;
    font-weight: 600!important;
    justify-content: space-between;
    padding: 10px 20px !important;
    border-radius: 10px;
    color: #000!important;
    transition: all .2s ease-in-out;
}

.cta-btn svg {
    fill: #000!important;
    width: 34px!important;
    height: 34px!important;
    transition: all .2s ease-in-out;
}

.cta-btn:hover {
    background-color: #fff!important;
    color: #7ADD00!important;
}

.cta-btn:hover svg {
    fill: #7ADD00!important;
}

.nav-btn {
    padding: 8px 25px;
    font-size: 18px;    
}


/* WHO SECTION */
.who {
    position: relative;
    width: 100%;
    height: 100vh; /* Osigurava da imamo dovoljno prostora za scroll */
    overflow: hidden;
}

/* PRVA SEKCIJA (HELLO MY FRIEND) */
.who-up {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: white;
    text-align: center;
    z-index: 2;
}

.who-up__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.who-up__content img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;

    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-up__title {
    text-transform: uppercase;
    /* font-size: 100px; */
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 500;
    stroke: #fff;
    color: rgba(225, 225, 225, 0.1);
    line-height: 115px;
}

.who-up__title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-text-stroke: 1px rgba(255,255,255,.6);
    color: transparent;
    display: inline-block;
}

/* DRUGA SEKCIJA (ABOUT ME) */
.who-down {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0; /* Početno je nevidljiva */
    /* padding: 80px 0; */
    z-index: 3;
}

.who-down__content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.who-down__content::before {
    position: absolute;
    content:"";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

.who-down__images {
    display: flex;
    flex-direction: column;
    /* background: #fff; */
    border: 1px solid #111;
    padding: 40px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.who-down__content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 400px;
}

.who-down__text {
    /* position: absolute;
    padding-left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 560px;
    z-index: 2; */
}

.who-down__text p {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    line-height: 26px;
    letter-spacing: 1.2px;
    margin: 0px;
    margin-bottom: 20px;
}

.who-down__text p:last-child {
    margin-bottom: 0px;
}

.who-down__text h3 {
    margin: 0px;
    margin-bottom: 15px;
    line-height: 34px;
    max-width: 500px;
    font-weight: 700;
    color: #7ADD00;
}

.who-down__text h4 {
    margin: 0px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #7ADD00;
}

.who-down__text ul {
    padding: 0px;
    padding-left: 20px;
}


/* End Who section */


/* Fade-in animacija */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================== */
/* WHY US SECTION */
/* =========================== */

.why-us {
    text-align: center;
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.why-us h2 {
    max-width: 1064px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.why-us__content {
    margin-bottom: 30px;
}
.why-us__content p {
    margin: 0 0 5px 0;
}

.why-us__content p:last-child {
    margin-bottom: 0px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Sprečava da se efekat preliva */
    border: 1px solid #111;
}

/* Pseudo-element za border efekat */
.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid white;
    border-radius: inherit;
    transform: scaleX(0);
    transition: transform 0.4s ease-in-out;
    z-index: 2; /* Postavlja ga iznad slike */
}

/* Aktiviranje hover efekta */
.feature-box:hover::before {
    transform: scaleX(1);
    z-index: 10;
}

/* Stilizacija slike */
.feature-box img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 5px;
     /* Osnovni border */
    transition: transform 0.4s ease-in-out;
}

/* Blagi zoom efekat slike na hover */
.feature-box:hover img {
    transform: scale(1.05);
}


/* Ostali feature-box elementi se blago smanjuju */
.features:hover .feature-box:not(:hover) {
    opacity: 0.5;
    transform: scale(0.9);
}

/* Prošireni opis ispod */
.feature-description {
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: #fff;
    min-height: 50px;
    font-style: italic;
}

.feature-description p {
    font-size: 24px;
    font-weight: 300;
}

/* Prikaz dodatnog opisa */
.feature-box:hover ~ .feature-description {
    opacity: 1;
    transform: translateY(0);
}



/* =========================== */
/* OFFER SECTION */
/* =========================== */

.offer {
    /*padding: 80px 0;*/
}

.offer h2 {
    text-align: center;
    margin-top: 0px;
}

.offer ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

/* .offer li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    flex-direction: column;
    text-transform: uppercase;
    border: 1px solid #111;
    padding: 40px;
    border-radius: 5px;
    text-align: center;
    height: 148px;
    justify-content: center;
} */

.offer li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    flex-direction: column;
    text-transform: uppercase;
    border: 1px solid #111;
    padding: 40px;
    border-radius: 5px;
    text-align: center;
    height: 148px;
    justify-content: center;
    position: relative;
    transition: border-color 0.4s ease-in-out;
    cursor: pointer;
}

.offer li::before {
    content: "";
    position: absolute;
    inset: 0;
    border: inherit;
    border-color: white;
    border-radius: inherit;
    transform: scaleX(0);
    transition: transform 0.4s ease-in-out;
}

.offer li:hover::before {
    transform: scaleX(1);
}


.offer li:last-child {
    margin-bottom: 0px;
}

.offer li i {
    color: #7ADD00;
    font-size: 50px;
}

.offer li span {
    font-size: 15px;
    text-transform: none;
    display: block;
    opacity: .5;
}

/* =========================== */
/* TESTIMONIALS */
/* =========================== */

.testimonials {
    text-align: center;
    background: #000;
    padding: 80px 0px;
    position: relative;
    overflow:hidden;
}

.testimonial__content {
    margin-bottom: 30px;
}

.testimonial__content h2 {
    margin-bottom: 20px;
}

.testimonial__content p {
    margin: 0 0 5px 0;
}

.testimonial__content p:last-child{
    margin: 0 0 0px 0;
}

.testimonials .swiper-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    height: 600px;
    overflow: hidden;
}

.testimonials .swiper-wrapper {
    transition-timing-function: ease-in-out;
}

.testimonial {
    padding: 60px;
    border-radius: 10px;
    border: 1px solid #111;
    text-align: center;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.testimonial:before {
    content: "\f10d"; /* Unicode za FontAwesome ikonu */
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 42px;
    color: #7ADD00;
    position: absolute;
    top: 15px;
    left: 20px;
}

.testimonial h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1.2px;
    margin: 0;
}

.testimonial p {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.2px;
    margin: 0;
    margin-bottom: 32px;
}



/* =========================== */
/* FAQ SECTION */
/* =========================== */

.faq {
    padding: 160px 0 80px 0px;
    /* text-align: center; */
    background: #000;
}

.faq__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq__content {
    text-align: left;
}
.faq__content h2 {
    text-align: left;
    margin-top: 0px;
    line-height: 62px;
}

.faq__content h2::before {
    left: 0;
    transform: unset;
}

.faq__content p a {
    color: #7ADD00;
}

.faq details {
    background: transparent;
    border: 1px solid #111;
    padding: 30px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    transition: border-color 0.4s ease-in-out;
    overflow: hidden;
}

.faq details::before {
    content: "";
    position: absolute;
    inset: 0;
    border: inherit;
    border-color: white;
    border-radius: inherit;
    transform: scaleX(0);
    transition: transform 0.4s ease-in-out;
}

.faq details:hover::before {
    transform: scaleX(1);
}


.faq details:last-child {
    margin-bottom: 0px;
}

.faq details[open] {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.faq details[open] summary {
    color: #7ADD00;
    
}

.faq summary {
    font-weight: 500;
    font-size:20px;
}

/* =========================== */
/* CONTACT SECTION */
/* =========================== */

.contact {
    text-align: center;
    /* padding: 0px 0px 80px 0px; */
    display: flex;
    flex-direction: column;
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
}

.contact label {
    font-size: 18px;
    margin: 20px 0px 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #111;
    color: #fff;
    font-weight: 400;
}

.contact button {
    margin-top: 20px;
    padding: 12px;
    background: #7ADD00;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}

.contact button:hover {
    background: #028bb5;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

#form-message {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

/* ========== POPUP STILOVI ========== */
.contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 640px;
    z-index: 1000;
    display: none; /* Početno sakriveno */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
}

.contact-popup.active {
    display: block;
    opacity: 1;
}

/* Overlay koji zatamnjuje ostatak ekrana */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.contact-overlay.active {
    display: block;
    opacity: 1;
}

/* Gumb za zatvaranje popupa */
.contact-popup__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* =========================== */
/* Privacy policy */
/* =========================== */
.privacy-policy__title,
.privacy-policy__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.privacy-policy__content {
    padding: 80px 0;
}



/* Servicess */
.services-expertise {
    padding: 60px 0 80px 0;
}

.services-expertise-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

.services-expertise h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 24px;
}

.services-expertise p {
    text-align: center;
    max-width: 700px;
    margin: auto;

}

.servicess-item__left {
    position: relative;
    min-height: 800px;
}

.services-expertise-item {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    position:relative;
    min-height: 500px;

    opacity: 0;
    transform: translateY(50px);
}

.services-expertise-item:nth-child(even) {
    direction: rtl;
    text-align: left;
}

.services-expertise-item:nth-child(even) > * {
    direction: ltr; /* Vraća unutrašnje elemente na normalan smjer */
}

.servicess__video {
    position: relative;
    min-height: 500px;
}

.services-expertise-item video {
    width: 100%; 
    /* position: relative; */
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.servicess__content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.servicess__content h3{
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
    margin: 0px;
    width: 100%;
    max-width: 440px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.servicess__content h3 span {
    font-size: 20px;
    font-weight: 300;
    color: #7ADD00;
}

.servicess__content ul {
    list-style: none;
    padding: 0px;
}

.servicess__content ul li {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.servicess__content ul li svg {
    width: 24px;
    height: 24px;
    fill: #7ADD00;
    margin-right: 10px;
    transform: rotate(270deg);
    margin-bottom: 0px;
}

.servicess__content ul li:last-child {
    margin-bottom: 0px;
}

.servicess-item__right {
    /* position: relative;
    min-height: 100px; */
    position: relative; /* ili absolute ako je layout takav */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.servicess-item__right p {
    position: absolute;
    top: 50%;
    left: 0;
    /* opacity: 0;
    display: none; */
    transform: translateY(-50%);
    transition: opacity 0.3s ease-out;
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
}

/* Process */

.services-process {
    position: relative;
    padding: 160px 0 0px 0;
    color: #fff;
    margin-top: 60px;
}

.process-header {
    position: sticky;
    top: 50%;
    /* transform: translateY(-50%); */
    text-align: center;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: auto;
    transform: translateY(-50%);
}

.process-header h4 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.process-number {
    font-size: 52px;
    font-weight: 500;
    color: rgba(225, 225, 225, 0.4);
    display: block;
    border: 1px solid #7ADD00;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.process-title {
    font-size: 72px;
    font-weight: bold;
    opacity: .4;
    margin: 0px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    /* gap: 220px; */
}

/* Postavljanje svakog koraka */
.process-step {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start; /* Poravnava tekst na vrh */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    height: 100vh;
}

/* Aktiviranje vidljivosti */
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stilizacija sadržaja */
.process__content {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 35%;
    box-sizing: border-box;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Drži tekst na vrhu */
    align-self: flex-start; /* Tekst ostaje skroz gore */
    margin-top: 40px;
}

.process__content h3 {
    margin: 0px;
    font-weight: 600;
}

.process__content p {
    margin: 0px;
}

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

.process__content ul li {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
    color: #000;
}

/* Stilizacija slike */
.process-step img {
    width: 100%;
    max-width: 500px;
    height: 442px;
    object-fit: contain;
    border-radius: 8px;
    align-self: flex-end; /* Postavlja sliku skroz dolje */
    margin-bottom: 40px;
}

/* Alternacija boje za parne sekcije */
.process-step:nth-child(even) .process__content {
    background-color: #7ADD00;
}


.process__content ul li:last-child {
    margin-bottom: 0px;
}

/* Carousel */
.services-list {
    padding: 80px 0;
    text-align: center;
}

.services-list h2 {
    margin: 0;
    margin-bottom: 24px;
}

.services-list p {
    margin: 0px;
}

.tech-carousel {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    margin: auto;
    margin-top: 40px;
}

.service-item {
    width: 160px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-item img {
    max-width: 100%;
    height: auto;
    max-height: 130px;
}

.service-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

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



/* =========================== */
/* FOOTER */
/* =========================== */

.footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
    font-size: 16px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4,auto);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__button {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    font-size: 32px;
    text-transform: lowercase;
    font-weight: 200;
    cursor: pointer;
}

/* Animacija crte ispod teksta */
.footer__button span {
    display: inline-block;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* Crta ispod teksta */
.footer__button span::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: white;
    transition: width 0.3s ease-in-out;
}

/* Hover efekt za crtu */
.footer__button:hover span::after {
    width: 100%;
}

.footer__button svg {
    width: 32px;
    height: 32px;
    fill: #7ADD00;
    margin-left: 15px;
    animation: arrowBounce 1.5s infinite ease-in-out alternate;
}
@keyframes arrowBounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(8px); /* Pomiče se lagano dolje */
    }
}

.footer-logo img {
    width: 150px;
}

.copy {
    font-size: 14px;
    font-weight: 400;
}

.socials {
    display: flex;
    gap: 25px;
}

.socials a {
    color: #7ADD00;
}

.socials a:hover {
    color: #fff;
    opacity: .8;
}

.socials a i {
    font-size: 24px;
}

.footer-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 10px;
}

.footer-info p {
    margin: 0px;
    margin-bottom: 5px;
}

.footer-info p a {
    color: #7ADD00;
}

.footer-info p a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
}

.footer-bottom__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom__container p {
    margin: 0px;
}

.footer-bottom a {
    color: #7ADD00;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-bottom a:hover {
    color: white;
}


/* Badge */
/* Rotating Badge */

.rotating-badges {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
}

.rotating-badge__container {
    display: flex;
    justify-content: flex-end;
}

.rotating-badge {
    
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 20px;
}

.rotating-badge textPath {
    letter-spacing: 1.8px;
}

/* SVG Animacija */
.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}

.badge-center {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-center img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.badge-center svg {
    width: 34px;
    fill: #7ADD00;
    height: 34px;
    animation: arrowBounce 1.5s infinite ease-in-out alternate;
}

/* Animation */
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* End badge */

.swiper-pagination-bullet {
    background-color: #7ADD00!important;
    opacity: .4!important;
}

.swiper-pagination-bullet-active {
    opacity: 1!important;
}

/* Fade-in animacija */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero p, .cta-btn {
    animation: fadeIn 1s ease-in-out;
}

/* Sekcije će se pojavljivati kad skrolaš */
.why-us, .offer, .testimonials, .faq, .contact {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

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


/* =========================== */
/* MOBILE STYLES */
/* =========================== */
@media (max-width: 1024px) {
    .hero img {
        height: 100vh;
        object-fit: cover;
    }

    .hero__logo img {
        height: auto;
    }
}

@media (max-width: 1024px) {

    .why-us h2 {
        max-width: 100%
    }

    .hero__content p {
        max-width: 100%;
    }


    .features {
        grid-template-columns: repeat(1,1fr);
        align-items: center;
    }

    .testimonial {
        width: 100%;
    }

    .contact form {
        width: 100%;
    }

    /* OFFER */
    .offer ul {
        grid-template-columns: repeat(2,1fr);
    }

    /* FAQ */
    .faq__container {
        grid-template-columns: repeat(1,1fr);
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .footer-socials {
        display: flex;
        align-items: center;

    }
}

@media (max-width: 796px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .header-sticky {
        top: -160px;
    }

    .header-sticky__container {
        flex-direction: column;
        gap: 10px;

    }

    .header__cta {
        font-size: 20px;
    }
    .header__cta svg {
        width: 24px;
        height: 24px;
    }


    .logo img {
        max-width: 200px;
    }

    /* HERO */

    .hero__header {
        top: 10px;
    }

    .hero img {
        height: 100vh;
        object-fit: cover;
    }

    .hero-header__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero__container {
        top:50%;
    }

    .rotating-badge {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
        max-width: 100%;
        line-height: 42px;
        margin: 0 0 20px 0;
    }

    .hero__logo img {
        height: auto!important;
    }

    .hero p {
        font-size: 16px;
        margin-top: 0px;
    }

    .hero__buttons span {
        font-size: 12px;
    }

    .cta-btn {
        font-size: 18px!important;
        line-height: 30px;
        font-weight: 700!important;
    }

    .cta-btn svg {
        width: 26px!important;
        height: 26px!important;
    }


    .hero__buttons {
        margin-top: 0px;
    }

    .hero-footer {
        bottom: 0;
    }

    .hero-home__projects {
        flex-direction: row-reverse;
        width: 100%;
        align-items: center;
        justify-content: flex-end;
    }
    .hero-home__projects p {
        margin: 0px;
        margin-right: 10px;
        font-size: 14px;
        font-weight: 200;
    }

    .hero-home__projects h3 {
        font-size: 36px;
    }

    .contact form {
        width: 100%;
    }

    /* WHO */
    .who {
        /* padding: 40px 0; */
        /* margin-top: 40px!important; */
        height: auto;
        position: relative;
    }

    .who-up,
    .who-down {
        position: static;
        height: auto;
        opacity: 1 !important;
        transform: none !important;
    }

    .who-down {
        padding: 40px 0;
    }

    .who-down__images {
        background: transparent;
        padding: 10px;
    }
    
    .who-down__images span {
        color: #7ADD00;
    }

    .who-up {
        display: none;
    }

    .who-up__title {
        line-height: 54px;
    }

    .who-down__content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .who-down__images img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .who-down__text {
        padding:15px;
        max-width: 100%;
    }

    .who-down__text p {
        font-size: 18px;
        line-height: 24px;
    }

    


    /* SERVICESS */

    .services-expertise {
        padding: 40px 0;
    }
    .services-expertise-item {
        grid-template-columns: repeat(1,1fr);
    }

    .servicess-item__right {
        display: none;
    }

    .servicess__video {
        min-height: 300px;
    }

    .servicess-item__left {
        min-height: 700px;
    }

    .servicess__content h3 {
        font-size: 36px;
        line-height: 42px;
    }

    .servicess__content ul {
        padding-left: 0px;
    }

    .servicess__content ul li{
        font-size: 20px;
    }

    .servicess__content ul li svg {
        /* width: 40%; */
        height: 32px;
    }

    /* PROCES */

    .services-process {
        padding: 40px 0;
    }
    .process-header {
        top: 25%;
        position: relative;
    }

    .process-number, .process-title {
        display: none;
    }

    .process-step {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
    }

    .process__content {
        width: 100%;
        margin-top: 0px;
    }

    .process-step img {
        height: auto;
        margin: auto;
        margin-top: 0px;
    }

    .process-steps {
        gap: 40px;
    }

    /* .process__content h3,
    .process__content p {
        display: none;
    } */

    /* CAROUSEL */
    .services-list {
        padding: 40px 0;
    }

    /* TESTIMONIALS */
    .testimonials{
        padding: 40px 0 60px 0;
        margin-bottom: 20px;
    }

    /* Why us */
    .why-us {
        padding-bottom: 40px;
    }

    .faq {
        padding-top: 60px;
    }

    /* OFFER */
    .offer {
        padding: 40px 0;
    }
    .offer ul {
        grid-template-columns: repeat(1,1fr);
    }

    /* FAQ */
    .faq__content h2 {
        line-height: 42px;
    }

    /* FOOTER */

    .footer {
        padding: 0 0 30px 0;
    }

    .footer-container {
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
        text-align: center;
    }
    .footer-bottom__container {
        flex-direction: column;
        gap: 10px;
    }

    .socials {
        justify-content: center;
    }

    .footer-button {
        display: flex;
        justify-content: center;
    }

    .footer__button {
        font-size: 28px;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Privacy */
    .privacy-policy__content {
        padding: 40px 0;
    }
}
