/*
|--------------------------------------------------------------------------
| SchemeCloud UI Framework v1.0
|--------------------------------------------------------------------------
|
| Author: SchemeCloud
| Version: 1.0.0
|
| Global stylesheet for the entire application.
|
*/

/* ==========================================================================
   CSS RESET
   ========================================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    font-size:15px;
    line-height:1.6;

    background:#f4f6f9;

    color:#334155;

    overflow-x:hidden;

}

/* Remove default styling */

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea,
select{

    font-family:inherit;
    font-size:inherit;

}

button{

    cursor:pointer;
    border:none;

}

table{

    border-collapse:collapse;
    width:100%;

}
/* ==========================================================================
   ROOT VARIABLES
   ========================================================================== */

:root{

    /* Brand */

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --primary-light:#dbeafe;

    /* Status */

    --success:#16a34a;
    --danger:#dc2626;
    --warning:#f59e0b;
    --info:#0284c7;

    /* Backgrounds */

    --background:#f4f6f9;
    --card:#ffffff;

    /* Sidebar */

    --sidebar:#1e293b;
    --sidebar-hover:#334155;
    --sidebar-active:#2563eb;

    /* Text */

    --text:#334155;
    --text-light:#64748b;
    --white:#ffffff;

    /* Borders */

    --border:#e2e8f0;

    /* Radius */

    --radius:10px;
    --radius-sm:6px;
    --radius-lg:16px;

    /* Shadows */

    --shadow-sm:

        0 1px 3px rgba(0,0,0,.08);

    --shadow:

        0 5px 20px rgba(0,0,0,.08);

    --shadow-lg:

        0 15px 35px rgba(0,0,0,.12);

    /* Transition */

    --transition:.25s ease;

}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1{

    font-size:2rem;
    margin-bottom:10px;

}

h2{

    font-size:1.6rem;
    margin-bottom:10px;

}

h3{

    font-size:1.2rem;
    margin-bottom:8px;

}

h4{

    font-size:1rem;

}

p{

    color:var(--text-light);

    margin-bottom:12px;

}

small{

    color:var(--text-light);

}

strong{

    color:var(--text);

}
/* ==========================================================================
   GLOBAL LAYOUT
   ========================================================================== */

.wrapper{

    display:flex;

    min-height:100vh;

}

.main{

    flex:1;

    display:flex;

    flex-direction:column;

}

.content{

    padding:30px;

}

.container{

    width:100%;

    max-width:none;

    padding:0 20px;

    margin:0;

}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.sidebar{

    position:fixed;

    top:0;

    left:0;

    width:260px;

    height:100vh;

    background:linear-gradient(
        180deg,
        #0f172a,
        #1e293b
    );

    display:flex;

    flex-direction:column;

    overflow-y:auto;

    overflow-x:hidden;

    scrollbar-width:thin;

}

