/* CTA Button Hover Effect */
.border-first-button a {
    transition: background-color 0.3s ease;
}
.border-first-button a :hover {
    background-color: #ff0000; /* Change to desired color */
}

/* Portfolio Item Hover Effect */


/* Contact Details Hover Effect */


/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo img {
        width: 150px;
        height: auto;
    }
}

/* Logo Entrance Animation */
.logo img {
    animation: logoanim 1s ease;
}
@keyframe logoanim {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}