   :root {
            --primary: #37517e;
            --primary-light: #5474a9;
            --gold: #f59e0b;
            --light-bg: #f8fbff;
            --white: #ffffff;
            --text: #444444;
            --gray: #6c757d;
        }
        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: var(--light-bg);
            line-height: 1.7;
        }

        .app-download-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .app-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    @media (max-width: 576px) {
        .app-download-buttons {
            flex-direction: column;
            align-items: center;
        }
        .app-btn {
            width: 280px;
            justify-content: center;
        }
    }

        /* Header with Ultra Premium Logo */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .logo {
            display: flex;
            align-items: center;
            font-size: 38px;
            font-weight: 900;
        }
        .logo img {
            width: 60px;
            height: auto;
            margin-right: 12px;
            filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.5));
            animation: shine 3s infinite;
        }
        @keyframes shine {
            0% { filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.5)); }
            50% { filter: drop-shadow(0 6px 25px rgba(245, 158, 11, 0.8)); }
            100% { filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.5)); }
        }
        .logo .text {
            background: linear-gradient(90deg, #2c5282, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 10px rgba(55,81,126,0.2);
        }
        .propel-btn-header {
            padding: 14px 40px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(55,81,126,0.2);
            transition: all 0.3s;
        }
        .propel-btn-header:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }
        .join-toggle {
            display: flex;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #ccc;
        }

        .join-btn {
            flex: 1;
            padding: 14px 0;
            border: none;
            background: #f1f1f1;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            color: #555;
            transition: all 0.3s ease;
        }

        .join-btn:not(:last-child) {
            border-right: 1px solid #ccc;
        }

        .join-btn.active {
            background: var(--primary);
            color: #fff;
        }
        .join-users {
        margin-top: 18px;
    }

    .user-list {
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        background: #fafafa;
    }

    .user-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #e6e6e6;
    }

    .user-row:last-child {
        border-bottom: none;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
        color: #333;
    }

    .user-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
    }

    .user-status {
        color: #28a745;
        font-weight: 600;
        font-size: 14px;
    }

    .user-status i {
        margin-left: 6px;
    }
    .user-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    }

    .user-name {
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

    .user-role {
        font-size: 12px;
        color: #999;              /* lighter font */
        font-weight: 500;
    }

    /* INACTIVE USER STYLES */
    .user-row.inactive {
        background: #f5f5f5;
    }

    .inactive-avatar {
        background: #9ca3af;      /* grey avatar */
    }

    .inactive-status {
        color: #dc3545;           /* red */
    }

    .user-divider {
    position: relative;
    text-align: center;
    margin: 20px 0 16px;
    }

    .user-divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #e5e7eb;   /* light grey line */
    }

    .user-divider span {
        position: relative;
        background: #fff;
        padding: 0 14px;
        font-size: 13px;
        font-weight: 600;
        color: #6b7280;        /* light text */
    }
/* BEAUTIFUL CUSTOM CHECKBOX - FIXED & PROFESSIONAL */
.checkbox-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    padding-left: 0;
    margin-left: 12px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #27ae60;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.3);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #27ae60;
    border-color: #27ae60;
}

.checkbox-container input:disabled ~ .checkmark {
    background-color: #eee;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Active row glow */
.active-user {
    background: linear-gradient(120deg, rgba(39, 174, 96, 0.08) 0%, transparent 100%);
    border-left: 4px solid #27ae60 !important;
    border-radius: 8px;
    margin: 6px 0;
    transition: 0.3s;
}

.active-user:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.15);
}

.user-row {
    padding: 12px 15px;
    border-radius: 8px;
    margin: 8px 0;
    transition: all 0.2s;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
}


        /* Slider */
        .slider { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
        .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
        .slide.active { opacity: 1; }
        .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(55,81,126,0.4), rgba(55,81,126,0.7)); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
        .slide-content { max-width: 900px; padding: 0 20px; }
        .slide-content h1 { font-size: 56px; font-weight: 700; margin-bottom: 25px; }
        .slide-content p { font-size: 22px; margin-bottom: 50px; opacity: 0.95; }
        .slider-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
        .dot { width: 12px; height: 12px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: 0.3s; }
        .dot.active { background: #fff; width: 40px; border-radius: 20px; }

        .section { padding: 120px 60px; text-align: center; }
        .section.alt { background: #fff; }
        .section h2 { font-size: 44px; font-weight: 600; margin-bottom: 70px; color: var(--primary); }
        .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; max-width: 1300px; margin: 0 auto; }
        .card { background: #fff; padding: 50px 35px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); transition: all 0.4s; }
        .card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
        .card i { font-size: 60px; color: var(--primary); margin-bottom: 30px; }
        .card h3 { font-size: 28px; margin-bottom: 20px; color: var(--primary); }

        .cta { background: var(--primary); color: #fff; }
        footer { background: #2c3e50; color: #bdc3c7; text-align: center; padding: 60px 20px; font-size: 15px; }

        /* Propel Modal Styling from your original */
        .propel-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            align-items: center;
            justify-content: center;
        }
        .propel-modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .close-propel {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close-propel:hover { color: #000; }
        .propel-form-group { margin-bottom: 20px; }
        .propel-form-group input { width: 100%; padding: 14px; border: 1px solid #ccc; border-radius: 8px; font-size: 16px; }
        .propel-btn { width: 100%; padding: 14px; background-color: var(--primary); color: white; border: none; border-radius: 8px; cursor: pointer; font-size: 16px; font-weight: 600; }
        .propel-btn:hover { background-color: var(--primary-light); }
        .propel-switch-btn { background: none; border: none; color: var(--primary); cursor: pointer; text-decoration: underline; font-weight: 600; }
        .error-msg, .success-msg { text-align: center; margin: 10px 0; font-weight: bold; display: none; }

        @media (max-width: 992px) {
            .slide-content h1 { font-size: 42px; }
            .section { padding: 80px 30px; }
            header { padding: 20px 30px; }
            .logo { font-size: 32px; }
            .logo img { width: 50px; }
        }