body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #343a40 !important;
}

.hero {
    background: linear-gradient(to right, #007bff, #6c757d);
    color: white;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #007bff;
}

.intro {
    background-color: white;
    text-align: center;
}

.portfolio-gallery .portfolio-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.portfolio-gallery .portfolio-item:hover {
    transform: scale(1.05);
}

.service-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.service-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

footer {
    background-color: #343a40;
}

footer a {
    text-decoration: none;
}

footer button {
    border: none;
    background: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
