@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
html {
    scroll-behavior: smooth;

}
section, .New_project_portfolio, .Banner {
    scroll-margin-top: 44px; /* Visina tvoje navigacije */
  }
body{
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    background-color: var(--forest-green);
}
body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--forest-green);

    
}

:root{
    --white-show: #F1F6F7;
    --forest-green: #232628;
    --subset-orange: #F79B7B;
    --slate-gray: #BDBBBC;
    --charcoal-black: #232628;
    --neutral-p: #B3B9C1 ;
    --pg-color: #CACBCD;
    --bc-color: linear-gradient(
        45deg,
        #68737F 0%,
        #868E99 40%,
        #D3DBE1 70%,
        #717A85 100%
    )
}

nav {
    height: 44px;
    background: var(--charcoal-black); /* Polu-transparentna charcoal-black boja (hex: #1c1c1e) */
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px); /* Blur efekat */
    -webkit-backdrop-filter: blur(10px); /* Za Safari */
}

.nav-logo {
    filter: brightness(0) invert(1);
    height: 20px;
    width: auto;
    vertical-align: middle;
}

/* Ostali postojeći stilovi ostaju isti */
.menu {
    position: relative;
    margin: 0 auto;
    width: 1000px;
    overflow: hidden;
}

.menu ul{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.menu ul li{
    list-style: none;
}

.menu ul li,
.menu ul li a{
    color: #fcf3f3;
    line-height: 44px;
    text-decoration: none;
}

.menu ul li .fa.fa-apple{
    font-size: 20px;
}

.menu ul li a.menu-item{
    transform: scale(1);
    transition: 0.5s;
    display: block;
}

.menu ul li a.menu-item.hide-item{
    transform: scale(0);
}


.menu ul li a.menu-item.hide-item{
    transform: scale(0);
}

.menu ul li:nth-child(2) a.menu-item.hide-item{
    transition-delay: 0.6s;
}

.menu ul li:nth-child(3) a.menu-item.hide-item{
    transition-delay: 0.5s;
}

.menu ul li:nth-child(4) a.menu-item.hide-item{
    transition-delay: 0.4s;
}

.menu ul li:nth-child(5) a.menu-item.hide-item{
    transition-delay: 0.3s;
}

.menu ul li:nth-child(6) a.menu-item.hide-item{
    transition-delay: 0.2s;
}

.menu ul li:nth-child(7) a.menu-item.hide-item{
    transition-delay: 0.1s;
}

.menu ul li:nth-child(8) a.menu-item.hide-item{
    transition-delay: 0s;
}

/* press cmd + D or ctrl + D(windows) to select multiple lines having same names for eg. */

.menu ul li:nth-child(2) a.menu-item{
    transition-delay: 0s;
}

.menu ul li:nth-child(3) a.menu-item{
    transition-delay: 0.1s;
}

.menu ul li:nth-child(4) a.menu-item{
    transition-delay: 0.2s;
}

.menu ul li:nth-child(5) a.menu-item{
    transition-delay: 0.3s;
}

.menu ul li:nth-child(6) a.menu-item{
    transition-delay: 0.4s;
}

.menu ul li:nth-child(7) a.menu-item{
    transition-delay: 0.5s;
}

.menu ul li:nth-child(8) a.menu-item{
    transition-delay: 0.6s;
}

.search-form{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(0);
    width: 600px;
    height: 44px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.search-form.active{
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
    transform: translateX(-50%);
}

.search-form input{
    width: 100%;
    height: 44px;
    background: transparent;
    color: var(--white-show);
    border: none;
    outline: none;
    font-size: 16px;
}

.search-form input::placeholder{
    color: #f7efef;
}

.search-form:before{
    content: '\f002';
    position: absolute;
    top: 12px;
    left: -26px;
    font-size: 18px;
    color: #f1eaea;
    font-family: fontAwesome;
}

.close {
    position: absolute;
    right: 0;
    top: 1px;
    height: 44px;
    background: var(--charcoal-black); /* Ista boja kao nav */
    color: #FFF;
    line-height: 44px;
    font-size: 18px;
    text-align: right;
    width: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px); /* Blur i za close */
    -webkit-backdrop-filter: blur(10px);
}

.close.active{
    opacity: 1;
    visibility: visible;
}
.search-icon {
    position: relative;
    z-index: 12;
}
/* Responzivnost */
@media (max-width: 1024px) {
    .menu ul li:nth-child(n+6) { /* Sakrij poslednje 3 stavke na tabletima */
        display: none;
    }
}

@media (max-width: 768px) {
    .menu ul li:nth-child(n+4) { /* Sakrij još stavki na manjim ekranima */
        display: none;
    }
    
    .menu {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .menu ul li:not(:first-child):not(:last-child) { /* Prikaži samo prvu i poslednju stavku */
        display: none;
    }
    
    .menu ul {
        justify-content: space-around;
    }
    
    .search-form {
        width: 95%;
    }
}

/*Hreo-section*/
.hero-section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-vid{
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-video{
    width: 100%;
    height: 70%;
    object-fit: cover;
}
.hero-info {
    z-index: 1;
    position: absolute;
    bottom: 30%; /* Postavljeno na dno videa (70% visine) */
    left: 50%;
    transform: translateX(-50%); /* Centriranje horizontalno */
    text-align: center; /* Centriranje teksta */
    width: 100%;
}

.hero-info h1 {
    color: var(--subset-orange);
    font-size: 2rem;
    margin-bottom: 10px; /* Razmak između teksta i loga */
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-logo {
    width: 500px;
    height: auto;
    max-width: 80%;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

/* Donji dio ispod videa (30%) */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #f5f5f5;
    z-index: 1;
}

/* Responsivne prilagodbe */
@media (max-width: 768px) {
    .hero-info h1 {
        font-size: 1.5rem;
    }
    .hero-logo {
        width: 150px;
    }
}
.next-btn{
    width: 140px;
    height: 140px;
    background-color: var(--subset-orange);
    position: absolute;
    left: 50%;           /* Centrira horizontalno */
    top: -30%;            /* Podesi vertikalnu poziciju */
    transform: translate(-50%, -50%); /* Precizno centriranje */
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;          /* Osigurava da je dugme iznad videa */
    cursor: pointer;
    opacity: 0;
    transition: 0.5s;
    font-size: 30px;
    font-weight: bold;
    color: #eee2e2;
}
.next-btn:hover{
    width: 140px;
    height: 140px;
    opacity: 1;
    box-shadow: 0 0 15px rgb(240, 238, 238);
}
/* Stil za bijeli sadržaj */
.white-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Iznad bijelog polja */
    background: var(--forest-green);
}

.white-content-text {
    color: var(--pg-color); /* Crna boja teksta */
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.6;
}

.white-content-btn {
    color: var(--neutral-p);
    background-color: transparent;
    border: 2px solid var(--pg-color);
    padding: 8px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.white-content-btn:hover {
    background-color: var(--subset-orange);
    color: #fff;
}

/* Ažurirajte postojeći ::after da ima niži z-index */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #f5f5f5;
    z-index: 1; /* Ispod sadržaja */
}


/* O nama*/
.About.section {
    display: flex;
    width: 100%;
    min-height: 70vh;  /* Bolje od % za kontrolu visine */
    align-items: center;  /* Poravnanje vertikalno */
    background-color: var(--forest-green);



}
.about_page {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    padding: 2rem;
    box-sizing: border-box;
}

.about_page img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;  /* Opcionalno - za zaobljene kutove */
}


.about_title {
    width: 50%;
    padding: 2rem 4rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ececec;
}

.about_title h1 {
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    font-size: 2.5rem;
    color: #f7eeee;
}

.about_title h2 {
    margin: 0 0 1.5rem 0;
    font-size: 3.5rem;
    color: var(--subset-orange);
    color: var(--subset-orange);
}

#text {
    color: var(#e9dfdf, #f0e5e5);
    position: relative;
    margin: 0 0 2rem 0;
    padding-left: 2rem;
    line-height: 1.6;
}

#text:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    border-radius: 8px;
    background-color: var(--subset-orange, #F79B7B);
    transform: none;
}

.about_Wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2rem 0;
}

.about_Wrap h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #F79B7B;

}