.sidebar-header{

    padding:25px;

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.sidebar-header h2{

    color:var(--white);

    font-size:1.5rem;

    margin-bottom:5px;

}

.sidebar-header p{

    color:#cbd5e1;

    font-size:13px;

}

.sidebar-menu{

    padding:20px 0;

}

.sidebar-menu ul{

    margin:0;

    padding:0;

}

.sidebar-menu a{

    display:flex;

    align-items:center;

    padding:14px 22px;

    margin:4px 12px;

    border-radius:10px;

    color:#e2e8f0;

    font-size:15px;

    font-weight:500;

    transition:.25s;

}

.sidebar-menu a:hover{

    background:#334155;

    color:#fff;

    transform:translateX(4px);

}

.sidebar-menu a.active{

    background:linear-gradient(
        90deg,
        var(--primary),
        #3b82f6
    );

    color:#fff;

    font-weight:600;

    box-shadow:0 5px 15px rgba(37,99,235,.35);

}

.sidebar-menu a i{

    width:26px;

    font-size:18px;

    margin-right:12px;

    color:#93c5fd;

}

.logo{

    padding:10px 0 18px;

}

.logo-icon{

    width:58px;

    height:58px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    font-size:28px;

}

.logo-text h2{

    font-size:22px;

    font-weight:700;

}

.logo-text p{

    color:#94a3b8;

    font-size:13px;

    margin-top:3px;

}

.sidebar-user{

    margin:20px;

    padding:18px;

    border-radius:12px;

    background:#1e293b;

}

.avatar{

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.sidebar-user h4{

    color:#fff;

    margin:0;

    font-size:15px;

}

.sidebar-user small{

    color:#94a3b8;

}

.menu-title:not(:first-child){

    margin-top:15px;

    border-top:1px solid rgba(255,255,255,.08);

}


/* ==========================================================================
   TOPBAR
   ========================================================================== */

.topbar{

    height:70px;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 30px;

    box-shadow:var(--shadow-sm);

}

.topbar-left{

    font-size:24px;

    cursor:pointer;

}

.topbar-center{

    flex:1;

    margin:0 40px;

}

.topbar-center input{

    width:100%;

    max-width:450px;

    padding:10px 18px;

    border:1px solid var(--border);

    border-radius:30px;

    outline:none;

    transition:var(--transition);

}

.topbar-center input:focus{

    border-color:var(--primary);

}

.topbar-right{

    display:flex;

    align-items:center;

    gap:20px;

}

/* ==========================================================================
   USER PROFILE
   ========================================================================== */

.notification{

    font-size:22px;

    cursor:pointer;

}

.profile{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--text);

}

.profile small{

    display:block;

    color:var(--text-light);

    font-weight:400;

}



/* ==========================================================================
   CARDS
   ========================================================================== */

.card{

    background:var(--card);

    border-radius:var(--radius);

    padding:25px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.card h2{

    margin-bottom:10px;

}

.card h3{

    color:var(--text-light);

    margin-bottom:10px;

}

.card h1{

    color:var(--primary);

    font-size:2rem;

}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-width:90px;
    height:38px;

    padding:0 16px;

    border:none;
    border-radius:8px;

    background:#2563eb;
    color:#fff;

    text-decoration:none;

    font-size:13px;
    font-weight:600;
    line-height:1;

    cursor:pointer;

    white-space:nowrap;

    transition:all .25s ease;

    box-shadow:0 2px 8px rgba(37,99,235,.15);

    appearance:none;
    -webkit-appearance:none;

}

.btn:hover{

    transform:translateY(-1px);

    box-shadow:0 6px 14px rgba(37,99,235,.22);

}

.btn:active{

    transform:translateY(0);

}

.btn i{

    display:flex;

    align-items:center;

    justify-content:center;

    width:16px;

    height:16px;

    font-size:14px;

    line-height:1;

    margin:0;

    padding:0;

    flex-shrink:0;

}

.btn span{

    display:flex;

    align-items:center;

    line-height:1;

}

button.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

/* ==========================================================
   Button Colors
========================================================== */

.btn-success{

    background:#16a34a;

    color:#fff;

}

.btn-success:hover{

    background:#15803d;

}

.btn-danger{

    background:#dc2626;

    color:#fff;

}

.btn-danger:hover{

    background:#b91c1c;

}

.btn-warning{

    background:#f59e0b;

    color:#fff;

}

.btn-warning:hover{

    background:#d97706;

}

.btn-secondary{

    background:#64748b;

    color:#fff;

}

.btn-secondary:hover{

    background:#475569;

}

/* ==========================================================
   Button Colors
========================================================== */

.btn-primary{

    background:#2563eb;

    color:#fff;

}

.btn-success{

    background:#16a34a;

    color:#fff;

}

.btn-danger{

    background:#dc2626;

    color:#fff;

}

.btn-warning{

    background:#f59e0b;

    color:#fff;

}

.btn-secondary{

    background:#64748b;

    color:#fff;

}

.btn-outline{

    background:#fff;

    color:#2563eb;

    border:1px solid #2563eb;

    box-shadow:none;

}

.btn-outline:hover{

    background:#2563eb;

    color:#fff;

}

/* ==========================================================
   Sizes
========================================================== */

.btn-sm{

    min-width:72px;

    height:32px;

    padding:0 12px;

    font-size:12px;

    gap:6px;

}

.btn-sm i{

    width:14px;

    height:14px;

    font-size:12px;

}

.btn-lg{

    min-width:130px;

    height:44px;

    padding:0 22px;

    font-size:15px;

}

.btn-lg i{

    width:18px;

    height:18px;

    font-size:16px;

}

/* Bootstrap Icons Alignment */

.bi{

    position:static;

    margin:0;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    line-height:1;

}
/* ==========================================================================
   FORMS
   ========================================================================== */

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--text);

}

