.header-logo img {
    background: transparent !important;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    background: transparent !important;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.mobile-logo img {
    background: transparent !important;
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-item h4 {
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.brand-item h4:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.vs-carousel {
    margin-top: 20px;
}

.contact-form .form-control::placeholder {
    color: white !important;
    opacity: 1;
}

.contact-form .form-control::-webkit-input-placeholder {
    color: white !important;
}

.contact-form .form-control::-moz-placeholder {
    color: white !important;
    opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
    color: white !important;
}

.service-icon img {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}