.alert {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 12px;
}
.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.alert-error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.alert ul {
    margin: 0;
    padding-left: 18px;
}


/* User layout shell */
.user-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    background: #f3f4f6;
}
.user-sidebar {
    background: #020617;
    color: #e5e7eb;
    padding: 20px 16px;
}
.user-sidebar-header {
    margin-bottom: 24px;
}
.user-logo {
    font-weight: 700;
    font-size: 18px;
}
.user-role {
    display: block;
    font-size: 12px;
    color: #9ca3af;
}
.user-nav a {
    display: block;
    font-size: 14px;
    padding: 8px 0;
    color: #e5e7eb;
}
.user-nav a:hover {
    color: #ffffff;
}
.user-main {
    padding: 24px;
}
@media (max-width: 900px) {
    .user-wrapper {
        grid-template-columns: 1fr;
    }
    .user-sidebar {
        display: none; /* or convert to mobile menu later */
    }
}

/* User dashboard specifics */
.user-dashboard-header h1 {
    font-size: 24px;
    margin-bottom: 4px;
}
.user-dashboard-sub {
    font-size: 14px;
    color: #6b7280;
}
.user-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.user-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.user-card h3 {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}
.user-card-number {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}
.user-dashboard-table h2 {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1.4px;
}
.user-dashboard-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.user-dashboard-table th,
.user-dashboard-table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #e5e7eb;
}
.user-dashboard-table thead {
    background: #f9fafb;
}
.user-dashboard-table tbody tr:last-child td {
    border-bottom: none;
}
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
}
.badge-paid,
.badge-completed {
    background: #dcfce7;
    color: #166534;
}
.badge-pending,
.badge-in_progress {
    background: #fef9c3;
    color: #854d0e;
}
.badge-cancelled {
    background: #fee2e2;
    color: #b91c1c;
}

@media (max-width: 900px) {
    .user-dashboard-grid {
        grid-template-columns: 1fr;
    }
}
/* End of file */
/* admin table styles start*/
/* Admin page header */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.admin-page-header h1 {
    font-size: 22px;
}

/* Admin table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    margin-bottom: 16px;
}
.admin-table th,
.admin-table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #e5e7eb;
}
.admin-table thead {
    background: #f9fafb;
}
.admin-table tbody tr:last-child td {
    border-bottom: none;
}
.admin-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Buttons & links */
.btn {
    padding: 8px 14px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 13px;
    cursor: pointer;
}
.btn:hover {
    background: #1d4ed8;
}
.btn-secondary {
    padding: 8px 14px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #111827;
    border: none;
    font-size: 13px;
    cursor: pointer;
}
.btn-secondary:hover {
    background: #d1d5db;
}
.link-small {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #2563eb;
    cursor: pointer;
}
.link-small:hover {
    text-decoration: underline;
}
.link-danger {
    color: #b91c1c;
}

/* Form controls */
.form-group {
    margin-bottom: 12px;
}
.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}
.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 13px;
}
.form-group-inline {
    margin-bottom: 12px;
    font-size: 13px;
}

/* Base modal layout */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 40;
}
.modal.is-open {
    display: block;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
}
.modal-content {
    position: relative;
    max-width: 640px;            /* wider for many fields */
    max-height: 80vh;            /* limit total height to viewport */
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    display: flex;
    flex-direction: column;      /* header, body, footer stacked */
    z-index: 41;
}

/* Fixed header & footer */
.modal-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}
.modal-header h2 {
    font-size: 18px;
    letter-spacing: 1.4px;
}
.modal-close {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

/* Scrollable body */
.modal-body {
    padding: 14px 16px 16px;
    overflow-y: auto;           /* scroll here */
    max-height: calc(80vh - 56px - 56px);
    /* 80vh total minus header & footer (approx 56px each) */
}
p{
    margin-block-start: 0.5em !important;
    margin-block-end: 0.5em !important;
}

/* Footer fixed at bottom of modal */
.modal-footer {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 16px 14px;
    border-top: 1px solid #e5e7eb;
}

/* Optional: nicer scrollbar */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: #f3f4f6;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
    }
    .modal-body {
        max-height: calc(90vh - 56px - 56px);
    }
}
/* admin table styles end*/

