#content-start {
    background-color:#0A0A0A !important;
    background-repeat: repeat;
    background-size: contain, cover;
    max-width: 1440px;
    background-position: center center;
    margin-left: auto;
    margin-right: auto;
    /*color: white;*/
}


.badger-accordion__trigger {
    color: white !important;
    background-color: black !important;
	}



/*NOVI BLOK USLUGA*/
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ← uvijek točno 4 stupca */
    gap: 2rem;
    padding-top: 185px; /* 175px + malo margine */
}



.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    padding-top: 185px; /* unutarnji prostor da tekst ne ide ispod slike */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* potrebno za apsolutno pozicioniranje ikone */
    overflow: visible;  /* dopušta slici da izlazi izvan kartice */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #38aa34;
}


.service-icon-container {
    position: absolute;
    top: -175px; /* točno pola od 350px - podiže kontejner za polovicu visine slike iznad kartice */
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
}




.service-icon-bg {
    width: 350px;
    height: 350px;
    /*background: #38aa34;*/
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.service-icon {
    width: 350px !important;
    height: 350px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    object-fit: contain;
}

.service-naslov {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #333;
}

.service-description {
    flex: 1 1 auto;
    margin-bottom: 16px;
    min-height: 4em;
    font-size: 0.95rem;
    color: #666;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.cta-secondary {
    background: #38aa34;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: #c20510;
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding-top: 185px;
        gap: 200px; /* ← ključno: gap mora biti veći od polovice slike (175px) */
    }

    .services h2 {
        font-size: 2rem;
    }
    
  
}