.form-control{

    width:100%;

    padding:12px 15px;

    border:1px solid var(--border);

    border-radius:var(--radius-sm);

    background:#fff;

    transition:var(--transition);

}

.form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(37,99,235,.15);

    outline:none;

}

textarea.form-control{

    resize:vertical;

    min-height:120px;

}

select.form-control{

    cursor:pointer;

}

/* ==========================================================================
   TABLES
   ========================================================================== */

.table-container{

    background:#fff;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.table{

    width:100%;

}

.table thead{

    background:var(--primary);

    color:#fff;

}

.table th{

    padding:15px;

    text-align:left;

}

.table td{

    padding:14px 15px;

    border-bottom:1px solid var(--border);

}

.table tbody tr{

    transition:var(--transition);

}

.table tbody tr:nth-child(even){

    background:#f8fafc;

}

.table tbody tr:hover{

    background:#e0f2fe;

}

/* ==========================================================================
   ALERTS
   ========================================================================== */

.alert{

    padding:15px 20px;

    border-radius:var(--radius-sm);

    margin-bottom:20px;

    font-weight:500;

}

.alert-success{

    background:#dcfce7;

    color:#166534;

    border-left:5px solid var(--success);

}

.alert-danger{

    background:#fee2e2;

    color:#991b1b;

    border-left:5px solid var(--danger);

}

.alert-warning{

    background:#fef3c7;

    color:#92400e;

    border-left:5px solid var(--warning);

}

.alert-info{

    background:#dbeafe;

    color:#1d4ed8;

    border-left:5px solid var(--info);

}

/* ==========================================================================
   STATUS BADGES
   ========================================================================== */

.badge{

    display:inline-block;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

}

.badge-success{

    background:#dcfce7;

    color:#166534;

}

.badge-danger{

    background:#fee2e2;

    color:#991b1b;

}

.badge-warning{

    background:#fef3c7;

    color:#92400e;

}

.badge-info{

    background:#dbeafe;

    color:#1d4ed8;

}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:25px;

}

.pagination a{

    padding:10px 15px;

    border-radius:var(--radius-sm);

    background:#fff;

    border:1px solid var(--border);

    transition:var(--transition);

}

.pagination a:hover{

    background:var(--primary);

    color:#fff;

}

.pagination .active{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center{
    text-align:center;
}

.text-left{
    text-align:left;
}

.text-right{
    text-align:right;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}

.p-1{padding:10px;}
.p-2{padding:20px;}
.p-3{padding:30px;}

.w-100{
    width:100%;
}

.d-flex{
    display:flex;
}

.align-center{
    align-items:center;
}

.justify-between{
    justify-content:space-between;
}

.justify-center{
    justify-content:center;
}

.gap-1{
    gap:10px;
}

.gap-2{
    gap:20px;
}

.rounded{
    border-radius:var(--radius);
}

.shadow{
    box-shadow:var(--shadow);
}

.bg-white{
    background:#fff;
}

/* ==========================================================================
   LOADER
   ========================================================================== */

.loader{

    width:40px;

    height:40px;

    border:4px solid #ddd;

    border-top:4px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}
/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.fade-in{

    animation:fadeIn .4s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#cbd5e1;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#94a3b8;

}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print{

    .sidebar,
    .topbar,
    .btn,
    .pagination{

        display:none !important;

    }

    .main{

        margin:0;

    }

    .content{

        padding:0;

    }

}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media(max-width:992px){

    .sidebar{

        width:220px;

    }

    .main{

        margin-left:220px;

    }

}

@media(max-width:768px){

    .sidebar{

        position:fixed;

        left:-260px;

        transition:.3s;

    }

    .sidebar.active{

        left:0;

    }

    .main{

        margin-left:0;

    }

    .topbar{

        flex-wrap:wrap;

        height:auto;

        padding:15px;

    }

    .topbar-center{

        width:100%;

        margin:15px 0;

    }

    .grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .content{

        padding:15px;

    }

    .card{

        padding:18px;

    }

    .btn{

        width:100%;

    }

    .table-container{

        overflow-x:auto;

    }

}

/* ==========================================================================
   ICONS
   ========================================================================== */

.bi{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    line-height:1;

    vertical-align:middle;

    font-size:16px;

}

.sidebar-menu i{

    width:22px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-right:12px;

    font-size:17px;

    color:#93c5fd;

}

.topbar i{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.card h2 i,
.card h3 i{

    font-size:20px;

    margin-right:8px;

    color:var(--primary);

}

.btn i{

    font-size:14px;

    width:auto;

    height:auto;

    margin:0;

    color:inherit;

}
/* ==========================================================================
   TOPBAR ENHANCEMENTS
   ========================================================================== */

.search-box{

    display:flex;

    align-items:center;

    background:#fff;

    border:1px solid var(--border);

    border-radius:30px;

    padding:0 15px;

    width:100%;

    max-width:420px;

}

.search-box i{

    color:var(--text-light);

    margin-right:10px;

}

.search-box input{

    border:none;

    outline:none;

    width:100%;

    padding:12px 0;

    background:transparent;

}

.btn-icon{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow-sm);

    cursor:pointer;

    transition:var(--transition);

}

.btn-icon:hover{

    background:var(--primary);

    color:#fff;

}

.topbar-date{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--text-light);

    font-size:14px;

}

