.cont {
    width: 90%;
    margin: 0 auto;
}

.blue-text {
    color: #ffff00;
}


.blue-bg {
    background: #212121;
}

@font-face {
    font-family: rubic;
    src: url(../fonts/Rubik-Medium.ttf);
}

body {
    font-family: 'roboto' sans-serif;
    font-weight: 400;
    background-image: linear-gradient(145deg, #0d0d0d, #1f1f1f, #0a0a0a);
    color: #ffffff;
}


/* preloader */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* preloader end */
/* home page services animation crousel css */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move to half to create a seamless effect */
}

.animate-marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.shine-card {
    position: relative;
}

.shine-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: skewX(-25deg);
}

.shine-card:hover::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* home page services animation crousel css end */
.portfolio-card {
    transition: all 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.15);
}

.portfolio-img {
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.06);
}

.filter-btn {
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #a3a3a3;
    background: transparent;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    border-color: #eab308;
}

.process-card {
    border: 1px solid #262626;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
    border-color: #404040;
    transform: translateY(-2px);
}

.process-card span {
    color: #eab308;
    font-size: 14px;
    font-weight: 600;
}

.process-card h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.process-card p {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.6;
}

.process-card.hide {
    display: none;
}

.footer-link {
    color: #a3a3a3;
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: #ffffff;
}