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

.hero {
    background: linear-gradient(to right, #007bff, #0056b3);
}

.navbar-brand {
    font-weight: bold;
}

.icon {
    transition: color 0.3s, transform 0.3s;
}

.icon:hover {
    color: #ff6347;
    /* Tomato color */
    transform: scale(1.2);
}

.service-box:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s;
}

/* Custom Styling */
.pricing-card {
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card .card-header {
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-custom {
    transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
    opacity: 0.8;
}