/* Public Area Custom Styles */

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.service-icon {
    font-size: 3rem;
}

.service-details {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-success {
    background-color: #65E4A3;
    border-color: #65E4A3;
    color: #000;
    font-weight: 600;
}

.btn-success:hover {
    background-color: #4fd190;
    border-color: #4fd190;
    color: #000;
}

/* Navbar adjustments */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #65E4A3;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #65E4A3;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
}
