/* Custom Styles for Your PTC Website */

body {
    background-color: #f4f7f6; /* Website ka background thora sa grey ho jayega */
}

/* Change the main color of the site */
.btn-primary, .card-header, .bg-primary {
    background-color: #0056b3 !important; /* Bootstrap ke blue ko apne custom blue se replace karein */
    border-color: #0056b3 !important;
}

/* Add a hover effect to cards */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}