/* Admin layout – Palette 3 (white / light gray / black / Netflix red) */
.admin-body {
    background: #F0F0F0;
}
.admin-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    background: #FFFFFF;
    color: #000000;
    padding: 16px;
    border-right: 1px solid #F0F0F0;
}
.admin-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #000000;
}
.admin-logo {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #E50914;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
}
.admin-nav a {
    display: block;
    padding: 8px 10px;
    margin-bottom: 4px;
    border-radius: 6px;
    color: #808080;
    font-size: 14px;
}
.admin-nav a:hover {
    background: #F0F0F0;
    color: #000000;
}
.admin-nav a.is-active {
    background: #E50914;
    color: #FFFFFF;
}

/* Main area */
.admin-main {
    background: #F7F7F7;
    color: #000000;
    display: flex;
    flex-direction: column;
}
.admin-topbar {
    padding: 14px 20px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
}
.admin-content {
    padding: 20px;
}

/* Cards */
.admin-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.admin-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px 14px;
    border: 1px solid #F0F0F0;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(240, 240, 240, 0.9);
}
.admin-card h3 {
    font-size: 13px;
    color: #808080;
    margin-bottom: 6px;
}
.admin-card-number {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

/* Panels */
.admin-panel-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}
.admin-panel {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}
.admin-panel h2 {
    font-size: 16px;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
    color: #000000;
}

/* Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.admin-table th,
.admin-table td {
    padding: 8px;
    border-bottom: 1px solid #F0F0F0;
}
.admin-table th {
    text-align: left;
    color: #808080;
    font-weight: 500;
}
.admin-table tr:nth-child(even) td {
    background: #FAFAFA;
}

/* Badges */
.badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge-paid {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}
.badge-pending {
    background: rgba(249, 115, 22, 0.1);
    color: #9A3412;
}
.badge-in_progress {
    background: rgba(59, 130, 246, 0.1);
    color: #1D4ED8;
}
.badge-completed {
    background: rgba(34, 197, 94, 0.1);
    color: #15803D;
}
.badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #B91C1C;
}

/* Buttons (reuse front‑site accent) */
.btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: none;
    background: #E50914;
    color: #FFFFFF;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
}
.btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}
.btn-outline {
    border: 1px solid #D4D4D4;
    background: transparent;
    color: #000000;
}
.btn-outline:hover {
    background: #F0F0F0;
}

/* Alerts */
.alert-success {
    background: rgba(34, 197, 94, 0.08);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 12px;
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

/* Quick actions */
.admin-actions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.admin-actions-list li {
    margin-bottom: 8px;
    font-size: 13px;
    color: #808080;
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-wrapper {
        grid-template-columns: 200px 1fr;
    }
    .admin-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-panel-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .admin-wrapper {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none; /* later: add mobile toggle */
    }
}





/* Palette 3 – Elegant Neutral
   Primary text: #000000
   Secondary text: #808080
   Main background: #F0F0F0
   Header/Footer background: #FFFFFF
   Borders / surfaces: #F0F0F0
   Accent (links, buttons): #E50914
*/

/* Reset / base */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #808080;              /* body text */
    background-color: #F0F0F0;   /* page background */
}
a {
    color: #E50914;              /* accent links */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}


/* Layout helpers */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}
.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}


/* Header */
.site-header {
    background: #FFFFFF;         /* white header */
    color: #000000;
    border-bottom: 1px solid #F0F0F0;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
}
.site-header .logo {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}
.site-header nav a {
    margin-left: 16px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #000000;
}
.site-header nav a:hover {
    color: #E50914;
}


