body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar-brand span {
    color: #b30000;
    font-weight: bold;
}

.nav-link.active {
    color: #b30000 !important;
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #b30000 !important;
    background-color: #f8f9fa !important;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f') center/cover no-repeat;
    height: 400px;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Button */
.contact-btn {
    /* margin-top: -30px; */
    margin-top: 50px;
}

.contact-btn .btn {
    padding: 15px 30px;
    font-weight: bold;
}

/* Services */
.services h2 {
    letter-spacing: 5px;
    color: #b30000;
}

.service-box {
    border: 1px solid #ccc;
    padding: 30px;
    background: #f8f8f8;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #b30000;
    color: white;
    padding: 40px 0;
    text-align: center;
}