.profile{

    display:flex;

    align-items:center;

    gap:12px;

}

.profile i{

    font-size:32px;

    color:var(--primary);

}

.profile-details{

    display:flex;

    flex-direction:column;

    line-height:1.2;

}

.profile-details strong{

    color:var(--text);

}

.profile-details small{

    color:var(--text-light);

}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main{

    margin-left:260px;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    background:var(--background);

}

.content{

    flex:1;

    padding:30px;

}

.footer{

    background:#fff;

    border-top:1px solid var(--border);

    padding:18px 30px;

    text-align:center;

    color:var(--text-light);

    font-size:14px;

    margin-top:auto;

}

.sidebar-version{

    text-align:center;

    color:#64748b;

    font-size:12px;

    padding:15px;

}


.code-block{

    background:#0f172a;

    color:#e2e8f0;

    padding:20px;

    border-radius:12px;

    overflow:auto;

    font-size:14px;

    line-height:1.6;

    font-family:Consolas, monospace;

    border:1px solid #1e293b;

}

/* ==========================================================
   Login Page
========================================================== */

.login-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0f172a,#1e3a8a);

    padding:40px;

}

.login-card{

    width:100%;

    max-width:430px;

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.login-header{

    text-align:center;

    margin-bottom:35px;

}

.login-logo{

    width:80px;

    height:80px;

    margin:0 auto 15px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

}

.login-header h1{

    margin:0;

    font-size:30px;

    color:#1e293b;

}

.login-header p{

    margin-top:8px;

    color:#64748b;

    font-size:15px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#334155;

}

.form-control{

    width:100%;

    padding:14px 16px;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-size:15px;

    transition:.25s;

}

.form-control:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.btn-login{

    width:100%;

    margin-top:10px;

    padding:14px;

    font-size:16px;

}

.login-footer{

    margin-top:25px;

    text-align:center;

    color:#64748b;

    font-size:13px;

}

/* ==========================================================
   Authentication Footer
========================================================== */

.auth-footer{

    text-align:center;

    padding:25px;

    background:transparent;

    color:#cbd5e1;

    font-size:14px;

}

/* ==========================================================================
   USERS MANAGEMENT
   ========================================================================== */

/* ==========================================================
   Page Header
========================================================== */

.page-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:25px;

    flex-wrap:wrap;

}

.page-header h1{

    margin:0;

    font-size:28px;

    color:#1e293b;

}

.page-header p{

    margin-top:6px;

    color:#64748b;

}

/* ==========================================================
   Card Header
========================================================== */

.card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.card-header h2{

    margin:0;

    font-size:20px;

    color:#1e293b;

}

/*==========================================================
ENTERPRISE STAT CARDS
==========================================================*/

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    width:100%;

    gap:20px;

    margin-bottom:20px;

}

.stat-card{
    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 18px;

    min-height:90px;

    border-radius:10px;
}

.stat-card h3{
    margin:0;
    font-size:13px;
    font-weight:600;
}

.stat-card h1{
    margin:6px 0 0;
    font-size:28px;
    line-height:1;
}