/*banner style start*/
/* Hero banner */
.hero {
    padding: 40px 0 48px;
    background: #0f172a;
    color: #e5e7eb;
}
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
    align-items: center;
}
.hero-main h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero-sub {
    font-size: 15px;
    color: #cbd5f5;
    max-width: 520px;
}
.hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}
.btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
}
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #e5e7eb;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid #4b5563;
    text-decoration: none;
}
.btn:hover {
    background: #1d4ed8;
}
.btn-secondary:hover {
    border-color: #9ca3af;
}

/* Section header used across blocks */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}
.section-header h2 {
    font-size: 22px;
}
.section-header p {
    font-size: 14px;
    color: #6b7280;
}

/*banner style end*/


/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #E50914;         /* primary accent */
    color: #FFFFFF;              /* text on red */
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #E50914;
}
.btn:hover {
    background: #B20710;         /* darker red hover */
    border-color: #B20710;
}

/* Sections */
.section_home {
    padding: 40px 0;
}
section h2 {
    font-size: 24px;
    letter-spacing: 1.4px;
    margin-bottom: 0px !important;
    color: #000000;
}


/* Footer */
.site-footer {
    background: #FFFFFF;         /* white footer */
    color: #000000;
    padding: 20px 0 10px;
    font-size: 14px;
    border-top: 1px solid #F0F0F0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.footer-col h4 {
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: 1.4px;
    font-weight: 600;
    color: #000000;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li a {
    color: #808080;
}
.footer-col ul li a:hover {
    color: #E50914;
}
.footer-social a {
    display: inline-block;
    margin-right: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #F0F0F0;         /* light pill */
    color: #000000;
}
.footer-bottom {
    border-top: 1px solid #F0F0F0;
    margin-top: 24px;
    padding-top: 12px;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-header nav a {
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .banner h1 {
        font-size: 28px;
    }
    .banner p {
        max-width: 100%;
    }
}


/* Auth page */
.auth-section {
    min-height: calc(100vh - 140px); /* header+footer approx */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: #F0F0F0;             /* light gray backdrop */
}


/* Center card */
.auth-wrapper {
    display: flex;
    justify-content: center;
}
.auth-card {
    width: 100%;
    margin: auto;
    max-width: 440px;
    background: #FFFFFF;             /* white card */
    border-radius: 24px;
    padding: 32px 28px 28px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(240, 240, 240, 0.9);  /* palette border */
    color: #808080;
}


/* Titles */
.auth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000000;
}
.auth-subtitle {
    font-size: 14px;
    color: #808080;
    margin-bottom: 20px;
}


/* Form layout */
.auth-form-ui {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 13px;
    color: #808080;
}
.form-group input {
    border-radius: 10px;
    border: 1px solid #F0F0F0;       /* subtle border */
    background: #FFFFFF;
    padding: 9px 14px;
    font-size: 14px;
    color: #000000;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.form-group input::placeholder {
    color: #C0C0C0;
}
.form-group input:focus {
    border-color: #E50914;
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.3);
    background: #FFFFFF;
}


/* Error text */
.form-error {
    color: #B91C1C;
    font-size: 12px;
}


/* Button */
.auth-btn {
    width: 100%;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    background: #E50914;
    color: #FFFFFF;
    border-radius: 10px;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease, background 0.1s ease;
}
.auth-btn:hover {
    background: #B20710;
    filter: brightness(1.03);
    box-shadow: 0 14px 30px rgba(229, 9, 20, 0.35);
}
.auth-btn:active {
    transform: translateY(1px);
}


/* Bottom text */
.auth-footer-text {
    margin-top: 18px;
    font-size: 13px;
    color: #808080;
    text-align: center;
}
.auth-footer-text a {
    color: #E50914;
    font-weight: 500;
}
.auth-footer-text a:hover {
    color: #B20710;
}


/* Buttons & links (generic) */
.btn-primary {
    background: #E50914;
    color: #FFFFFF;
}
.btn-primary:hover {
    background: #B20710;
}
.w-full {
    width: 100%;
}
.form-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0 18px;
}
.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #808080;
}
.checkbox-inline input {
    width: 14px;
    height: 14px;
}
.link-muted {
    font-size: 13px;
    color: #808080;
}
.link-muted:hover {
    color: #000000;
}
.link-primary {
    color: #E50914;
    font-weight: 500;
}
.link-primary:hover {
    color: #B20710;
}


