* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    color: #fff;
    background-size: cover;
    background-color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.backing {
    width: 100%;
    height: 100vh;
    position: fixed;
    --gradient-color-1: #131313;
    --gradient-color-2: #101010;
    --gradient-color-3: #009472;
    --gradient-color-4: #000000;
    z-index: -1;
}
.border {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.blur-xl {
    backdrop-filter: blur(50px);
}
.blur {
    backdrop-filter: blur(24px);
}
.blur-sm {
    backdrop-filter: blur(20px);
}
.round-sm {
    border-radius: 5px;
}
.round-md {
    border-radius: 10px;
}
.round-lg {
    border-radius: 12px;
}
.round-xl {
    border-radius: 40px;
}
.flex {
    display: flex;
}
.nav {
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.nav-logo {
    font-size: 1.5em;
    font-weight: bold;
}
.nav-links {
    gap: 30px;
    padding: 10px;
    padding-left: 13px;
    padding-right: 13px;
}
.nav-links button {
    color: #fff;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.text-center {
    text-align: center;
}
.title-lg {
    font-size: 3em;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 5px;
}
.group {
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 50px;
}
.link-bg {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    height: 70px;
    width: 70px;
    align-items: center;
    justify-content: center;
}
.link-img {
    width: 40px;
    height: 40px;
}
.products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 20px;
    margin-bottom: 50px;
    justify-content: center;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.products2 {
    display: grid;
    gap: 20px;
    padding: 20px;
    margin-bottom: 50px;
    justify-content: center;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 100%;
    transition: transform 0.3s;
}

.mw-60 {
    max-width: 60dvh;
}
.grid-boxie {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px; /* Space between buttons */
}
.card2 {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 100dvh;
    width: 100%;
    transition: transform 0.3s;
    max-height: 10dvh;
}

.card-top {
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.card-img {
    width: 50px;
    height: 50px;
}
.card-title {
    font-size: 2em;
    font-weight: bold;
}
.card-desc {
    text-align: center;
    color: rgba(255, 255, 255, 0.8) 
}
.card-btm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    text-align: center;
}
.card-btn {
    background-color: #01ffc4;
    border: none;
    color: #0f0f0f;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    flex: 1;
    max-width: 47%;
    text-align: center;
}
.products-card:hover {
    transform: scale(1.05);
}
img {
    filter: brightness(0) 
 /* Convert to black */
    invert(1);
 /* Invert to white */
}
@media (max-width: 850px) {
    .title-lg {
            font-size: 1.2;
 }
    .products {
            grid-template-columns: repeat(1, minmax(0, 1fr));
 }
}
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notification {
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn 0.5s forwards;
}
@keyframes slideIn {
    to {
            opacity: 1;
            transform: translateY(0);
 }
}
.notification.success {
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(76, 175, 80, 0.4);
}
.notification.error {
    border-color: rgba(244, 67, 54, 0.4);
    background: rgba(244, 67, 54, 0.4);
}
.notification.warning {
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(255, 193, 7, 0.3);
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    color: white;
    max-height: 80vh;
    max-width: 80vw;
    width: 400px;
}

.popup.active {
    display: block;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.popup h2 {
    text-align: center;
    margin-bottom: 20px;
}
.popup input, .popup select {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}
.popup button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #01ffc4;
    color: black;
    font-weight: bold;
    cursor: pointer;
}
/* .popup button:hover {
    background-color: #01ffc4;
    color: #0f0f0f;
} */
option {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.text-content {
    text-align: left;
    font-size: 12px;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    overflow-y: scroll;    
}

.text-content ul {
    list-style-type: none; 
    padding-left: 0;
    margin-left: 0;
}

.text-content ul li {
    position: relative;
    padding-left: 14px; 
    margin-bottom: 4px;
}