.about_Wrap p {
    color: var(#ece0e0, #131111);
    margin: 0;
    line-height: 1.6;
}

.Manager {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
}

.btn1 {
    padding: 0.8rem 2rem;
    background-color: var(--subset-orange);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn1:hover {
    background-color: var(--subset-orange-hover, #d38355);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgb(255, 253, 253);
}

/* Responsive dizajn */
@media (max-width: 768px) {
    .About.section {
        flex-direction: column;
    }
    
    .about_page, .about_title {
        width: 100%;
        padding: 1rem;
    }
    
    .about_title h1 {
        font-size: 1.8rem;
    }
}
/* Slika1 */
.showcase-image-section {
    width: 100%;
    position: relative;
    margin: 20 80px 20;

}

.image-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;

}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 3%;
    background: rgba(0,0,0,0.4);
    color: var(--white-show);
    
}

.image-overlay h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.image-overlay p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.image-link {
    color: var(--white-show);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.image-link i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.image-link:hover {
    color: var(--subset-orange);
}

.image-link:hover i {
    transform: translateX(5px);
}


/*slika2*/






/*<!--Zasto izabrati nas info-->*/
.info-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 100px;
    background-color: var(--forest-green);
    padding-bottom: 50px;

}

.section-title{
    font-size: 48px;
    font-weight: 700;
    color: var(--subset-orange);
    margin-top: 30px;
}
.info-cards{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-top: 30px;
    
}
.card{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: auto;
    height: 40vh;
    overflow: hidden;
    border: 1px solid rgb(248, 246, 240);
    border-radius: 20px;
    transition: 0.3s;
    background-color: var(--charcoal-black);
}
.card img{
    width: 80%;
    height: 50%;
    object-fit: cover;
}
.card h1{
    position: absolute;
    margin: 0;
    bottom: 40%;
    left: 5%;
    font-size: 25px;
    z-index: 1;
    color: #fff;
}
.card p{
    position: absolute;
    bottom: 15%;
    left: 5%;
    z-index: 1;
    max-width: 300px;
    color: rgb(173, 173, 173);
    font-size: 13px;
    line-height: 20px;
    max-width: 500px;
}
.card video{
    margin-top: 10%;
    width: 80%;
    height: 50%;
    object-fit: cover;
    mix-blend-mode: normal;
}
.card button{
    color: rgb(233, 220, 220);
    padding: 15px 15px;
    border-radius: 10px;
    border: 1px solid var(--neutral-p);
    background-color: var(--forest-green);
    box-shadow: 0 0 5px var(--subset-orange);
    cursor: pointer;
    position: absolute;
    transition: 0.3s;
    bottom: 5%;
    left: 5%;
}
.card button:hover{
    box-shadow: 0 0 15px var(--subset-orange);
    opacity: 0.7;
}
.card:hover{
    box-shadow: 0 0 15px var(--subset-orange);
}
.card:nth-child(3){
    grid-row: span 2;
    height: 82vh;
}
.card:nth-child(3) p{
    bottom: 15%;
    max-width: 650px;
}
.card:nth-child(3) h1{
    bottom: 29%;
}
.card:nth-child(4){
    grid-column: span 2;
}
.card:nth-child(4) p{
    max-width: 650px;
}
.card:nth-child(4) h1{
    bottom: 35%;
}


/*Services section*/
.Service.section {
    padding: 80px 20px;
    background-color: var(--forest-green);
    text-align: left; /* Promenjeno u left jer imamo margin-left na naslovima */
}

.Service.section h5 {
    font-size: 80px;
    margin: 100px 0 0 90px;
    color: var(--subset-orange);
    letter-spacing: 1.5px;
    font-weight: 700;
}

.Service.section h1 {
    font-size: 40px;
    color: #e4dddd;
    margin: 20px 0 60px 90px;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1800px; /* Povećana maksimalna širina */
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Centrirani box-ovi */
    flex-wrap: wrap;
    gap: 60px; /* Povećan razmak između box-ova */
    padding: 50px 20px;
}

.box {
    width: 530px;
    height: 455px;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(145deg, #232628, #000);
    box-shadow: 8px 8px 16px #23262875, 
               -8px -8px 16px #232628; /* Ispravljena greška u senci */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.box:hover {
    background: linear-gradient(145deg, #F79B7B, #94462dd8);
    box-shadow: 8px 8px 16px #2c2a2a,
               -8px -8px 16px #ffffff57;
    transform: translateY(-5px);
}

.box:hover h2,
.box:hover p,
.box:hover i:first-child {
    color: #ffffff;
}

.box i:first-child {
    font-size: 40px;
    color: var(--subset-orange);
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s ease;
}

.box h2 {
    font-weight: 500;
    margin: 25px 0;
    font-size: 19px;
    transition: color 0.3s ease;
    color: #F79B7B;
}

.box p {
    color: var(--slate-gray);
    font-weight: 400;
    margin: 25px 0;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.box .fa-circle-right {
    font-size: 30px;
    color: #F79B7B;
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: block; /* Prikazana strelica */
    transition: color 0.3s ease;
}
.box:hover .fa-circle-right {
    color: white !important;
    transform: translateX(5px); /* Opciono: dodajte malo animacije pomaka */
}
@media(max-width: 767px) {
    .Service.section h5 {
        font-size: 50px;
        margin: 40px 0 0 20px;
    }
    
    .Service.section h1 {
        font-size: 25px;
        margin: 10px 0 30px 20px;
    }
    
    .box {
        min-height: 350px;
        padding: 25px;
    }
}

@media(max-width: 480px) {
    .Service.section {
        padding: 40px 15px;
    }
    
    .Service.section h5 {
        font-size: 40px;
        margin: 30px 0 0 15px;
    }
    
    .Service.section h1 {
        font-size: 22px;
        margin: 10px 0 25px 15px;
    }
    
    .box {
        min-height: 320px;
        padding: 20px;
        border-radius: 18px;
    }
    
    .box i:first-child {
        font-size: 30px;
    }
    
    .box .fa-circle-right {
        bottom: 20px;
        right: 20px;
    }
}


/*Product*/

.section__container.store__container {
    padding-top: 4rem; /* Povećajte po potrebi */
    padding-bottom: 3rem;
    margin-top: 2rem; /* Dodatni razmak od gornjeg sadržaja */
    background: var(--forest-green);
}
.store__container h2{
    margin-bottom: .5rem;
    font-size: 80px;
    font-weight: 700;
    font-family: sans-serif;
    text-align: center;
    color: var(--subset-orange);
}
.store__container p{
    margin-bottom: 4rem;
    font-weight: 500;
    color: white;
    text-align: center;
}
.swiper{
    width: 100%;
    padding-bottom: 5rem;
}
.swiper-slide{
    max-width: 400px;
}
.store__card h4{
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: sans-serif;
    text-align: center;
}
.store__card img{
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: 5rem;
    display: block;
    
}
.store__card h3{
    font-size: 1.2rem;
    font-weight: 400;
    font-family: sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
}
.swiper-pagination-bullet-active{
    background-color: #000;
}
.swiper-pagination {
    bottom: 5px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--subset-orange) !important;
    transform: scale(1.3);
    transition: all 0.3s ease;
}



/* Projekti*/
.New_project_portfolio{
    flex-direction: column;
    background-color: var(--forest-green);
}
.New_project_title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 100px 8%;
}
.New_project_portfolio .Project_heading h2 {
    color: white;
    font-size: 2.5rem; /* Veći font od h1 */
    font-weight: 600;
    margin-bottom: 10px;
}

.New_project_portfolio .Project_heading h1 {
    color: white;
    font-size: 2rem; /* Manji font od h2 */
    font-weight: 400;
    margin-top: 0;
}
.splide__arrow--next,
.splide__arrow--prev{
    display: none !important;
}

.Portfolio_Splide{
    width: 100%;
}
.Portfolio_page{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: relative;
    z-index: 99 !important;
}
.Portfolio_page img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.portfolio_box{
    position: absolute;
    top: 100%;
    left: 0%;
    height: 100%;
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    flex-direction: column;
    color: var(--white-show);
    z-index: 9;
    transition: .6s;
    background-color: #28292b36;
    backdrop-filter: blur(2px);
}
.Portfolio_page:hover .portfolio_box{
    top: 0;
}
.portfolio_box h3{
    font-size: 2rem;
    font-family: 'Marcellus' , serif;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--subset-orange);
}
.portfolio_box p{
    line-height: 1.6rem;
}


/*preporuke*/

.Testimonials{
    flex-direction: column;
    background-color: var(--forest-green);
}

.Testimonials_title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-inline: 30px;
    text-align: center;

}
.Testimonials_title h2 {
    color: var(--subset-orange); /* Narandžasta boja */
    font-size: 36px; /* Povećan font */
    margin-bottom: 10px; /* Razmak između h2 i h1 */
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 20px;
}

