/* static/css/style.css */

body {
    font-family: Arial;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('/static/images/hero.jpg');
    background-size: cover;
    background-position: center;
}

/* SERVICES */
.service-card {
    transition: 0.3s;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* CTA */
.cta {
    background: #111;
    padding: 60px;
}

/* NAVBAR */
.navbar {
    transition: 0.3s;
}

.navbar a:hover {
    color: #ffc107 !important;
}


.footer {
    background: #0d0d0d;
}

.footer h5, .footer h4 {
    margin-bottom: 20px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ffc107;
    padding-left: 5px;
}

.social-icon {
    display: inline-block;
    margin-right: 10px;
    background: #222;
    padding: 8px 12px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ffc107;
    color: black;
}

.footer-bottom {
    background: #000;
    border-top: 1px solid #222;
}


