/* Previous CSS from style.css remains unchanged up to the footer section */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: linear-gradient(to bottom, #0a45bc, #041a45);
    font-family: "Hubot Sans";
    color: white;
    text-shadow: 0 0 5vw rgb(0, 0, 0);
}
body::selection {
    color: white;
    background: orange;
}
::-webkit-scrollbar {
    width: 0.6vw;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0a45bc, #041a45);
    border-radius: 1vw;
}
::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #0a45bc, #041a45);
}

/* Hide scrollbar on mobile for all browsers */
@media screen and (max-width: 768px) {
    html, body {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
    }
    ::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
        background: transparent !important;
    }
    ::-webkit-scrollbar-thumb,
    ::-webkit-scrollbar-track {
        display: none !important;
        background: transparent !important;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1vw);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes nav {
    from {
        opacity: 0;
        scale: 0;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
#header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid;
    border-width: 0.3vw;
    border-color: #05328e;
    max-height: 7vw;
}
#logo {
    animation: nav 1s;
    max-width: 4vw;
    margin: 1vw;
}
#navbar a {
    text-decoration: none;
    color: #05328e;
    font-size: 1.6vw;
    font-weight: 800;
    transition-duration: 300ms;
}
#navbar a:hover {
    color: #355fb4;
    transition-duration: 300ms;
    border-bottom: solid;
    border-color: #355fb4;
}
#navbar {
    animation: nav 1s;
    white-space: nowrap;
    margin-right: 4vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3.7vw;
}
#home {
    background-image: url(images/homepage.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}
#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 40, 0.5);
    z-index: 1;
}
#home h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: white;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.7);
    margin: 2vw 5vw;
    animation: fadeIn 1s ease-out forwards;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
#home button {
    position: relative;
    z-index: 2;
    font: inherit;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 1rem 3rem;
    border-radius: 2rem;
    color: white;
    background: linear-gradient(135deg, #0a45bc, #082766);
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(8, 39, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}
#home button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #082766, #0a45bc);
    box-shadow: 0 0.7rem 1.5rem rgba(8, 39, 102, 0.4);
    scale: 1.05;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media screen and (max-width: 767px) {
    #home {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    #home h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin: 1rem 2rem;
    }
    #home button {
        font-size: clamp(0.9rem, 4vw, 1rem);
        padding: 0.8rem 2rem;
        border-radius: 1.5rem;
    }
}
@media screen and (max-width: 360px) {
    #home h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    #home button {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }
}
.onas-section {
    padding: 4rem 1rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    box-sizing: border-box;
}
.onas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.onas-content {
    width: 100%;
    text-align: left;
}
.onas-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    text-align: center;
}
.onas-content h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, #0a45bc, #082766);
    border-radius: 0.125rem;
}
.onas-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
}
.onas-text p {
    margin-bottom: 1rem;
}
.onas-image {
    width: 100%;
    max-width: 600px;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}