.Testimonials_title h1 {
    color: var(--neutral-p); /* Bela boja */
    font-size: 30px; /* Povećan font */
    font-weight: 700;
    margin-top: 0; /* Uklanja default margin */
    padding-top: 10px;
}

.Testimonials_Reviews{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Testimonials_Reviews{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.client{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 20px;
}

.client_page{
    cursor: pointer;
}
.client_det_container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}
.client_page img {
    width: 100px; 
    height: 100px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 3px solid var(--subset-orange);
}

.client_page:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.client_Details{
    width: 60%;
    background-color: var(--charcoal-black);
    padding: 40px 50px;
    text-align: center;
    color: var(--white-show);
    position: relative;
    top: 0;
    left: 0;
    transition: .6s;
}

.client_det2,
.client_det3{
    display: none;
}

.add_anim_left{
    animation: anim_left 1s forwards linear;
}

@keyframes anim_left {
    0%{
        transform: translateX(200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

.client_Details p{
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.client_Details h3{
    font-family: 'Marcellus', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.client_Details span{
    color: var(--subset-orange);
    background-color: transparent;
    text-shadow: 0.5s 0.5s var(--white-show);
    font-weight: 600;
    font-size: 18px;
}

/*Banner*/
.Banner{
    width: 100%;
    height: 500px;
    background-image: url(img/vedio-img.png);
    background-size: cover;
    background-position: top center;
    position: relative;
    margin-bottom: 80px;

    
}
.Counter_Wrap{
    position: absolute;
    width: 80%;
    max-width: 1200px; /* Ograničenje širine */
    display: flex;
    justify-content: space-between;
    padding: 40px; /* Smanjen padding */
    top: auto; /* Promjena pozicioniranja */
    bottom: -60px; /* Pomjeramo ispod bannera */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    background-color: var(--charcoal-black);
    gap: 30px;
    border-radius: 8px; /* Dodajemo zaobljene uglove */
    box-shadow: 0 10px 30px rgba(194, 180, 163, 0.178);
}
.Counter_Wrap .Counter{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-show);
}
.Counter h1{
    font-size: 2rem;
    color: var(--subset-orange);
    font-weight: 500;
}
.Counter span{
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
.Banner_title{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.Banner_title h1{
    color: #B3B9C1;
}
.Banner_title button{
    height: 100px;
    width: 100px;
    background-color: var(--white-show);
    border: none;
}
.Banner_title button i{
    font-size: 40px;
    color: #000;
    transition: all 0.6s;
}
.Banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #1e1e1e 100%);
}

/*Blogs*/

.blog{
    flex-direction: column;
    background-color: var(--forest-green);
    padding-top: 100px; /* Osigurava dovoljno prostora za Counter_Wrap */
    position: relative; /* Potrebno za z-index */
    z-index: 1; /* Iznad Counter_Wrap */
}
.blog_title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-left: 1%;
    gap: 20px;
}
.blog_heading h1 {
    color: #ffffff; /* Bijela boja */
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog_heading h2 {
    color: var(--subset-orange); /* Narandžasta boja */
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.Blog_Wrap{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,8fr);
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}
.Blog_Card{
    width: 95%;
    height: 95%;
    background-color: var(--charcoal-black);
    border-radius: 8px;
}
.Blog_Card .Thumbline_page{
    width: 100%;
    overflow: hidden;
}
.Blog_Card:hover .Thumbline_page img{
    transform: scale(1.1);
}
.Thumbline_page img{
    width: 100%;
    transition: 1s;
}
.Blog_Details{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    color: var(--white-show);
}
.Category_and_Author{
    width: 100%;
    display: flex;
    align-items: start;
    gap: 20px;
    color: var(--subset-orange);
    margin-bottom: 20px;
}
.Blog_Details h2{
    font-family: 'Marcellus';
    letter-spacing: 1px;
    line-height: 2rem;
    transition: all .6s;
}
.Blog_Details h2:hover{
    color: var(--subset-orange);
}
.Counter_Wrap {
    bottom: 0;
    transform: translate(-50%, 50%);
}
.bnt1 {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--subset-orange); /* Narandžasta boja teksta */
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--subset-orange); /* Narandžasti okvir */
    border-radius: 30px; /* Zaobljeni uglovi */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-left: auto; /* Ovo će gurnuti dugme maksimalno desno */
    margin-right: 40px; /* Opciono: dodajte željeni razmak od desnog ruba */
    
}

.bnt1:hover {
    color: #fff; /* Bela boja teksta na hover */
    background-color: var(--subset-orange); /* Narandžasta pozadina na hover */
    box-shadow: 0 0 15px rgba(230, 65, 44, 0.5); /* Svetleći efekat */
}

/* Opciono: Animacija za "djavo" efekat */
.bnt1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--subset-orange);
    transition: all 0.4s ease;
    z-index: -1;
}

.bnt1:hover::before {
    left: 0;
}


/* ===== PARTNERS SECTION - RESPONZIVNA VERZIJA ===== */

/* Osnovna Partners sekcija */
.partners_section{
    padding: 64px 0;
    background-color: var(--forest-green);
    overflow: hidden;
}

.section_title{
    text-align: center;
    margin-bottom: 3rem;
}

.section_title h3{
    font-size: 80px;
    font-weight: bold;
    color: var(--subset-orange);
    margin: 0;
    letter-spacing: 1px;
}

.logos_slider{
    overflow: hidden;
    width: 100%;
}

.overflow {
    display: flex;
    padding: 0.5rem 1rem;
    overflow: hidden;
    white-space: nowrap;
}

/* GLAVNA IZMENA - Prvi red ide LEVO, drugi red ide DESNO */
.logos_wrapper{
    display: flex;
    justify-content: space-around;
    animation: logoloop-left 30s linear infinite; /* Prvi red - ide levo */
    min-width: 100%;
    gap: 2rem;
}

.reverse .logos_wrapper{
    animation-name: logoloop-right; /* Drugi red - ide desno */
}

.logo-item{
    margin-left: 1rem;
    padding: 1.5rem;
    aspect-ratio: 20/9;
    background: var(--charcoal-black);
    display: grid;
    place-items: center;
    border-radius: 1rem;
    flex-shrink: 0;
    border: 2px solid rgba(247, 155, 123, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

.logo-item:hover {
    border-color: var(--subset-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 155, 123, 0.2);
}

.logo-item img {
    width: 7rem;
    height: auto;
    max-height: 4rem;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(1.1);
}

/* Animacije */
@keyframes logoloop-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%); /* IDE LEVO */
    }
}

/* ANIMACIJA ZA DESNI SMER */
@keyframes logoloop-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0); /* IDE DESNO */
    }
}

