.trusted-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(251, 165, 4);
    background: transparent;
}

.corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #8917A5;
    animation: blink-corner 1.5s infinite;
}

.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

@keyframes blink-corner {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-heading {
    font-size: 50px;

}

.service-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    /* Make icon white */
    filter: brightness(0) invert(1);
}


.service-item .service-name {
    color: #FFFFFF !important;

}

.service-item .service-title {
    color: #FFFFFF !important;
}

.portfolio-item .project-card {
    box-shadow: 0 4px 15px rgba(94, 23, 168, 0.4);
}

.portfolio-item .project-card:hover {
    box-shadow: 0 4px 15px rgba(44, 2, 89, 0.4);

}

.portfolio-item .project-img {
    height: 200px
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #300D5E, #5E17A8, #8917A5);

}

.project-card .badge {
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Optional: Add a slight zoom effect on hover */
.project-card:hover .project-img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}



/* Footer Redesign */
.footer {
    color: #ffffff;
}

.footer .section-title {
    color: #ffffff;
}

.footer a {
    color: #ffffff;
    transition: 0.3s;
}

.footer a:hover {
    color: #fb8c00;
    /* Orange accent */
}

.contact-info-list p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info-list p i {
    width: 25px;
}

.contact-info-list p b {
    margin-right: 10px;
    font-weight: 700;
}

.contact-qr-box {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.contact-qr-box h4 {
    color: #fba504;
    /* Orange color from image */
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.5rem;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qr-item {
    text-align: center;
}

.qr-image-wrapper {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: inline-block;
    max-width: 100%;
}

.qr-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.qr-label {
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-bottom {
    border-top: 1px solid #8917A5;
    padding-top: 25px;
    margin-top: 50px;
}

.social-icons-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.social-icons-bottom a {
    font-size: 1.3rem;
    color: #ffffff;
}

.social-icons-bottom a:hover {
    color: #fba504;
}
@media (max-width: 1200px) {
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar {
        position: fixed !important;
        background: #FFFFFF !important;
        width: 100% !important;
        z-index: 999 !important;
    }

}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .contact-info-list p {
        justify-content: center;
    }

    .social-icons-bottom {
        justify-content: center;
        margin-top: 20px;
    }
}


@media (max-width: 576px) {
    .hero-heading {
        font-size: 40px;

    }
     .qr-grid {
        /* grid-template-columns: 1fr; */
    }


}