.stat-icon{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;
    font-size:20px;

    flex-shrink:0;
}

.stat-icon.success{

    background:#16a34a;

}

.stat-icon.warning{

    background:#f59e0b;

}

.stat-icon.danger{

    background:#dc2626;

}

@media (max-width:none){

    .grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media (max-width:768px){

    .grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:520px){

    .grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   Search Toolbar
========================================================== */

.toolbar-form{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.toolbar-form input{

    flex:1;

    min-width:260px;

}

/* ==========================================================
   Responsive Tables
========================================================== */

.table-responsive{

    overflow-x:auto;

}

.table-responsive table{

    width:100%;

    border-collapse:collapse;

}

.table-responsive th{

    background:#f8fafc;

    color:#475569;

    padding:14px;

    text-align:left;

    font-weight:600;

    border-bottom:2px solid #e2e8f0;

}

.table-responsive td{

    padding:14px;

    border-bottom:1px solid #e5e7eb;

    vertical-align:middle;

}

.table-responsive tbody tr:hover{

    background:#f8fafc;

}

/* ==========================================================
   Action Buttons
========================================================== */

.action-buttons{

    display:flex;

    gap:6px;

    flex-wrap:wrap;

}

.action-buttons .btn{

    margin:0;

}

/* ==========================================================
   Badges
========================================================== */

.badge{

    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:6px 12px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

}

.badge-success{

    background:#dcfce7;

    color:#15803d;

}

.badge-danger{

    background:#fee2e2;

    color:#b91c1c;

}

.badge-warning{

    background:#fef3c7;

    color:#b45309;

}

.badge-primary{

    background:#dbeafe;

    color:#1d4ed8;

}

/* ==========================================================
   Pagination
========================================================== */

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin-top:25px;

    flex-wrap:wrap;

}

/*==================================================
  Action Menu
==================================================*/

.actions-column{
    width:70px;
    text-align:center;
}

.action-menu{
    position:relative;
    display:inline-block;
}

.action-toggle{

    width:38px;
    height:38px;

    border:none;
    border-radius:8px;

    background:#2563eb;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;
}

.action-toggle i{
    font-size:18px;
}

.action-dropdown{

    position:absolute;

    top:45px;
    right:0;

    width:220px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:10px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    display:none;

    z-index:99999;

}

.action-dropdown.show{
    display:block;
}

.action-dropdown a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 15px;

    color:#334155;

    font-size:14px;

}

.action-dropdown a:hover{

    background:#f8fafc;

    color:#2563eb;

}

.action-dropdown hr{

    border:none;

    border-top:1px solid #e5e7eb;

    margin:5px 0;

}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
    margin-top:20px;
}

.form-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:30px;
    flex-wrap:wrap;
}

@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .form-actions{
        justify-content:center;
    }

}

.form-wrapper{

    width:100%;
    max-width:850px;

    margin:30px auto;

}

.form-wrapper .card{

    padding:35px 40px;

}

/*==========================================================
ENTERPRISE SERVICES
==========================================================*/

.services{

    padding:120px 0;

    background:#f8fbff;

    position:relative;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:24px;

    padding:45px;

    position:relative;

    overflow:hidden;

    transition:.35s;

    border:1px solid #e8eef5;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 30px 70px rgba(15,23,42,.10);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:#2563eb;

    transition:.35s;

}

.service-card:hover::before{

    width:100%;

    opacity:.04;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:#fff;

    font-size:34px;

    margin-bottom:30px;

}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.service-card p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:30px;

}

.service-card ul{

    display:grid;

    gap:14px;

}

.service-card ul li{

    display:flex;

    gap:12px;

    align-items:flex-start;

    color:#334155;

}

.service-card ul li i{

    color:#10b981;

    margin-top:4px;

}

/*==========================================================
SERVICE FOOTER
==========================================================*/

.service-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:35px;

    padding-top:30px;

    border-top:1px solid #edf2f7;

}

.service-link{

    color:#2563eb;

    font-weight:700;

}

.service-link i{

    margin-left:8px;

    transition:.3s;

}

.service-card:hover .service-link i{

    transform:translateX(6px);

}

/*==========================================================
FEATURE STRIP
==========================================================*/

.feature-strip{

    margin-top:90px;

    background:

    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    border-radius:30px;

    padding:60px;

    color:#fff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.feature{

    text-align:center;

}