/* ===== RESPONZIVNI STILOVI ===== */

/* 1920px - Large Desktop */
@media screen and (min-width: 1920px) {
    .partners_section {
        padding: 80px 0;
    }
    
    .section_title h3 {
        font-size: 90px;
        margin-bottom: 1rem;
    }
    
    .section_title {
        margin-bottom: 4rem;
    }
    
    .logo-item {
        padding: 2rem;
        min-width: 220px;
        margin-left: 1.5rem;
    }
    
    .logo-item img {
        width: 8rem;
        max-height: 5rem;
    }
    
    .logos_wrapper {
        gap: 3rem;
    }
}

/* 1600px - Desktop */
@media screen and (max-width: 1600px) and (min-width: 1200px) {
    .section_title h3 {
        font-size: 75px;
    }
    
    .logo-item {
        min-width: 170px;
        padding: 1.3rem;
    }
    
    .logo-item img {
        width: 6.5rem;
        max-height: 3.8rem;
    }
}

/* 1440px - Laptop Desktop */
@media screen and (max-width: 1440px) and (min-width: 1200px) {
    .section_title h3 {
        font-size: 70px;
    }
    
    .logo-item {
        min-width: 160px;
        padding: 1.2rem;
    }
    
    .logo-item img {
        width: 6rem;
        max-height: 3.5rem;
    }
    
    .logos_wrapper {
        gap: 1.5rem;
        animation-duration: 25s; /* Brzina ostaje ista za oba smera */
    }
}

/* 1366px - Česta laptop rezolucija (ASUS TUF A15 i slični) */
@media screen and (max-width: 1366px) and (min-width: 1200px) {
    .partners_section {
        padding: 50px 0;
    }
    
    .section_title h3 {
        font-size: 65px;
    }
    
    .section_title {
        margin-bottom: 2.5rem;
    }
    
    .logo-item {
        min-width: 150px;
        padding: 1rem;
        margin-left: 0.8rem;
    }
    
    .logo-item img {
        width: 5.5rem;
        max-height: 3.2rem;
    }
    
    .logos_wrapper {
        gap: 1.2rem;
        animation-duration: 25s; /* Ista brzina za oba reda */
    }
}

/* 1280px - Manji laptop ekrani */
@media screen and (max-width: 1280px) and (min-width: 1024px) {
    .section_title h3 {
        font-size: 60px;
    }
    
    .logo-item {
        min-width: 140px;
        padding: 0.9rem;
    }
    
    .logo-item img {
        width: 5rem;
        max-height: 3rem;
    }
    
    .logos_wrapper {
        animation-duration: 22s;
    }
}

/* 1024px - Tablet Landscape */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .partners_section {
        padding: 40px 0;
    }
    
    .section_title h3 {
        font-size: 55px;
    }
    
    .section_title {
        margin-bottom: 2rem;
    }
    
    .logo-item {
        min-width: 130px;
        padding: 0.8rem;
        margin-left: 0.6rem;
    }
    
    .logo-item img {
        width: 4.5rem;
        max-height: 2.8rem;
    }
    
    .logos_wrapper {
        gap: 1rem;
        animation-duration: 20s;
    }
    
    .overflow {
        padding: 0.3rem 0.8rem;
    }
}

/* 768px - Tablet Portrait / Mobile Landscape */
@media screen and (max-width: 768px) and (min-width: 480px) {
    .partners_section {
        padding: 35px 0;
    }
    
    .section_title h3 {
        font-size: 45px;
    }
    
    .section_title {
        margin-bottom: 1.5rem;
    }
    
    .logo-item {
        min-width: 120px;
        padding: 0.7rem;
        margin-left: 0.5rem;
        border-radius: 0.8rem;
    }
    
    .logo-item img {
        width: 4rem;
        max-height: 2.5rem;
    }
    
    .logos_wrapper {
        gap: 0.8rem;
        animation-duration: 18s;
    }
    
    .overflow {
        padding: 0.3rem 0.5rem;
    }
}

/* 480px - Mobile Portrait */
@media screen and (max-width: 480px) {
    .partners_section {
        padding: 30px 0;
    }
    
    .section_title h3 {
        font-size: 36px;
        padding: 0 15px;
    }
    
    .section_title {
        margin-bottom: 1.2rem;
    }
    
    .logo-item {
        min-width: 100px;
        padding: 0.6rem;
        margin-left: 0.4rem;
        border-radius: 0.6rem;
    }
    
    .logo-item img {
        width: 3.5rem;
        max-height: 2.2rem;
    }
    
    .logos_wrapper {
        gap: 0.6rem;
        animation-duration: 15s;
    }
    
    .overflow {
        padding: 0.2rem 0.3rem;
    }
}