/* Responsive */
@media (max-width: 640px) {
    .auth-card {
        padding: 24px 20px 20px;
    }
    .auth-title {
        font-size: 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* End of file */
/* start */
/* Shared section styling */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    margin-bottom: 10px;
}
.section-header h2 {
    margin-bottom: 0;
    font-size: 22px;
    letter-spacing: 1.4px;
    color: #000000;
}
.section-header p {
    color: #808080;
    max-width: 520px;
    font-size: 14px;
}

/* Mission & Vision */
.mission-vision {
    background: #FFFFFF;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}
.mission-block,
.vision-block {
    padding: 20px 18px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
}
.mission-block h2,
.vision-block h2 {
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: 1.4px;
    color: #000000;
}
.mission-block p,
.vision-block p {
    color: #808080;
}

/* Card grid (services & portfolio) */
/*all portfolio show layout start*/
/* Portfolio list page */
.portfolio-list {
    padding: 56px 0 64px;
    background: #F0F0F0;
}

.portfolio-list .section-header {
    margin-bottom: 32px;
}

.portfolio-list .section-header h1 {
    font-size: 28px;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 6px;
}

.portfolio-list .section-header p {
    font-size: 14px;
    color: #808080;
    max-width: 520px;
}

/* Card grid re‑use */
.portfolio-list .card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card styling for case studies */
.portfolio-list .card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-thumb-wrapper {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #F0F0F0;
}

.card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card-title {
    font-size: 17px;
    letter-spacing: -0.01em;
    margin: 0;
}

.card-title a {
    color: #000000;
}

.card-title a:hover {
    color: #E50914;
}

.card-text {
    font-size: 14px;
    color: #808080;
    line-height: 1.6;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.card-meta {
    font-size: 12px;
    color: #808080;
}


/* Responsive */
@media (max-width: 992px) {
    .portfolio-list .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-list .card-grid {
        grid-template-columns: 1fr;
    }
    .card-thumb {
        height: 200px;
    }
}
/* End of portfolio list page */

/* service details page start*/
.services-page {
    padding: 56px 0;
    background: #F0F0F0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* small icon pill */
.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: #000000;
    font-size: 18px;
}

.service-title {
    font-size: 18px;
    margin: 0;
    color: #000000;
}

.service-text {
    font-size: 14px;
    color: #808080;
}

.service-points {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: #808080;
}

.service-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.service-price {
    font-weight: 600;
    color: #000000;
}

/* optional: accent on price label */
.service-price span {
    color: #E50914;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* End of service details page */

/*single service details page start*/
.service-hero {
    padding: 56px 0 32px;
    background: #FFFFFF;
}
.service-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
}
.service-hero h1 {
    font-size: 28px;
    margin: 6px 0;
    color: #000000;
}
.service-hero-sub {
    font-size: 14px;
    color: #808080;
    max-width: 520px;
}
.service-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.badge-soft {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #F0F0F0;
    color: #000000;
}
.service-hero-cta {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Right hero card */
.service-hero-card {
    background: #000000;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 14px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.8);
}
.service-hero-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #FFFFFF;
}
.service-hero-list {
    margin: 0;
    padding-left: 18px;
}

/* Main layout */
.service-layout {
    padding: 32px 0 56px;
    background: #F0F0F0;
}
.service-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 32px;
}
.service-main {
    min-width: 0;
}
.service-section {
    margin-top: 24px;
}
.service-section h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #000000;
}
.service-body {
    font-size: 15px;
    color: #808080;
    line-height: 1.7;
}
.service-steps,
.service-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #808080;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
    font-size: 14px;
}
.sidebar-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000000;
}
.details-list div {
    margin-bottom: 8px;
}
.details-list dt {
    font-weight: 600;
    font-size: 13px;
    color: #808080;
}
.details-list dd {
    margin: 0;
    color: #000000;
}

