.btn {
    font-size: 16px !important;
}
.border-y-cyan {
    border-top: 2px solid rgb(71 143 171);
    border-bottom: 2px solid rgb(71 143 171);
}
.border-end-cyan {
    border-right: 1px solid rgb(71 143 171);
}
.bg-glass {
    background: rgb(114 183 205);
    backdrop-filter: blur(10px);
}

.btn-outline-success {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-outline-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}
.box1 {
    border: 0px solid #999999;
    border-radius: 15px;
    background-color: lightgray;
}
.cert-box {
    border-radius: 12px;
}
.border-cyan {
    border: 1px solid var(--cyan);
}

.bg-darker-panel {
    background: #0b1120;
}
.bg-darker-panel {
    background: #0b112066;
}
.outcome-item {
    background: rgb(255, 255, 255);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}
.text-cyan {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}
.text-gray {
    color: var(--text-muted);
}
.text-gray2 {
    color: #333333;
}

@media (max-width: 1200px) {
    .separater {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .separater {
        margin-top: 20px;
    }
}

.link_note {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16pt;
    color: #666666;
}

/* --- PREMIUM MODAL DESIGN --- */
.modal {
    z-index: 999999;
}
/* 1. The Background Overlay (Blur Effect) */
.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(8px);
    /* This makes the background blurry */
    background-color: rgba(15, 23, 42, 0.6);
    /* Dark blue-ish tint */
}

/* 2. The Modal Card (The "Box") */
.modal-content.premium-modal {
    border: none;
    border-radius: 25px;
    /* Super rounded corners */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    /* Bouncy Animation */
}

/* 3. The Animation (The "Surprise") */
@keyframes modalPop {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 4. The Header (Gradient & Shapes) */
.modal-header-fancy {
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: none;
}

/* Decorative circle in header */
.modal-header-fancy::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    /* Creates a curve at bottom */
}

.modal-header-fancy h3 {
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

.modal-header-fancy p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Close Button (Floating) */
.btn-close-white {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.2s;
    filter: invert(1);
    /* Makes the X white */
    z-index: 10;
}

.btn-close-white:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

/* 5. The Inputs (Modern & Clean) */
.input-group-text {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    color: #6c757d;
    padding-left: 0;
}

.form-control-fancy {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding: 15px 10px;
    background: transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.form-control-fancy:focus {
    box-shadow: none;
    border-bottom-color: #0d6efd;
    background: #f8f9fa;
}

/* Label Animation */
.form-floating>label {
    padding-left: 10px;
}

/* 6. The Button (Glow Effect) */
.btn-fancy {
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s;
    width: 100%;
}

.btn-fancy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.4);
    background: linear-gradient(90deg, #0b5ed7, #0aa2c0);
}