/* 360px - Very Small Mobile */
@media screen and (max-width: 360px) {
    .partners_section {
        padding: 25px 0;
    }
    
    .section_title h3 {
        font-size: 30px;
        padding: 0 10px;
    }
    
    .logo-item {
        min-width: 90px;
        padding: 0.5rem;
        margin-left: 0.3rem;
    }
    
    .logo-item img {
        width: 3rem;
        max-height: 2rem;
    }
    
    .logos_wrapper {
        gap: 0.5rem;
        animation-duration: 12s;
    }
}

/* ===== DODATNE OPTIMIZACIJE ===== */

/* Pause animacije na hover (opciono) */
.logos_wrapper:hover {
    animation-play-state: paused;
}

/* Smooth animacija za mobilne uređaje */
@media (prefers-reduced-motion: reduce) {
    .logos_wrapper {
        animation-duration: 60s;
    }
}

/* Dark mode optimizacija */
@media (prefers-color-scheme: dark) {
    .logo-item {
        background: rgba(35, 38, 40, 0.8);
        border-color: rgba(247, 155, 123, 0.15);
    }
}

/* Poboljšanje accessibility */
.logo-item:focus-within {
    outline: 2px solid var(--subset-orange);
    outline-offset: 2px;
}

/* Performance optimizacija */
.logos_wrapper {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* RTL support (ako je potrebno) */
[dir="rtl"] .logos_wrapper {
    animation-name: logoloop-right;
}

[dir="rtl"] .reverse .logos_wrapper {
    animation-name: logoloop-left;
}




/*Footer*/
.container1{
    max-width: 1170px;
    margin: auto;
}
ul{
    list-style: none;
}
.footer{
    background-image: url(img/footer_bg.png);
    padding: 70px 0;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 18px;
    color: #f0f0f0;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}
.footer-col h4:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--subset-orange);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: var(--white-show);
    text-decoration: none;
    font-weight: 300;
    color: #fff;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: var(--subset-orange);
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(0,0,0,0.3);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
    color: var(--subset-orange);
    background-color: #000;
}

.newsletter {
    margin-top: 20px;
}
.newsletter h4 {
    margin-bottom: 15px;
}
.newsletter input {
    padding: 8px;
    width: 100%;
    margin-bottom: 10px;
}
.newsletter button {
    padding: 8px 15px;
    background-color: var(--subset-orange);
    color: white;
    border: none;
    cursor: pointer;
}

.bottom {
    text-align: center;
    padding-top: 20px 0 0;
    margin-top: 20px;
    border-top: none;
}
.bottom p {
    margin: 5px 0;
    color: #fff;
}
.bottom a {
    color: #fff;
    text-decoration: none;
}
.bottom a:hover {
    color: var(--subset-orange);
}

@media(max-width: 767px){
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px){
    .footer-col {
        width: 100%;
    }
}


/*--Custom Scrollbar--*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--charcoal-black); /* Fallback boja */
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--forest-green, #232628); /* Fallback boja */
    border-radius: 20px;
    border: 3px solid var(--subset-orange, #F79B7B); /* Dodaje prostor oko thumb-a */
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(34, 74%, 36%); /* Ispravljen HSL format */
}


/*Responsive MR SECTION*/

@media (max-width:1400px) {
    .sectio_title h1{
        line-height: 5rem;
    }

    .hero_title{
        width: 55%;
    }
    .Counter h1{
        font-size: 3rem;
    }
    .Counter span{
        font-size: 14px;
    }
    .blog{
        padding: 170px 8%;
    }
}

