/* Custom CSS */
/* Add your custom styles here */

/* 
$primary: #4fc3f7; // Light Blue
$secondary: #b3e5fc; // Lighter Blue
*/

.card-title {
    font-weight: 300;
}

.form-control {
    font-weight: 100;
    border-radius: 50px;
}

.btn-default {
    border-radius: 50px;
    padding: 10px;
    background-color: #4fc3f7;
    border: #4fc3f7;
    font-weight: 400;
}

a {
    color: #4fc3f7 !important;
    font-weight: 300;
    text-decoration: underline;
}

/* --- Dashboard & Generic Styles --- */
/* Variables to match SCSS logic approximately */
:root {
    --primary-light-blue: #4fc3f7;
    --card-bg: #e0e5ec;
    --blue-gradient-start: #30cfd0;
    --blue-gradient-end: #330867;
}

body {
    background-color: #f8f9fa;
    /* $body-bg approximation */
    font-family: 'Poppins', sans-serif;
}

.text-gradient {
    background: linear-gradient(to right, #30cfd0 0%, #330867 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Neomorphism / Soft UI Utils --- */
.neomorph {
    background: var(--card-bg);
    box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
    border-radius: 30px;
    border: none;
}

.shadow-soft {
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.1);
}

/* --- Specific Components --- */

/* 1. Credit Card Balance */
.card-credit {
    background: linear-gradient(135deg, var(--blue-gradient-start) 0%, #0072ff 100%);
    color: white;
    border-radius: 25px;
    border: none;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 114, 255, 0.5);
}

.card-credit::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-credit::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* 2. Icon Boxes (Services) */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.bg-light-blue {
    background-color: #e3f2fd;
    color: #1e88e5;
}

.bg-light-orange {
    background-color: #fff3e0;
    color: #fb8c00;
}

.bg-light-purple {
    background-color: #f3e5f5;
    color: #8e24aa;
    font-weight: 500 !important;
}

.bg-light-green {
    background-color: #e8f5e9;
    color: #43a047;
}

.bg-light-red {
    background-color: #ffebee;
    color: #c62828;
}

.icon-box:active {
    transform: scale(0.95);
}

/* 3. Bottom Navigation (Override) */
.navbar.fixed-bottom {
    background: white;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 1rem 0;
    border: none !important;
    z-index: 1050;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar.fixed-bottom .nav-link {
    color: #b0bec5;
}

.navbar.fixed-bottom .nav-link.active-link {
    color: #2979ff !important;
    position: relative;
}

.navbar.fixed-bottom .nav-link.active-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: #2979ff;
    border-radius: 50%;
}

/* 4. List Items */
.list-item-modern {
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.list-item-modern .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Utilities overrides */
.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.text-xs {
    font-size: 0.75rem;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.mt-45 {
    margin-top: 45px;
}

.mb-45 {
    margin-bottom: 20vh;
}

.text-center {
    text-align: center !important;
}

.bg-config-nav {
    background-color: #ffffff;
    box-shadow: 0 20px 40px -10px rgb(225 225 225 / 50%);
    margin-bottom: 15px;
}

.text-right {
    text-align: right !important;
    float: right;
}

.card {
    border: none;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 300;
}

.p-5 {
    padding: 3rem !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.border-0 {
    border: 0 !important;
}

div.mt-auto {
    margin-top: 18vh !important;
}

.mb-3 {
    margin-bottom: 15px;
}

.justify-content-center {
    justify-content: center !important;
}

form .form-control-user {
    border-radius: 10rem !important;
    padding: 1.1rem 1rem;
}

.btn-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 1.1rem 1rem;
    color: rgb(255, 255, 255);
    background-color: rgb(36, 176, 255);
    /* Assuming primary blue */
    border-color: rgb(36, 176, 255);
    line-height: 1.1rem;
}

.w-100 {
    width: 100%;
}

.text-center-flex {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.logo-wifi {
    width: 100px !important;
}

.sidebar .sidebar-brand {
    background: #fff;
}

.bg-blue-lite {
    background-color: #4368d603 !important;
}

.header-box {
    background-color: #05d9ff2e !important;
}

.checkout-process {
    margin: 50px;
    padding: auto;
}

.detial-package {
    margin-top: 30px;
    font-size: 30px;
}

/* Express Payment Button */
.btn-pay-express {
    background-color: #ffffff;
    border: 2px solid #ff6600;
    /* Orange border */
    color: #ff6600 !important;
    font-weight: 700;
    border-radius: 50rem;
    /* Rounded pill */
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pay-express:hover,
.btn-pay-express:active,
.btn-pay-express:focus {
    background-color: #fff3e0;
    /* Light orange background on hover */
    border-color: #e65100;
    color: #e65100 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-pay-express:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.card.shadow-lg {
    border-radius: 20px;
}

.btn-text {
    font-weight: 300;
}

.form-label {
    font-size: 14px;
    font-weight: 100;
    margin-left: 10px;
}

.form-check {
    font-weight: 200;
}