/* CTA sidebar card */
.sidebar-cta {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}
.sidebar-cta h3 {
    color: #FFFFFF;
}
.sidebar-cta .btn-full {
    width: 100%;
    margin-top: 8px;
    background: #E50914;
    color: #FFFFFF;
}
.sidebar-cta .btn-full:hover {
    background: #B20710;
}
.sidebar-cta-note {
    font-size: 12px;
    margin-top: 4px;
    color: #F0F0F0;
}

/* Responsive */
@media (max-width: 900px) {
    .service-hero-layout,
    .service-main-layout {
        grid-template-columns: 1fr;
    }
}
/* End of single service details page */

/* Portfolio show layout */
.portfolio-details {
    padding: 56px 0;
    background: #F0F0F0;
}
.portfolio-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 32px;
}
.portfolio-main {
    min-width: 0;
}

/* Header */
.portfolio-details-header h2 {
    font-size: 20px;
    margin-bottom: 8px;
      letter-spacing: 1.4px;
    color: #000000;
}
.link-small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #808080;
}
.link-small:hover {
    color: #E50914;
}

/* Meta badges */
.portfolio-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.badge-soft {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #F0F0F0;
    color: #000000;
}

/* Hero image */
.portfolio-hero-image {
    margin: 24px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10),
        0 0 0 1px #F0F0F0;
    background: #FFFFFF;
}
.portfolio-hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Sections */
.portfolio-section {
    margin-top: 24px;
}
.portfolio-section h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #000000;
      letter-spacing: 1.4px;
}
.portfolio-body {
    font-size: 15px;
    color: #808080;
    line-height: 1.7;
}
.portfolio-section p {
    font-size: 14px;
    color: #808080;
    line-height: 1.7;
}
.portfolio-result-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #808080;
}

/* Sidebar */
.portfolio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px 16px 14px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
    font-size: 14px;
}
.sidebar-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000000;
}
.details-list {
    margin: 0;
}
.details-list div {
    margin-bottom: 8px;
}
.details-list dt {
    font-weight: 600;
    font-size: 13px;
    color: #808080;
}
.details-list dd {
    margin: 0;
    color: #000000;
}

/* CTA card */
.sidebar-cta {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}
.sidebar-cta h3 {
    color: #FFFFFF;
}
.sidebar-cta p {
    color: #F0F0F0;
}
.sidebar-cta .btn-full {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: #E50914;
    color: #FFFFFF;
}
.sidebar-cta .btn-full:hover {
    background: #B20710;
}
.sidebar-cta-note {
    font-size: 12px;
    margin-top: 4px;
    color: #F0F0F0;
}

/* More projects in sidebar */
.sidebar-project {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}
.sidebar-project-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F0F0F0;
}
.sidebar-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-project-title {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}
.sidebar-project-title:hover {
    color: #E50914;
}
.sidebar-project-client {
    font-size: 12px;
    color: #808080;
}

/* Responsive */
@media (max-width: 900px) {
    .portfolio-layout {
        grid-template-columns: 1fr;
    }
    .portfolio-sidebar {
        order: -1;
    }
}
/* End of portfolio details */

/*portfolio deatils end*/
.card-thumb-wrapper {
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.card h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #000000;
    letter-spacing: -0.01em;
}
.card h3 a {
    color: #000000;
}
.card h3 a:hover {
    color: #E50914;
}
.card p {
    font-size: 14px;
    color: #808080;
}
.card-price {
    margin-top: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
}
.card-meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #808080;
}
.card-actions {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.btn.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

/* Section footer link (view all...) */
.section-footer-link {
    margin-top: 20px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/*end*/

/* about deatails page styles start*/
.about-hero {
    padding: 56px 0 32px;
    background: #FFFFFF;
}
.about-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 2fr);
    gap: 32px;
}
.about-hero h1 {
    font-size: 30px;
    margin-bottom: 8px;
    color: #000000;
}
.about-hero-sub {
    font-size: 15px;
    color: #808080;
}
.about-hero-highlight {
    background: #000000;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 14px;
}
.about-hero-highlight p + p {
    margin-top: 6px;
}