#slovenija {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.onas-image:hover #slovenija {
    transform: scale(1.03);
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}
.onas-content,
.onas-image {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.onas-content { animation-delay: 0.1s; }
.onas-image { animation-delay: 0.3s; }
@media screen and (max-width: 768px) {
    .onas-section {
        padding: 2rem 1rem;
    }
    .onas-content h2 {
        font-size: 2rem;
    }
    .onas-text {
        font-size: 0.95rem;
    }
    .onas-image {
        max-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .onas-section {
        padding: 1.5rem 0.5rem;
    }
    .onas-content h2 {
        font-size: 1.75rem;
    }
    .onas-text {
        font-size: 0.9rem;
    }
}
#map {
    display: flex;
    justify-content: center;
    margin-bottom: 5vw;
}
#map iframe {
    width: 80vw;
    height: 40vw;
    filter: grayscale(0.5);
    opacity: 0.8;
}
#kontakt {
    padding: 5rem 2rem;
    margin: 7rem auto;
    margin-top: 1vw;
    max-width: 1300px;
    width: 85%;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border: none;
    box-sizing: border-box;
}
#kontakt::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 40%;
    background: url('icons/logo.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(-10deg);
}
#kontakt h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    color: #fdfdfd;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}
.contact-card {
    background: linear-gradient(145deg, #ffffff, #f5f8ff);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(8, 39, 102, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 39, 102, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(to right, #0a45bc, #082766);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(8, 39, 102, 0.15);
}
.contact-card:hover::before {
    transform: scaleX(1);
}
.contact-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0.2rem 0.4rem rgba(8, 39, 102, 0.2));
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #0a45bc, #082766);
    padding: 1rem;
    border-radius: 50%;
}
.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0.3rem 0.6rem rgba(8, 39, 102, 0.3));
}
.contact-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #05328e;
    position: relative;
    padding-bottom: 0.75rem;
}
.contact-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 0.2rem;
    background: linear-gradient(to right, #0a45bc, #082766);
    border-radius: 0.1rem;
}
.contact-info {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.contact-info li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #05328e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.contact-info li:hover {
    transform: translateX(5px);
}
.contact-info a {
    color: #05328e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.contact-info a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0a45bc, #082766);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.contact-info a:hover {
    color: #0a45bc;
}
.contact-info a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.contact-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #0a45bc, #082766);
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.3rem 0.8rem rgba(8, 39, 102, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(8, 39, 102, 0.3);
    background: linear-gradient(135deg, #082766, #0a45bc);
}
.contact-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.3s; }
.contact-card:nth-child(3) { animation-delay: 0.5s; }
@media screen and (max-width: 992px) {
    #kontakt {
        width: 90%;
        padding: 3rem 1rem;
        margin: 3rem auto;
        border-radius: 1rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    #kontakt h2 {
        font-size: 2.5rem;
    }
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}
@media screen and (max-width: 768px) {
    #kontakt::before,
    #kontakt::after {
        display: none !important;
    }
}
@media screen and (max-width: 480px) {
    #kontakt {
        width: 85%;
        padding: 1.5rem 0.6rem;
        margin: 1.5rem auto;
        border-radius: 0.6rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    #kontakt h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .contact-card {
        padding: 1rem;
    }
    .contact-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    .contact-title {
        font-size: 1.2rem;
    }
    .contact-info li {
        font-size: 0.95rem;
    }
    .contact-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 360px) {
    #kontakt {
        width: 90%;
        padding: 1.2rem 0.5rem;
        margin: 1rem auto;
        border-radius: 0.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    #kontakt h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    .contact-card {
        padding: 0.8rem;
    }
    .contact-info li {
        font-size: 0.9rem;
    }
    .contact-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}