.feature i{

    font-size:40px;

    margin-bottom:20px;

}

.feature h3{

    color:#fff;

    margin-bottom:12px;

}

.feature p{

    color:#dbeafe;

}

/*==========================================================
SERVICE EFFECTS
==========================================================*/

.service-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:

    radial-gradient(

        rgba(37,99,235,.08),

        transparent 70%

    );

    right:-100px;

    top:-100px;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}

.service-icon{

    transition:.35s;

}

/*==========================================================
SERVICES RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.services-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.feature-grid{

grid-template-columns:1fr;

}

.feature-strip{

padding:35px;

}

.service-card{

padding:30px;

}

.service-card h3{

font-size:24px;

}

}

/*==========================================================
WHY SCHEMECLOUD
==========================================================*/

.why{

    padding:120px 0;

    background:#ffffff;

    position:relative;

}

.why-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.why-content h2{

    margin-bottom:25px;

}

.why-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.why-list{

    display:grid;

    gap:22px;

}

.why-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.why-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#2563eb;

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.why-item h4{

    margin-bottom:8px;

    font-size:20px;

}

.why-item p{

    margin:0;

    font-size:16px;

}

/*==========================================================
MATURITY CARD
==========================================================*/

.maturity-card{

    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a
    );

    color:#fff;

    border-radius:28px;

    padding:50px;

    position:relative;

    overflow:hidden;

}

.maturity-card::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-180px;

    top:-180px;

    border-radius:50%;

    background:

    radial-gradient(

        rgba(255,255,255,.08),

        transparent 70%

    );

}

.maturity-card h3{

    color:#fff;

    margin-bottom:30px;

    font-size:30px;

}

.maturity-level{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

}

.maturity-bar{

    height:10px;

    border-radius:30px;

    overflow:hidden;

    background:rgba(255,255,255,.15);

    margin-bottom:28px;

}

.maturity-progress{

    width:82%;

    height:100%;

    background:#10b981;

}

.maturity-card p{

    color:#dbeafe;

}

/*==========================================================
IMPLEMENTATION TIMELINE
==========================================================*/

.timeline{

    margin-top:90px;

}

.timeline-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.timeline-step{

    text-align:center;

    position:relative;

}

.timeline-step::after{

    content:"";

    position:absolute;

    top:35px;

    right:-15px;

    width:30px;

    height:2px;

    background:#dbeafe;

}

.timeline-step:last-child::after{

    display:none;

}

.timeline-circle{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    margin-bottom:20px;

}

.timeline-step h4{

    margin-bottom:12px;

}

/*==========================================================
TRUST METRICS
==========================================================*/

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:80px;

}

.trust-card{

    text-align:center;

    background:#f8fafc;

    padding:35px;

    border-radius:18px;

    transition:.35s;

}

.trust-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.trust-card h2{

    font-size:42px;

    color:#2563eb;

    margin-bottom:10px;

}

.trust-card span{

    display:block;

    color:#64748b;

    font-weight:600;

}

/*==========================================================
WHY RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.why-wrapper{

grid-template-columns:1fr;

}

.timeline-grid{

grid-template-columns:repeat(2,1fr);

}

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.timeline-grid{

grid-template-columns:1fr;

}

.trust-grid{

grid-template-columns:1fr;

}

.maturity-card{

padding:35px;

}

}

/*==========================================================
SECTOR SOLUTIONS
==========================================================*/

.sectors{

    padding:120px 0;

    background:#f7fafc;

    position:relative;

}

.sectors-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.sector-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    transition:.35s;

    border:1px solid #e2e8f0;

    position:relative;

    overflow:hidden;

}

.sector-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.10);

}

.sector-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #38bdf8
    );

}

.sector-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#dbeafe;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.sector-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.sector-card p{

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}

/*==========================================================
SECTOR CAPABILITIES
==========================================================*/

.sector-list{

    display:grid;

    gap:12px;

}

.sector-list li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    color:#334155;

    font-size:15px;

}

.sector-list i{

    color:#10b981;

    margin-top:4px;

}

/*==========================================================
FLAGSHIP WATER PANEL
==========================================================*/

.water-showcase{

    margin-top:80px;

    border-radius:30px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    background:

    linear-gradient(
        135deg,
        #0f172a,
        #1e40af
    );

    color:#fff;

}

