/* ===== Custom Global CSS ===== */

/* Text Colors */
.text-primary-custom {
    color: #ff6600; /* Bootstrap Primary */
    text-transform: uppercase !important;
}

.text-secondary-custom {
    color: #ff6600; /* Bootstrap Primary */
    text-transform: uppercase !important;
}

.text-danger-custom {
    color: #dc3545 !important;
}

/* Background Colors */
.bg-primary-custom {
    background-color: #ff6600;
    color: #ffffff !important;
}

.bg-dark-custom {
    background-color: #212529 !important;
    color: #fff !important;
}

/* Custom Heading */
.heading-custom {
    font-size: 28px;
    font-weight: bold;
    color: #198754; /* Bootstrap Success */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom Button */
.btn-custom {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-custom:hover {
    background: linear-gradient(45deg, #6610f2, #0d6efd);
}