.about-story {
    padding: 32px 0;
    background: #F0F0F0;
}
.about-story h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000000;
      letter-spacing: 1.4px;
}
.about-story p {
    font-size: 15px;
    color: #808080;
    line-height: 1.7;
}

.about-mission-vision {
    padding: 32px 0;
    background: #FFFFFF;
}
.about-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.about-mission-vision h2 {
    font-size: 20px;
    margin-bottom: 6px;
    letter-spacing: 1.4px;
    color: #000000;
}
.about-mission-vision p {
    font-size: 14px;
    color: #808080;
    line-height: 1.7;
}
.about-stats-home {
    padding: 32px 0;
    /* background: #F0F0F0; */
}

.about-stats {
    padding: 32px 0;
    background: #F0F0F0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.stat-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
}
.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}
.stat-label {
    font-size: 13px;
    color: #808080;
}

.about-team-teaser {
    padding: 32px 0 56px;
    background: #FFFFFF;
}
.about-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #808080;
}
.about-list li + li {
    margin-top: 4px;
}
.about-cta-box {
    background: #000000;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 18px 18px 20px;
}
.about-cta-box h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #FFFFFF;
}
.about-cta-box p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #F0F0F0;
}

/* Accent links/buttons inside about (optional) */
.about-cta-box .btn,
.about-hero .btn {
    background: #E50914;
    color: #FFFFFF;
}
.about-cta-box .btn:hover,
.about-hero .btn:hover {
    background: #B20710;
}

/* Responsive */
@media (max-width: 900px) {
    .about-hero-layout,
    .about-two-col,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* about deatails page styles end*/

/* about styles start*/
.about.section_home {
    background: #FFFFFF;
    padding: 56px 0;
}

.about-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10),
        0 0 0 1px #F0F0F0;
}

.about-content h2 {
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #808080;
    max-width: 520px;
}

/* inline stats */
.about-stats-inline {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-stats-inline .stat-box {
    padding: 10px 14px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    min-width: 150px;
}

.about-stats-inline .stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #808080;
    margin-bottom: 4px;
}

.about-stats-inline .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

/* Responsive */
@media (max-width: 900px) {
    .about-two-column {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
}

/*about style end*/


/* Languages & platforms */
.tech-stack {
    background: #F0F0F0;
}
.tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tech-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    font-size: 13px;
    color: #000000;
    white-space: nowrap;
}

/* Client logos */
.clients {
    background: #FFFFFF;
    border-top: 1px solid #F0F0F0;
}
.client-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}
.client-logo {
    padding: 12px 10px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    font-size: 13px;
    color: #808080;
    text-align: center;
}
.client-logo span {
    opacity: 0.8;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .client-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .client-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* End of file */

/* blog styles start*/
.blog-list {
    padding: 56px 0;
}
.blog-article {
    padding: 56px 0;
}
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 32px;
}
.blog-main {
    min-width: 0;
}
.blog-header h1 {
    font-size: 28px;
    margin-bottom: 6px;
}
.blog-meta {
    font-size: 14px;
    color: #6b7280;
}
.blog-hero-image {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.blog-hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.blog-body {
    font-size: 15px;
    line-height: 1.7;
    color: #111827;
}
.blog-body h2,
.blog-body h3 {
    margin-top: 20px;
    letter-spacing: 1.4px;
}
@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}
.home-blog {
    padding: 20px 0;
    background: #f9fafb;
}
.home-blog .section-header h2 {
    font-size: 24px;
    letter-spacing: 1.4px;
}

/* blog styles end*/

/* contact styles start*/
.contact-page {
    padding: 56px 0;
    background: #F0F0F0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 32px;
}

/* Left column */
.contact-form-wrap h1 {
    font-size: 26px;
    margin-bottom: 6px;
    color: #000000;
}
.contact-sub {
    font-size: 14px;
    color: #808080;
    margin-bottom: 18px;
}