.gallery {
    margin-bottom: 5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery img {
    width: 20vw;
    height: auto;
    object-fit: cover;
    margin: 3vw;
    border-radius: 1vw;
    transition-duration: 200ms;
    border: double;
    border-color: #082766;
    border-width: 0.5vw;
}
.gallery img:hover {
    transform: scale(1.2);
    transition-duration: 200ms;
}
.slike {
    padding-top: 10vw;
}
.parallax {
    background-image: url(images/paralax.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 5vw 0;
    overflow: hidden;
    box-sizing: border-box;
}
.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 40, 0.5);
    z-index: 1;
}
.statistike {
    display: flex;
    justify-content: space-around;
    margin-top: 15vw;
    margin-bottom: 15vw;
    margin-inline: 7vw;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.statistika {
    flex: 1;
    padding: 2vw;
    transition: transform 0.3s ease;
}
.statistika:hover {
    transform: scale(1.05);
}
.statistika h5 {
    font-size: 5vw;
    margin: 0;
    color: white;
    text-shadow: 0 0 3vw rgb(255, 255, 255);
    transition: text-shadow 2s ease;
}
.statistika h5:hover {
    text-shadow: 0 0 5vw rgb(255, 255, 255);
}
.statistika p {
    font-size: 2vw;
    margin: 0.5vw 0 0;
    color: white;
    text-shadow: 0 0 0vw #FFFFFF;
    transition: text-shadow 1s ease;
}
.statistika p:hover {
    text-shadow: 0 0 0.3vw #FFFFFF;
}
@media screen and (max-width: 767px) {
    .parallax {
        background-image: url(images/paralax.jpg);
        background-attachment: scroll;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 2rem 0;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .parallax::before {
        background: rgba(0, 0, 40, 0.5);
    }
    .statistike {
        flex-direction: column;
        align-items: center;
        margin-top: 5rem;
        margin-bottom: 5rem;
        margin-inline: 1rem;
        gap: 2rem;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .statistika {
        width: 90%;
        padding: 1.5rem;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .statistika:hover,
    .statistika:active {
        transform: scale(1.03);
        box-shadow: 0 0.7rem 1.5rem rgba(4, 26, 69, 0.3);
    }
    .statistika:nth-child(1) { animation-delay: 0.1s; }
    .statistika:nth-child(2) { animation-delay: 0.3s; }
    .statistika:nth-child(3) { animation-delay: 0.5s; }
    .statistika h5 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        text-shadow: 0 0 0.5rem rgb(255, 255, 255);
        transition: text-shadow 0.5s ease;
    }
    .statistika h5:hover,
    .statistika h5:active {
        text-shadow: 0 0 0.8rem rgb(255, 255, 255);
    }
    .statistika p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        text-shadow: 0 0 0rem #FFFFFF;
        transition: text-shadow 0.5s ease;
    }
    .statistika p:hover,
    .statistika p:active {
        text-shadow: 0 0 0.2rem #FFFFFF;
    }
}
#uprava {
    padding: 4rem 1rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    box-sizing: border-box;
}
#uprava h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
#uprava h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, #0a45bc, #082766);
    border-radius: 0.125rem;
}
.uprava-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.ceo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(240, 245, 255, 0.92));
    border: 1px solid rgba(10, 69, 188, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 340px;
    text-align: center;
    box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.7s ease forwards;
    opacity: 0;
}
.ceo-card:nth-child(1) { animation-delay: 0.2s; }
.ceo-card:nth-child(2) { animation-delay: 0.4s; }
.ceo-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
}
.ceo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background: linear-gradient(to right, #0a45bc, #082766);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.ceo-card:hover::before {
    transform: scaleX(1);
}
.ceo-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 0.5rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
}
.ceo-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.4);
}
.ceo-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #041a45;
    margin: 0.5rem 0;
    text-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.2);
}
.ceo-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #082766;
    margin: 0.4rem 0;
}
.ceo-card p {
    font-size: 1rem;
    color: #041a45;
    margin: 0.6rem 0;
    font-style: italic;
    line-height: 1.4;
}
.ceo-contact {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}
.ceo-contact li {
    font-size: 1.05rem;
    margin: 0.7rem 0;
}
.ceo-contact a {
    color: #0a45bc;
    text-decoration: none;
    padding: 0.4rem 0;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}
.ceo-contact a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.15rem;
    background: linear-gradient(to right, #0a45bc, #082766);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.ceo-contact a:hover,
.ceo-contact a:focus {
    color: #355fb4;
    transform: scale(1.06);
}
.ceo-contact a:hover::after,
.ceo-contact a:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}
@media screen and (max-width: 768px) {
    #uprava {
        padding: 2.5rem 1rem;
    }
    #uprava h2 {
        font-size: 2rem;
    }
    .uprava-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .ceo-card {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem;
    }
    .ceo-card img {
        max-width: 160px;
    }
    .ceo-card h3 {
        font-size: 1.5rem;
    }
    .ceo-card h4 {
        font-size: 1.2rem;
    }
    .ceo-card p {
        font-size: 0.95rem;
    }
    .ceo-contact li {
        font-size: 1rem;
    }
    .ceo-card:hover {
        transform: translateY(-0.3rem);
    }
}
@media screen and (max-width: 480px) {
    #uprava {
        padding: 2rem 0.5rem;
    }
    #uprava h2 {
        font-size: 1.8rem;
    }
    .ceo-card {
        max-width: 280px;
        padding: 1rem;
    }
    .ceo-card img {
        max-width: 140px;
    }
    .ceo-card h3 {
        font-size: 1.4rem;
    }
    .ceo-card h4 {
        font-size: 1.1rem;
    }
    .ceo-contact li {
        font-size: 0.95rem;
    }
}
#avtocesta {
    background-image: url(images/highway.jpg);
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem;
    position: relative;
}
#avtocesta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 40, 0.7);
    z-index: 1;
}
#storitve {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}
#storitve h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}
#storitve h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0a45bc;
    border-radius: 2px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}
