﻿:root {
    --accent-color: #2dabdd !important; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
}

#constructions .btn-get-started, #projects .btn-get-started {
    color: black;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

    #constructions .btn-get-started:hover, #projects .btn-get-started:hover {
        background: var(--accent-color);
    }
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

.header .logo img {
    max-height: 52px !important;
}

.footer .footer-about .logo img {
    max-height: 100px !important;
    margin-right: 6px;
}