﻿

/* Table */
.table-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 1rem;
}

    .styled-table thead {
        background: var(--color-primary);
        color: #ffffff;
    }

        .styled-table thead th {
            padding: 1rem 1.25rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

    .styled-table tbody tr {
        border-bottom: 1px solid var(--color-border);
        transition: background 0.2s ease;
    }

        .styled-table tbody tr:nth-child(even) {
            background: rgba(18, 63, 122, 0.03);
        }

        .styled-table tbody tr:hover {
            background: rgba(242, 140, 24, 0.08);
        }

    .styled-table tbody td {
        padding: 1rem 1.25rem;
        color: var(--color-text-soft);
        vertical-align: top;
    }

        .styled-table tbody td strong {
            color: var(--color-text);
        }

    .styled-table tfoot {
        background: var(--color-bg);
        border-top: 1px solid var(--color-border);
    }

        .styled-table tfoot td {
            padding: 1rem 1.25rem;
            font-weight: 600;
            color: var(--color-text);
        }

    /* Optional compact version */
    .styled-table.table-sm thead th,
    .styled-table.table-sm tbody td,
    .styled-table.table-sm tfoot td {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Optional rounded first/last look */
    .styled-table thead th:first-child {
        border-top-left-radius: var(--radius-md);
    }

    .styled-table thead th:last-child {
        border-top-right-radius: var(--radius-md);
    }

/* Responsive table */
@media (max-width: 760px) {
    .table-wrap {
        overflow-x: auto;
    }

    .styled-table {
        min-width: 600px;
    }
}



.Image_Screen {
    max-width:90%;
    max-height:380px;
 
}


:root {
    --primary: #123f7a;
    --primary-light: #eaf1fb;
    --accent: #f28c18;
    --text: #1f2937;
    --muted: #667085;
    --border: #dbe3ee;
    --bg: #f7f9fc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
    --container: 1240px;
}

.features-section {
    padding: 80px 20px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

    .section-header .eyebrow {
        display: inline-block;
        margin-bottom: 14px;
        padding: 8px 14px;
        border-radius: 999px;
        background: var(--primary-light);
        color: var(--primary);
        font-weight: 700;
        font-size: 14px;
    }

    .section-header h2 {
        margin: 0 0 14px;
        font-size: clamp(32px, 4vw, 48px);
        line-height: 1.1;
        letter-spacing: -0.03em;
    }

    .section-header p {
        margin: 0;
        font-size: 18px;
        color: var(--muted);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: #bfd0e5;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
    color: var(--primary);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.features-footer {
    margin-top: 42px;
    text-align: center;
}

    .features-footer a {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 999px;
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        transition: background 0.2s ease, transform 0.2s ease;
    }

        .features-footer a:hover {
            background: #d97706;
            transform: translateY(-1px);
        }

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .features-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .features-section {
        padding: 64px 18px;
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .section-header p {
        font-size: 16px;
    }
}

