.nav-link {
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    color: #7D1F1D;
}

.service-card {
    background-color: #7D1F1D;
    padding: 2rem;
    border-radius: 0.75rem;
    color: white;
    transform: translateY(0);
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-container {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 9999px;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

/* Decorative circles */
.circle-decoration {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.1;
    background: radial-gradient(circle, #DAA520 0%, transparent 70%);
}

/* Hover effect for service cards */
.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #7D1F1D, #6a1a18);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Responsive image containers */
.circular-image {
    border-radius: 9999px;
    overflow: hidden;
    border: 8px solid #DAA520;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
} 