.service-content {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}
.service-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-button {
    margin-top: auto;
    background: linear-gradient(135deg, #0a45bc, #082766);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(10, 69, 188, 0.4);
}
.service-button:hover {
    background: linear-gradient(135deg, #082766, #0a45bc);
    box-shadow: 0 6px 20px rgba(10, 69, 188, 0.6);
    transform: translateY(-3px);
}
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
@media screen and (max-width: 767px) {
    #avtocesta {
        padding: 3rem 1rem;
    }
    #storitve h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card {
        max-width: 100%;
    }
    .service-content h3 {
        font-size: 1.3rem;
    }
    .service-content p {
        font-size: 0.95rem;
    }
    .service-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
#voznipark {
    display: block;
    align-items: center;
    justify-content: center;
    margin-inline: 10vw;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
#voznipark h2 {
    font-size: 4vw;
    text-align: center;
}
#voznipark p {
    font-size: clamp(15px, 2vw, 4vw);
    text-align: left;
}
#voznipark li {
    font-size: clamp(15px, 2vw, 4vw);
}
#spodaj {
    color: inherit;
    font: inherit;
    background-color: inherit;
    margin-bottom: 10vw;
}
.container {
    margin: 1vw;
    display: grid;
    grid-template-columns: 40vw 40vw;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.item {
    display: flex;
    align-items: center;
    background-color: #041a45;
    border-radius: 1vw;
    margin: 1vw;
    width: 35vw;
    height: 10vw;
    box-sizing: border-box;
}
.item img {
    width: 4vw;
    margin: 2vw;
}
.item p {
    all: unset;
    font-size: 1.8vw !important;
    padding: 1vw;
}
@media screen and (max-width: 767px) {
    #voznipark {
        margin-inline: 5vw;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    #voznipark h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    #voznipark p {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    #spodi {
        margin-bottom: 5vw;
    }
    .container {
        display: flex;
        flex-direction: column;
        margin: 2vw;
        gap: 2vw;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .item {
        width: 90%;
        height: auto;
        margin: 1vw auto;
        border-radius: 2vw;
        padding: 2vw;
        box-sizing: border-box;
    }
    .item img {
        width: 8vw;
        margin: 2vw;
    }
    .item p {
        font-size: clamp(0.9rem, 4vw, 1rem) !important;
        padding: 2vw;
    }
}
@media screen and (max-width: 767px) {
    #header {
        max-height: none;
        padding: 5px 0;
        flex-direction: column;
    }
    #logo {
        max-width: 40px;
        margin: 5px;
    }
    #navbar {
        margin: 5px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    #navbar a {
        font-size: 14px;
        padding: 3px;
    }
    #navbar p {
        margin: 0;
    }
}

footer {
    padding-bottom: 6vw;
    padding-top: 5vw;
    background-color: #01102d;
    border-top: solid;
    border-color: #0a45bc;
    border-width: 0.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footerlogo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10vw;
}

#footerlogo img {
    width: 7vw;
    padding-bottom: 2vw;
}

#foot {
    display: flex;
    justify-content: space-around;
    gap: 5vw;
}

footer h2 {
    font-size: 1vw;
}

footer a {
    text-decoration: none;
    color: white;
}

#bottom {
    font-size: 1vw;
    background-color: #01102d;
    padding-inline: 2vw;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: #05328e;
    margin-bottom: 0;
    padding-bottom: 0;
}
#lfooter img {
    width: 4vw;
}

/* === MOBILNA PRILAGODITEV === */
@media screen and (max-width: 768px) {
    #footerlogo {
        flex-direction: column;
        gap: 5vw;
    }

    #footerlogo img {
        width: 20vw;
    }

    #foot {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }

    #lfooter, #rfooter {
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: left;
        margin-left: 3vw;
    }

    footer h2 {
        font-size: 4vw;
    }

    #lfooter img {
        width: 8vw;
        margin: 1vw;
    }

    #bottom {
        flex-direction: column;
        font-size: 3vw;
        gap: 2vw;
        text-align: left;
        align-items: center;
        padding-block: 3vw;
    }
}
