html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
}

.hero-gradient{
background:linear-gradient(
135deg,
#174F93 0%,
#2FA8D1 50%,
#3E9B36 100%
);
}

.section-title{
font-size:2.2rem;
font-weight:700;
color:#174F93;
margin-bottom:20px;
}

.project-card{
transition:.3s;
}

.project-card:hover{
transform:translateY(-10px);
}

.counter{
font-size:3rem;
font-weight:700;
}

.gallery-img{
transition:.4s;
}

.gallery-img:hover{
transform:scale(1.05);
}

footer a:hover{
color:#2FA8D1;
}

site-navbar {
    display:block;
    min-height:80px;
}

site-footer {
    display:block;
    min-height:350px;
}

site-navbar:not(:defined){
    background:#174F93;
}

site-footer:not(:defined){
    background:#0B2F57;
}   

.slide img {
    animation: zoomEffect 8s ease-in-out infinite;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


.logo-card {
    min-width: 220px;
    height: 120px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.logo-card img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.animate-marquee {
    width: max-content;
    animation: marquee 25s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

.overflow_hidden {
    position: relative;
}

.overflow_hidden::before,
.overflow_hidden::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.overflow_hidden::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.overflow_hidden::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}