.water-content{

    padding:70px;

}

.water-content h2{

    color:#fff;

    margin-bottom:25px;

}

.water-content p{

    color:#cbd5e1;

    font-size:18px;

    line-height:1.9;

}

.water-image{

    background:

    linear-gradient(
        rgba(15,23,42,.35),
        rgba(15,23,42,.35)
    ),

    url('../images/water-sector.jpg');

    background-size:cover;

    background-position:center;

    min-height:500px;

}

/*==========================================================
IMPACT GRID
==========================================================*/

.impact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}

.impact-box{

    background:rgba(255,255,255,.08);

    padding:25px;

    border-radius:18px;

}

.impact-box h3{

    color:#fff;

    margin-bottom:10px;

}

.impact-box p{

    color:#dbeafe;

    margin:0;

}

/*==========================================================
SECTOR CTA
==========================================================*/

.sector-action{

    margin-top:50px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}
/*==========================================================
SECTOR RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.sectors-grid{

grid-template-columns:repeat(2,1fr);

}

.water-showcase{

grid-template-columns:1fr;

}

.water-image{

min-height:350px;

}

}

@media(max-width:700px){

.sectors-grid{

grid-template-columns:1fr;

}

.impact-grid{

grid-template-columns:1fr;

}

.water-content{

padding:40px;

}

}

/*==========================================================
TRANSFORMATION FRAMEWORK
==========================================================*/

.framework{

    padding:120px 0;

    background:#ffffff;

    position:relative;

}

.framework-process{

    position:relative;

    margin-top:80px;

}

.framework-process::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    transform:translateX(-50%);

    width:4px;

    height:100%;

    background:#dbeafe;

}

.framework-step{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:80px;

    position:relative;

}

.framework-step:nth-child(even){

    flex-direction:row-reverse;

}

.framework-content{

    width:45%;

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

    border:1px solid #e2e8f0;

}

.framework-content h3{

    margin-bottom:18px;

    font-size:28px;

}

.framework-content p{

    line-height:1.9;

}

.framework-number{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    font-weight:700;

    z-index:5;

    box-shadow:0 12px 35px rgba(37,99,235,.35);

}

.framework-empty{

    width:45%;

}

/*==========================================================
FRAMEWORK RESULTS
==========================================================*/