@media (max-width:1200px) {
    .Banner {
        height: 400px;
        margin-bottom: 100px;
    }
    
    .Banner_title {
        padding: 0 40px;
    }
    
    .Banner_title h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .Counter_Wrap {
        width: 90%;
        padding: 30px;
        bottom: -80px;
    }
    
    .Counter {
        padding: 0 15px;
    }
    
    .Counter h1 {
        font-size: 1.8rem;
    }
    
    .Counter span {
        font-size: 0.9rem;
    }
    
    /* Blog Section */
    .blog {
        padding: 100px 40px 60px;
    }
    
    .blog_title {
        flex-direction: row;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .blog_heading h1 {
        font-size: 2.2rem;
    }
    
    .blog_heading h2 {
        font-size: 1.2rem;
    }
    
    .Blog_Wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .Blog_Card {
        width: 100%;
    }
    
    .Blog_Details {
        padding: 30px 25px;
    }
    
    .Category_and_Author {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .Blog_Details h2 {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }
    
    .bnt1 {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width:1000px) {
      /* Banner Section */
    .Banner {
        height: 350px;
        margin-bottom: 120px;
    }
    
    .Banner_title h1 {
        font-size: 1.8rem;
        padding: 0 30px;
    }
    
    .Banner_title button {
        height: 80px;
        width: 80px;
    }
    
    .Banner_title button i {
        font-size: 30px;
    }
    
    .Counter_Wrap {
        width: 95%;
        padding: 25px 20px;
        bottom: -90px;
        gap: 20px;
    }
    
    .Counter h1 {
        font-size: 1.6rem;
    }
    
    .Counter span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Blog Section */
    .blog {
        padding: 120px 30px 80px;
    }
    
    .blog_title {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .blog_heading h1 {
        font-size: 2rem;
    }
    
    .Blog_Wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .Blog_Card:last-child {
        grid-column: 1 / -1;
        max-width: 75%;
        margin: 0 auto;
    }
    
    .Blog_Details {
        padding: 25px 20px;
    }
    
    .Blog_Details h2 {
        font-size: 1.25rem;
    }
    
    .bnt1 {
        align-self: flex-start;
        margin-top: 10px;
    }

    .Footer_Wrap{
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 768px) {
    /* Preporuke Section */
    .Testimonials {
        padding: 40px 20px;
    }
    
    .Testimonials_title h2 {
        font-size: 28px;
    }
    
    .Testimonials_title h1 {
        font-size: 24px;
    }
    
    .client {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    .client_page img {
        width: 60px;
        height: 60px;
    }
    
    .client_Details {
        width: 90%;
        padding: 30px 20px;
    }
    
    /* Banner Section */
    .Banner {
        height: 350px;
        margin-bottom: 120px;
    }
    
    .Banner_title h1 {
        font-size: 1.8rem;
        padding: 0 30px;
        text-align: center;
    }
    
    .Banner_title button {
        height: 80px;
        width: 80px;
    }
    
    .Banner_title button i {
        font-size: 30px;
    }
    
    .Counter_Wrap {
        width: 90%;
        flex-direction: column;
        padding: 25px 20px;
        bottom: -90px;
        gap: 20px;
    }
    
    .Counter h1 {
        font-size: 1.6rem;
    }
    
    .Counter span {
        font-size: 0.85rem;
        line-height: 1.3;
        text-align: center;
    }
    
    /* Blog Section */
    .blog {
        padding: 120px 20px 80px;
    }
    
    .blog_title {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 0;
    }
    
    .blog_heading {
        text-align: center;
    }
    
    .blog_heading h1 {
        font-size: 2rem;
    }
    
    .blog_heading h2 {
        font-size: 1.2rem;
    }
    
    .bnt1 {
        margin: 0 auto;
    }
    
    .Blog_Wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .Blog_Card {
        width: 100%;
        margin: 0 auto;
    }
    
    .Blog_Card:last-child {
        max-width: 100%;
    }
    
    .Blog_Details {
        padding: 25px 20px;
    }
    
    .Blog_Details h2 {
        font-size: 1.25rem;
    }
    
    .Category_and_Author {
        flex-direction: column;
        gap: 10px;
    }
}

/* Additional styling for very small screens (below 500px) */
@media (max-width: 500px) {
    .Testimonials_title h2 {
        font-size: 24px;
    }
    
    .Testimonials_title h1 {
        font-size: 20px;
    }
    
    .client_Details p {
        font-size: 14px;
    }
    
    .client_Details h3 {
        font-size: 18px;
    }
    
    .Banner_title h1 {
        font-size: 1.5rem;
    }
    
    .Counter_Wrap {
        width: 95%;
    }
    
    /* Center counters specifically */
    .Counter {
        text-align: center;
    }
    
    /* Special centering for "Realizovanih projekata" */
    .Counter:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}



/*Tablet Responsive info card*/
@media screen and (max-width: 1000px){
    .section-title{
        font-size: 30px;
    }
    .info-card{
        grid-template-columns: auto;
    }
    .card.card:nth-child(3){
        grid-column: span 2;
        height: 70vh;
    }

    .info-cards .card h1{
        font-size: 20px;
        margin: 10px 0;
    }
    .card:nth-child(3) h1{
        bottom: 35%;
    }
    .card video{
        height: 45%;
        margin-top: 2%;
    }
    .card p {
        font-size: 12px; /* Smanjite veličinu fonta za mobilne uređaje */
        line-height: 1.5; /* Povećajte line-height za bolju čitljivost */
        padding: 20px 0; /* Dodajte padding sa strane da tekst ne ide do rubova */
        margin: -20px 0; /* Dodajte margin iznad i ispod teksta */
    }    
}

@media screen and (max-width: 1400px) {
    .section-title {
        font-size: 36px;
    }

    .info-card {
        grid-template-columns: repeat(2, 1fr); /* Malo šira mreža nego za 1000px */
    }

    .card.card:nth-child(3) {
        grid-column: span 1; /* Ne mora zauzimati dvije kolone na 1400px */
        height: 82vh;
    }

    .info-cards .card h1 {
        font-size: 22px;
        margin: 13px 0;
    }

    .card:nth-child(3) h1 {
        bottom: 35%;
    }

    .card video {
        height: 50%;
        margin-top: 1%;
    }

    .card p {
        font-size: 13px;
        line-height: 1.6;
        padding: 15px 1px;
        margin: -30px 0;
    }
}

/* Mobile Responsive info card*/
@media screen and (max-width: 768px) {
    .info-section {
        margin-top: 50px;
        padding-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
        margin-top: 20px;
    }

    .info-cards {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .card {
        width: 100% !important;
        height: auto !important;
        min-height: 400px;
        padding: 15px;
        flex-direction: column;
        align-items: center;
    }

    .card img,
    .card video {
        width: 100% !important;
        height: 200px !important;
        margin-top: 0 !important;
        object-fit: contain;
        order: 1; /* Slika/video ide prva */
    }

    .card h1 {
        position: static !important;
        font-size: 20px !important;
        color: #fff !important;
        margin: 15px 0 10px 0 !important;
        text-align: center;
        order: 2; /* Naslov ide drugi */
        width: 100%;
    }

    .card p {
        position: static !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: rgb(173, 173, 173) !important;
        margin: 0 0 20px 0 !important;
        text-align: center;
        max-width: 100% !important;
        order: 3; /* Tekst ide treći */
        padding: 0 10px;
    }

    .card button {
        position: static !important;
        margin: 20px auto !important;
        order: 4; /* Dugme ide četvrto */
        width: 90%;
        max-width: 200px;
    }

    /* Posebni stilovi za specifične kartice */
    .card:nth-child(3),
    .card:nth-child(4) {
        grid-column: unset !important;
        grid-row: unset !important;
        height: auto !important;
    }

    .card:nth-child(3) h1,
    .card:nth-child(4) h1 {
        position: static !important;
        margin-bottom: 10px !important;
    }

    .card:nth-child(3) p,
    .card:nth-child(4) p {
        position: static !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 1200px) {
    .info-section {
        margin-top: 80px;
        padding-bottom: 40px;
    }

    .section-title {
        font-size: 40px;
        margin-top: 25px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 20px;
    }

    .card {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        height: auto !important;
        padding: 20px;
    }

    .card img,
    .card video {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover;
        margin-bottom: 20px;
        order: 1;
    }

    .card h1 {
        position: static !important;
        font-size: 24px !important;
        color: #fff !important;
        margin: 0 0 15px 0 !important;
        text-align: center;
        order: 2;
        width: 100%;
    }

    .card p {
        position: static !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: rgb(173, 173, 173) !important;
        margin: 0 0 25px 0 !important;
        text-align: center;
        max-width: 100% !important;
        order: 3;
        padding: 0 10px;
    }

    .card button {
        position: static !important;
        margin: 0 auto !important;
        order: 4;
        width: 200px;
    }

    /* Posebni stilovi za specifične kartice */
    .card:nth-child(3),
    .card:nth-child(4) {
        grid-column: span 2 !important;
        height: auto !important;
    }

    .card:nth-child(3) img,
    .card:nth-child(3) video {
        height: 300px !important;
    }

    .card:nth-child(4) img {
        height: 300px !important;
    }
}

/* 1400px Responsive */
@media (max-width: 1400px) {
    .section__container.store__container {
        padding-top: 3.5rem;
    }
    
    .store__container h2 {
        font-size: 70px;
    }
    
    .store__container p {
        font-size: 1.1rem;
        padding: 0 10%;
    }
    
    .swiper-slide {
        max-width: 350px;
    }
    
    .store__card img {
        max-width: 350px;
    }
}

/* 1200px Responsive */
@media (max-width: 1200px) {
    .section__container.store__container {
        padding-top: 3rem;
    }
    
    .store__container h2 {
        font-size: 60px;
    }
    
    .store__container p {
        margin-bottom: 3rem;
        padding: 0 8%;
    }
    
    .store__card h4 {
        font-size: 1.3rem;
    }
    
    .store__card h3 {
        font-size: 1.1rem;
    }
}

/* 1000px Responsive */
@media (max-width: 1000px) {
    .section__container.store__container {
        padding-top: 2.5rem;
    }
    
    .store__container h2 {
        font-size: 50px;
    }
    
    .store__container p {
        font-size: 1rem;
        padding: 0 5%;
        margin-bottom: 2.5rem;
    }
    
    .swiper-slide {
        max-width: 300px;
    }
    
    .store__card img {
        max-width: 300px;
        margin-bottom: 3rem;
    }
    
    .store__card h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .store__card h3 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .swiper {
        padding-bottom: 4rem;
    }
}

/* 500px Responsive */
@media (max-width: 500px) {
    .section__container.store__container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .store__container h2 {
        font-size: 36px;
    }
    
    .store__container p {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .swiper-slide {
        max-width: 280px;
    }
    
    .store__card img {
        max-width: 280px;
        margin-bottom: 2rem;
    }
    
    .store__card h4 {
        font-size: 1.1rem;
    }
    
    .store__card h3 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .swiper {
        padding-bottom: 3rem;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}


/* ===== RESPONSIVE STILOVI ZA 1920x1080 REZOLUCIJU ===== */

@media screen and (min-width: 1920px) {
    
    /* === NAVIGACIJA === */
    .menu {
        width: 1200px; /* Povećana širina za veći ekran */
    }
    
    .menu ul li a.menu-item {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .search-form {
        width: 800px; /* Veća forma za pretragu */
    }
    
    /* === HERO SEKCIJA === */
    .hero-info h1 {
        font-size: 3rem; /* Veći naslov */
        margin-bottom: 20px;
    }
    
    .hero-logo {
        width: 600px; /* Veći logo */
        max-width: 70%;
    }
    
    .white-content-text {
        font-size: 1.5rem;
        max-width: 800px;
        margin: 0 auto 20px;
    }
    
    .white-content-btn {
        padding: 12px 35px;
        font-size: 1.1rem;
    }
    
    .next-btn {
        width: 160px;
        height: 160px;
        font-size: 35px;
    }
    
    /* === O NAMA SEKCIJA === */
    .About.section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .about_title {
        padding: 3rem 5rem;
    }
    
    .about_title h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .about_title h2 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    #text {
        font-size: 1.2rem;
        line-height: 1.8;
        padding-left: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .about_Wrap h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about_Wrap p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .btn1 {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    /* === SHOWCASE IMAGE SEKCIJA === */
    .image-container {
        height: 90vh; /* Veća visina */
    }
    
    .image-overlay {
        padding-left: 5%;
    }
    
    .image-overlay h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .image-overlay h1 {
        font-size: 3.5rem;
        margin-bottom: 30px;
        max-width: 700px;
    }
    
    .image-overlay p {
        font-size: 1.4rem;
        max-width: 600px;
        margin-bottom: 40px;
    }
    
    .image-link {
        font-size: 1.2rem;
    }
    
    /* === INFO KARTICE === */
    .info-section {
        margin-top: 120px;
        padding-bottom: 80px;
    }
    
    .section-title {
        font-size: 60px;
        margin-top: 50px;
    }
    
    .info-cards {
        gap: 30px;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .card {
        height: 45vh;
        border-radius: 25px;
    }
    
    .card h1 {
        font-size: 28px;
        bottom: 35%;
    }
    
    .card p {
        font-size: 15px;
        line-height: 22px;
        max-width: 400px;
        bottom: 18%;
    }
    
    .card button {
        padding: 18px 20px;
        font-size: 1rem;
        bottom: 8%;
    }
    
    /* === SERVICES SEKCIJA === */
    .Service.section {
        padding: 100px 40px;
    }
    
    .Service.section h5 {
        font-size: 90px;
        margin: 120px 0 0 120px;
    }
    
    .Service.section h1 {
        font-size: 45px;
        margin: 30px 0 80px 120px;
    }
    
    .container {
        max-width: 2000px;
        gap: 80px;
        padding: 60px 40px;
    }
    
    .box {
        width: 600px;
        height: 500px;
        padding: 50px;
        border-radius: 30px;
    }
    
    .box i:first-child {
        font-size: 50px;
        margin-bottom: 30px;
    }
    
    .box h2 {
        font-size: 22px;
        margin: 30px 0;
    }
    
    .box p {
        font-size: 18px;
        line-height: 1.8;
        margin: 30px 0;
    }
    
    .box .fa-circle-right {
        font-size: 35px;
        bottom: 50px;
        right: 50px;
    }
    
    /* === PRODUCTS SEKCIJA === */
    .section__container.store__container {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
    
    .store__container h2 {
        font-size: 90px;
        margin-bottom: 1rem;
    }
    
    .store__container p {
        font-size: 1.3rem;
        margin-bottom: 5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .swiper-slide {
        max-width: 450px;
    }
    
    .store__card img {
        max-width: 450px;
        margin-bottom: 3rem;
    }
    
    .store__card h4 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .store__card h3 {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
    
    /* === PROJEKTI SEKCIJA === */
    .New_project_title {
        padding: 120px 10%;
    }
    
    .New_project_portfolio .Project_heading h2 {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .New_project_portfolio .Project_heading h1 {
        font-size: 2.5rem;
    }
    
    .portfolio_box {
        padding: 40px;
    }
    
    .portfolio_box h3 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .portfolio_box p {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    
    /* === TESTIMONIALS SEKCIJA === */
    .Testimonials {
        padding: 80px 40px;
    }
    
    .Testimonials_title {
        padding-inline: 50px;
    }
    
    .Testimonials_title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        padding-top: 30px;
    }
    
    .Testimonials_title h1 {
        font-size: 36px;
        padding-top: 15px;
    }
    
    .client {
        gap: 80px;
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .client_page img {
        width: 100px;
        height: 100px;
    }
    
    .client_Details {
        width: 65%;
        padding: 50px 60px;
    }
    
    .client_Details p {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.8;
    }
    
    .client_Details h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .client_Details span {
        font-size: 20px;
    }
    
    /* === BANNER SEKCIJA === */
    .Banner {
        height: 600px;
        margin-bottom: 100px;
    }
    
    .Banner_title h1 {
        font-size: 3rem;
        padding: 0 60px;
    }
    
    .Banner_title button {
        height: 120px;
        width: 120px;
    }
    
    .Banner_title button i {
        font-size: 50px;
    }
    
    .Counter_Wrap {
        width: 75%;
        max-width: 1400px;
        padding: 50px;
        bottom: -80px;
        gap: 50px;
        border-radius: 12px;
    }
    
    .Counter h1 {
        font-size: 2.5rem;
    }
    
    .Counter span {
        font-size: 16px;
        line-height: 25px;
    }
    
    /* === BLOG SEKCIJA === */
    .blog {
        padding-top: 140px;
        padding-bottom: 100px;
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .blog_title {
        padding-left: 2%;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .blog_heading h1 {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .blog_heading h2 {
        font-size: 1.8rem;
    }
    
    .Blog_Wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 40px;
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .Blog_Card {
        border-radius: 12px;
    }
    
    .Blog_Details {
        padding: 60px 40px;
    }
    
    .Category_and_Author {
        gap: 30px;
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    .Blog_Details h2 {
        font-size: 1.6rem;
        line-height: 2.2rem;
        margin-bottom: 20px;
    }
    
    .bnt1 {
        padding: 15px 40px;
        font-size: 1.1rem;
        margin-right: 60px;
        border-radius: 35px;
    }
    
    /* === FOOTER === */
    .footer {
        padding: 90px 0;
    }
    
    .container1 {
        max-width: 1400px;
    }
    
    .footer-col {
        padding: 0 25px;
    }
    
    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .footer-col ul li a {
        font-size: 17px;
    }
    
    .footer-col .social-links a {
        height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 18px;
    }
    
    .newsletter input {
        padding: 12px;
        font-size: 16px;
    }
    
    .newsletter button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .bottom {
        padding-top: 30px;
        margin-top: 30px;
    }
    
    .bottom p {
        font-size: 16px;
        margin: 8px 0;
    }
    
    /* === SCROLLBAR ZA VEĆE EKRANE === */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 4px solid var(--subset-orange);
    }
    
    /* === DODATNE OPTIMIZACIJE === */
    
    /* Poboljšanje tipografije */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Povećanje maksimalnih širina kontejnera */
    .menu, 
    .about_title, 
    .Service.section .container {
        transition: all 0.3s ease;
    }
    
    /* Poboljšanje hover efekata */
    .card:hover,
    .box:hover,
    .Blog_Card:hover {
        transform: translateY(-8px);
    }
    
    /* Optimizacija razmaka između sekcija */
    section {
        margin-bottom: 50px;
    }
    
    /* Poboljšanje animacija */
    .hero-info,
    .about_title,
    .image-overlay {
        animation-duration: 0.8s;
    }
}

/* === DODATNI STILOVI ZA ULTRA-WIDE MONITORE (2560px+) === */
@media screen and (min-width: 2560px) {
    .menu {
        width: 1400px;
    }
    
    .container,
    .Blog_Wrap,
    .info-cards {
        max-width: 2200px;
    }
    
    .hero-logo {
        width: 700px;
    }
    
    .section-title {
        font-size: 70px;
    }
    
    .Service.section h5 {
        font-size: 100px;
    }
    
    .store__container h2 {
        font-size: 100px;
    }
}

/* ===== POPRAVKA ZA LAPTOP REZOLUCIJE (1366x768, 1440x900, 1536x864, 1600x900) ===== */

/* 1600px i manje - većina laptop ekrana */
@media screen and (max-width: 1600px) and (min-width: 1200px) {
    .info-section {
        margin-top: 80px;
        padding-bottom: 40px;
    }
    
    .section-title {
        font-size: 42px;
        margin-top: 25px;
    }
    
    .info-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .card {
        width: 100% !important;
        height: auto !important;
        min-height: 420px; /* Povećana minimalna visina */
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background-color: var(--charcoal-black);
        border: 1px solid rgb(248, 246, 240);
        transition: 0.3s;
    }
    
    /* Optimizacija slike za laptop */
    .card img {
        width: 85% !important;
        height: 180px !important; /* Fiksirana visina */
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        margin: 0 0 15px 0 !important;
        order: 1;
        display: block;
    }
    
    /* Naslov kartice */
    .card h1 {
        position: static !important;
        font-size: 20px !important;
        color: #fff !important;
        margin: 0 0 12px 0 !important;
        text-align: center;
        order: 2;
        width: 90%;
        line-height: 1.3;
        font-weight: 600;
    }
    
    /* Tekst kartice */
    .card p {
        position: static !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: rgb(173, 173, 173) !important;
        margin: 0 0 20px 0 !important;
        text-align: center;
        order: 3;
        width: 90%;
        max-width: 100% !important;
    }
    
    /* Dugme kartice */
    .card button {
        position: static !important;
        margin: auto 0 0 0 !important; /* Push to bottom */
        order: 4;
        padding: 12px 20px;
        border-radius: 10px;
        border: 1px solid var(--neutral-p);
        background-color: var(--forest-green);
        box-shadow: 0 0 5px var(--subset-orange);
        color: rgb(233, 220, 220);
        cursor: pointer;
        transition: 0.3s;
        font-size: 13px;
        width: 180px;
        align-self: center;
    }
    
    .card button:hover {
        box-shadow: 0 0 15px var(--subset-orange);
        opacity: 0.7;
    }
    
    /* Hover efekat za karticu */
    .card:hover {
        box-shadow: 0 0 15px var(--subset-orange);
        transform: translateY(-3px);
    }
    
    /* Specifični stilovi za treću karticu (veća) */
    .card:nth-child(3) {
        grid-row: span 2 !important;
        min-height: 500px !important;
        height: auto !important;
    }
    
    .card:nth-child(3) img {
        height: 220px !important; /* Veća slika za veću karticu */
        width: 85% !important;
    }
    
    .card:nth-child(3) h1 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
    
    .card:nth-child(3) p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
        max-width: 85% !important;
    }
    
    .card:nth-child(3) button {
        width: 200px;
        padding: 15px 25px;
        font-size: 14px;
    }
    
    /* Specifični stilovi za četvrtu karticu (široka) */
    .card:nth-child(4) {
        grid-column: span 2 !important;
        min-height: 420px !important;
    }
    
    .card:nth-child(4) img {
        width: 75% !important;
        height: 180px !important;
    }
    
    .card:nth-child(4) h1 {
        font-size: 21px !important;
    }
    
    .card:nth-child(4) p {
        max-width: 75% !important;
        font-size: 13px !important;
    }
    
    /* Video optimizacija */
    .card video {
        width: 85% !important;
        height: 180px !important;
        object-fit: cover;
        border-radius: 10px;
        margin: 0 0 15px 0 !important;
        order: 1;
    }
}

/* 1440px - česta laptop rezolucija */
@media screen and (max-width: 1440px) and (min-width: 1200px) {
    .card {
        min-height: 400px;
        padding: 18px;
    }
    
    .card img {
        height: 170px !important;
        width: 90% !important;
    }
    
    .card h1 {
        font-size: 19px !important;
    }
    
    .card p {
        font-size: 12px !important;
        width: 95%;
    }
    
    .card:nth-child(3) {
        min-height: 480px !important;
    }
    
    .card:nth-child(3) img {
        height: 200px !important;
    }
}

/* 1366px - najčešća laptop rezolucija */
@media screen and (max-width: 1366px) and (min-width: 1200px) {
    .info-cards {
        gap: 15px;
        padding: 0 20px;
    }
    
    .card {
        min-height: 380px;
        padding: 15px;
    }
    
    .card img {
        height: 160px !important;
        width: 90% !important;
    }
    
    .card h1 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .card p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        width: 95%;
    }
    
    .card button {
        width: 160px;
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .card:nth-child(3) {
        min-height: 460px !important;
    }
    
    .card:nth-child(3) img {
        height: 190px !important;
    }
    
    .card:nth-child(3) h1 {
        font-size: 20px !important;
    }
    
    .card:nth-child(3) p {
        font-size: 13px !important;
    }
}

/* Specifična optimizacija za ASUS TUF A15 i slične 15.6" laptopove */
@media screen and (max-width: 1536px) and (min-width: 1366px) {
    .card {
        min-height: 390px;
    }
    
    .card img {
        height: 165px !important;
    }
    
    .section-title {
        font-size: 40px;
    }
}

/* Dodatna optimizacija za manje laptop ekrane */
@media screen and (max-width: 1280px) and (min-width: 1200px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .card:nth-child(3) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 400px !important;
    }
    
    .card:nth-child(4) {
        grid-column: span 2 !important;
    }
    
    .card {
        min-height: 400px;
    }
    
    .card img {
        height: 170px !important;
        width: 85% !important;
    }
}