.contact-form .form-group {
    margin-bottom: 12px;
}
.contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #808080;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #F0F0F0;
    padding: 9px 14px;
    font-size: 14px;
    color: #000000;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.contact-form textarea {
    border-radius: 18px;
    min-height: 120px;
    resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #C0C0C0;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #E50914;
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.3);
    background: #FFFFFF;
}

.form-error {
    color: #B91C1C;
    font-size: 12px;
}

.contact-note {
    margin-top: 8px;
    font-size: 12px;
    color: #808080;
}

/* Right column: info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px 16px 14px;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.05),
        0 0 0 1px #F0F0F0;
    font-size: 14px;
    color: #808080;
}
.contact-card h2 {
    font-size: 16px;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
    color: #000000;
}
.contact-card ul {
    margin: 0;
    padding-left: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
/* contact styles end*/

/*checkout styles start*/
.payment-method-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.checkout-page {
    padding: 56px 0;
    background: #F0F0F0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 32px;
}

/* Heading + subtext */
.checkout-main h1 {
    font-size: 26px;
    margin-bottom: 6px;
    color: #000000;
}

.checkout-sub {
    font-size: 14px;
    color: #808080;
    margin-bottom: 18px;
}

/* Summary card */
.checkout-summary-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06),
        0 0 0 1px #F0F0F0;
    margin-bottom: 18px;
}

.checkout-summary-card h2 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #000000;
}

.checkout-service-desc {
    font-size: 14px;
    color: #808080;
    margin-bottom: 10px;
}

/* Price rows */
.checkout-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 4px;
    color: #808080;
}

.checkout-price {
    font-weight: 500;
    color: #000000;
}

.checkout-total {
    font-weight: 700;
    color: #000000;
}

/* Form + primary action */
.checkout-form .btn-full {
    width: 100%;
    text-align: center;
    margin-top: 4px;
    background: #E50914;
    color: #FFFFFF;
}

.checkout-form .btn-full:hover {
    background: #B20710;
}

/* Notes + back link */
.checkout-note {
    font-size: 12px;
    color: #808080;
    margin-top: 6px;
}

.checkout-back-link {
    margin-top: 10px;
    font-size: 13px;
}

/* Sidebar helpers */
.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #808080;
}

/* Responsive */
@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}
/*checkout styles end*/

/* pagination styles start*/
.big-arrows {
    margin-top: 10px;
    display: flex;
    justify-content:right;
    gap: 15px;
}

.big-arrows a {
    text-decoration: none;
    font-size: 40px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* left = black, right = red */
.big-arrows .arrow-left {
    color: #000000;
}

.big-arrows .arrow-right {
    color: #ef4444;           /* red */
}

.big-arrows a:hover {
    transform: translateY(-2px) scale(1.05);
}

/* disabled state when no prev/next page */
.big-arrows a.disabled {
    opacity: 0.25;
    pointer-events: none;
    transform: none;
}

/* End of pagination styles */

/*order derails page styles start*/
/* Admin order details layout */
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.admin-detail-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    font-size: 14px;
}

.admin-detail-card h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.admin-detail-card p {
    margin: 2px 0;
}

.admin-detail-card p strong {
    font-weight: 600;
}

/* Form elements inside admin detail cards */
.admin-detail-card .form-group {
    margin-bottom: 10px;
}

.admin-detail-card label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.admin-detail-card select {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 6px 8px;
    font-size: 13px;
    background-color: #ffffff;
}

/* Buttons alignment */
.admin-detail-card .btn,
.admin-detail-card .btn-secondary {
    margin-top: 4px;
}
/*order derails page styles end*/

/* meesage payment vefiy page start*/
.toast-popup {
    position: fixed;
    right: 16px;
    bottom: 16px;
    max-width: 320px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
}
.toast-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.toast-success {
    background: #16a34a;
    color: #ecfdf5;
}
/* meesage payment vefiy page end*/