.framework-results{

    margin-top:100px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.result-card{

    background:#f8fafc;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.result-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.result-card i{

    font-size:42px;

    color:#2563eb;

    margin-bottom:20px;

}

.result-card h4{

    margin-bottom:15px;

}

/*==========================================================
FRAMEWORK RESULTS
==========================================================*/

.framework-results{

    margin-top:100px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.result-card{

    background:#f8fafc;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.result-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.result-card i{

    font-size:42px;

    color:#2563eb;

    margin-bottom:20px;

}

.result-card h4{

    margin-bottom:15px;

}

/*==========================================================
EXECUTIVE CTA
==========================================================*/

.executive-banner{

    margin-top:100px;

    padding:70px;

    border-radius:30px;

    background:

    linear-gradient(
        135deg,
        #2563eb,
        #1e40af
    );

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:40px;

}

.executive-banner h2{

    color:#fff;

    margin-bottom:18px;

}

.executive-banner p{

    color:#dbeafe;

    max-width:700px;

}

.executive-actions{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================================
WHITE BUTTON
==========================================================*/

.btn-white{

    background:#fff;

    color:#2563eb;

    padding:16px 30px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.btn-white:hover{

    transform:translateY(-3px);

}

.btn-transparent{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    padding:16px 30px;

    border-radius:10px;

    transition:.3s;

}

.btn-transparent:hover{

    background:#fff;

    color:#2563eb;

}

/*==========================================================
FRAMEWORK RESPONSIVE
==========================================================*/

@media(max-width:1000px){

.framework-process::before{

left:35px;

}

.framework-step,
.framework-step:nth-child(even){

flex-direction:row;

}

.framework-content{

width:calc(100% - 110px);

}

.framework-empty{

display:none;

}

.framework-results{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.framework-results{

grid-template-columns:1fr;

}

.framework-content{

padding:25px;

}

.executive-banner{

padding:40px;

}

}

/*==========================================================
TRUST & IMPACT
==========================================================*/

.impact{

    padding:120px 0;

    background:#f8fbff;

}

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.impact-card{

    background:#fff;

    padding:45px 30px;

    border-radius:24px;

    text-align:center;

    border:1px solid #e2e8f0;

    transition:.35s;

}

.impact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}

.impact-card h2{

    font-size:52px;

    color:#2563eb;

    margin-bottom:10px;

}

.impact-card span{

    display:block;

    color:#64748b;

    font-weight:600;

}

/*==========================================================
CLIENTS
==========================================================*/

.clients{

    margin-top:100px;

}

.client-logos{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.client{

    height:120px;

    background:#fff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid #e5e7eb;

    transition:.3s;

}

.client:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.client img{

    max-width:120px;

    opacity:.65;

    transition:.3s;

}

.client:hover img{

    opacity:1;

}

/*==========================================================
TESTIMONIALS
==========================================================*/

.testimonials{

    margin-top:120px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.testimonial{

    background:#fff;

    border-radius:24px;

    padding:40px;

    border:1px solid #e2e8f0;

    position:relative;

}

.testimonial::before{

    content:"“";

    position:absolute;

    top:20px;

    right:30px;

    font-size:90px;

    color:#dbeafe;

}

.testimonial p{

    line-height:1.9;

    margin-bottom:30px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:18px;

}

.testimonial-avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.testimonial-user h4{

    margin-bottom:5px;

}

.testimonial-user small{

    color:#64748b;

}

/*==========================================================
CERTIFICATIONS
==========================================================*/

.certifications{

    margin-top:110px;

    background:#0f172a;

    color:#fff;

    border-radius:30px;

    padding:70px;

}

.cert-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    margin-top:45px;

}

.cert-card{

    text-align:center;

}

.cert-card i{

    font-size:48px;

    color:#38bdf8;

    margin-bottom:20px;

}

.cert-card h3{

    color:#fff;

    margin-bottom:12px;

}

.cert-card p{

    color:#cbd5e1;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.impact-grid{

grid-template-columns:repeat(2,1fr);

}

.client-logos{

grid-template-columns:repeat(3,1fr);

}

.testimonial-grid{

grid-template-columns:1fr;

}

.cert-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.impact-grid{

grid-template-columns:1fr;

}

.client-logos{

grid-template-columns:repeat(2,1fr);

}

.cert-grid{

grid-template-columns:1fr;

}

.certifications{

padding:40px;

}

}

/*==========================================================
FINAL CALL TO ACTION
==========================================================*/

.cta-final{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a
    );

    color:#fff;

    text-align:center;

}

.cta-final h2{

    color:#fff;

    font-size:48px;

    margin-bottom:25px;

}

.cta-final p{

    max-width:850px;

    margin:0 auto 45px;

    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================================
ENTERPRISE FOOTER
==========================================================*/

.footer{

    background:#020617;

    color:#94a3b8;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.footer-logo-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #38bdf8
    );

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

}

.footer-logo h3{

    color:#fff;

    margin-bottom:6px;

}

.footer p{

    line-height:1.9;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

    font-size:20px;

}

/*==========================================================
FOOTER LINKS
==========================================================*/

.footer-links{

    display:grid;

    gap:16px;

}

.footer-links a{

    color:#94a3b8;

    transition:.3s;

}

.footer-links a:hover{

    color:#38bdf8;

    padding-left:6px;

}

/*==========================================================
CONTACT
==========================================================*/

.footer-contact{

    display:grid;

    gap:18px;

}

.footer-contact div{

    display:flex;

    gap:15px;

    align-items:flex-start;

}

.footer-contact i{

    color:#38bdf8;

    margin-top:5px;

}
/*==========================================================
NEWSLETTER
==========================================================*/

.newsletter{

    margin-top:30px;

}

.newsletter input{

    width:100%;

    padding:16px;

    border:none;

    border-radius:10px;

    margin-bottom:15px;

    background:#0f172a;

    color:#fff;

}

.newsletter button{

    width:100%;

}

/*==========================================================
SOCIAL
==========================================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#0f172a;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#2563eb;

    transform:translateY(-4px);

}

/*==========================================================
COPYRIGHT
==========================================================*/

.footer-bottom{

    margin-top:70px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom a{

    color:#38bdf8;

}
