﻿/* ==========================================
           Global Core Styles (Desktop First / Fallback)
        ========================================== */
.custom-navbar {
    background: #fff;
    border-bottom: 4px solid #009c7b;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo-img {
    height: 55px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

    .nav-menu li a {
        color: #34495e;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
    }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #00a878;
        }

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.digital-india-img {
    height: 55px;
    width: auto;
}

.sso-btn {
    background: #006b4f;
    color: #fff;
    padding: 4px 4px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .sso-btn:hover {
        background: #00543e;
        color: #fff;
    }

    .sso-btn i {
        margin-right: 8px;
    }

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ==========================================
           Global Hero Content Canvas Overlay
        ========================================== */
.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
}

.badge-portal {
    background-color: rgba(6, 36, 29, 0.6);
    color: #2ecc71;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dot-live {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
}

.hero-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.highlight-text {
    color: #ffb800;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-sso-main {
    background-color: #ffb800;
    color: #06241d !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.btn-browse-streams {
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(6, 36, 29, 0.4);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- OPTIMIZED RESPONSIVE BRAND REGISTRATION CARD --- */
.info-box {
    background-color: rgb(13, 41, 34);
    z-index: 1;
    padding: 30px 25px;
    border-radius: 16px; /* Smooth rounded corners matching brand card */
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

#instructions .card-padding {
    padding-left: 60px;
    padding-right: 60px
}

.card-padding {
    padding-left: 60px;
    padding-right: 60px
}

/* ==========================================
           Extra Small Devices: Mobile Portrait (<576px)
        ========================================== */
@media (max-width: 575.98px) {
    .nav-wrapper {
        flex-direction: column;
        padding: 12px 0;
    }

    #instructions .card-padding {
        padding-left: 1px;
        padding-right: 1px;
    }

    .card-padding {
        padding-left: 1px;
        padding-right: 1px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 15px 0;
    }

        .nav-menu li {
            margin: 0;
        }

            .nav-menu li a {
                font-size: 13px;
            }

    .right-section {
        flex-direction: column;
        gap: 10px;
    }

    .digital-india-img {
        height: 35px;
    }

    .sso-btn {
        font-size: 12px;
    }

    .carousel-item, .banner-img {
        height: 300px;
    }
    /* Mobile text and positioning refinements */
    .hero-title {
        font-size: 16px;
    }

    .badge-portal {
        font-size: 8px !important;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .info-box {
        padding: 20px 15px;
        margin-top: 20px;
    }
}

/* ==========================================
           Small Devices: Mobile Landscape (576px - 767px)
        ========================================== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .logo-img {
        height: 45px;
    }

    #instructions .card-padding {
        padding-left: 20px;
        padding-right: 20px
    }

    .card-padding {
        padding-left: 20px;
        padding-right: 20px
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

        .nav-menu li a {
            font-size: 14px;
        }

    .digital-india-img {
        height: 40px;
    }

    .sso-btn {
        font-size: 13px;
    }

    .carousel-item, .banner-img {
        height: 500px;
    }

    .hero-title {
        font-size: 20px;
    }
}

/* ==========================================
           Medium Devices: Tablet (768px - 991px)
        ========================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .logo-img {
        height: 50px;
    }

    #instructions .card-padding {
        padding-left: 10px;
        padding-right: 10px
    }

    .card-padding {
        padding-left: 10px;
        padding-right: 10px
    }

    .nav-menu {
        gap: 20px;
    }

        .nav-menu li a {
            font-size: 15px;
        }

    .digital-india-img {
        height: 45px;
    }

    .sso-btn {
        font-size: 14px;
    }

    .carousel-item, .banner-img {
        height: 500px;
    }

    .hero-title {
        font-size: 24px;
    }

    .info-box {
        padding: 35px 30px;
        max-width: 400px;
        margin-top: 0; /* Align along the main content columns side-by-side */
    }

    .card-main-title {
        font-size: 20px;
    }
}

/* ==========================================
           Large Devices: Laptop (992px - 1199px)
        ========================================== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo-img {
        height: 52px;
    }

    #instructions .card-padding {
        padding-left: 60px;
        padding-right: 60px
    }

    .card-padding {
        padding-left: 60px;
        padding-right: 60px
    }

    .nav-menu {
        gap: 25px;
    }

        .nav-menu li a {
            font-size: 15px;
        }

    .digital-india-img {
        height: 50px;
    }

    .carousel-item, .banner-img {
        height: 600px;
    }

    .info-box {
        padding: 30px 25px;
        max-width: 440px;
        border-radius: 14px;
    }

    .card-main-title {
        font-size: 21px;
    }

    .panel-value {
        font-size: 12px;
    }
}

/* ==========================================
           Extra Large Devices: Desktop (1200px - 1399px)
        ========================================== */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .logo-img {
        height: 55px;
    }

    #instructions .card-padding {
        padding-left: 60px;
        padding-right: 60px
    }

    .card-padding {
        padding-left: 60px;
        padding-right: 60px
    }

    .img-fluid {
        width: 70px;
        height: 55px;
    }

    .nav-menu {
        gap: 30px;
    }

    .carousel-item, .banner-img {
        height: 650px;
    }

    .info-box {
        padding: 35px 30px;
        max-width: 480px; /* Original pristine layout specs */
        border-radius: 16px;
    }

    .badge-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .inner-icon {
        font-size: 24px;
    }

    .card-gov-title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .card-main-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .card-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .mini-status-grid {
        gap: 12px;
        margin-bottom: 25px;
    }

    .status-panel {
        padding: 12px 15px;
        border-radius: 8px;
    }

    .panel-label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .panel-value {
        font-size: 13px;
    }

    .btn-card-action {
        padding: 14px;
        border-radius: 10px;
        font-size: 15px;
        gap: 8px;
    }
}

/* ==========================================
           Full HD / Large Desktop: 1400px and Above
        ========================================== */
@media (min-width: 1400px) {
    .logo-img {
        height: 60px;
    }

    #instructions .card-padding {
        padding-left: 60px;
        padding-right: 60px
    }

    .card-padding {
        padding-left: 60px;
        padding-right: 60px
    }

    .img-fluid {
        width: 110px;
        height: 48px;
    }

    .nav-menu {
        gap: 35px;
    }

    .custom-navbar {
        padding: 0 20px;
    }

    .carousel-item, .banner-img {
        height: 700px;
    }

    .info-box {
        padding: 40px 50px;
    }
}

/* ==========================================
           Global Carousel Setup & Image Handling
        ========================================== */
.carousel-item {
    position: relative;
}

    .carousel-item::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(225deg, rgba(6, 36, 29, 0.6) 0%, rgba(6, 36, 29, 0.65) 70%);
        z-index: 1;
    }

.carousel-caption {
    z-index: 2;
    position: absolute;
}

.banner-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}
/* ==========================================
           Global Card Styles (Mobile Base Sizing First)
        ========================================== */
.info-box {
    background-color: #0d2922 !important;
    padding: 20px 15px; /* Compact padding for small touch screens */
    border-radius: 12px; /* Marginally sharper on mobile viewports */
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    max-width: 100%; /* Spans full container width on mobile layouts */
    margin: 20px auto 0 auto; /* Separates stacked elements gracefully */
}

.badge-icon-wrapper {
    background-color: #ffe899;
    width: 50px; /* Slightly scaled down icon base */
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-icon {
    font-size: 20px;
}

.card-gov-title {
    color: #ffb800;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.card-main-title {
    color: #ffffff !important;
    font-size: 18px; /* Safe size to prevent clipping on narrow devices */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Status Panels Mobile Layout */
.mini-status-grid {
    display: flex;
    flex-direction: row; /* Keeps them side-by-side unless device is exceptionally narrow */
    gap: 8px;
    margin-bottom: 20px;
}

.status-panel {
    background-color: #091b17;
    padding: 10px;
    border-radius: 6px;
    text-align: left;
    flex: 1;
}

.panel-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.panel-value {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap; /* Prevents awkward text drops */
}

    .panel-value.live {
        color: #2ecc71;
        font-weight: 600;
    }

.dot-green {
    width: 6px;
    height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    vertical-align: middle;
}

.btn-card-action {
    background-color: #ffb800 !important;
    color: #06241d !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .btn-card-action:hover {
        background-color: #e0a200 !important;
    }



/* Base navigation links */
.navbar-nav .nav-link {
    color: #0d2922 !important;
    /*color: #34495e;*/ /* Your current default grey-blue color */
    font-weight: 600;
    transition: color 0.3s ease, background-color 0.3s ease; /* Makes the transition smooth */
}

    /* 🟢 Dark Green Hover Effect */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: rgb(6, 36, 29) !important; /* Turns text into your brand dark green */
    }

/* Optional: If you want to handle the specific layout alignment for the logout link */
.navbar-nav li form {
    display: inline;
}

.navbar-nav .dropdown-item.nav-link {
    cursor: pointer;
}
/* Base style for the anchor link */
.bg-colour {
    color: rgb(6, 36, 29);
    transition: color 0.2s ease; /* Adds a smooth transition when flickering colors */
}

    /* FIXED: Removed the space before :hover */
    .bg-colour:hover,
    .bg-colour:focus {
        color: #ffb800 !important; /* Forces the text to shift to warning yellow */
        text-decoration: none; /* Removes any accidental default link underlines */
    }

/* ==========================================
   Card Interaction Effects
========================================== */

/* 1. Base Setup and Smooth State Transitions */
.info-box {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Base interactive transitions for nested children */
.badge-icon-wrapper,
.status-panel,
.btn-card-action,
.btn-card-action .arrow {
    transition: all 0.25s ease-in-out;
}

/* 2. Elevation Elevation and Ambient Shadow Glow on Hover/Focus */
.info-box:hover,
.info-box:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.15);
    outline: none;
}

    /* 3. Circular Branding Logo Shell Zoom & Micro-rotation */
    .info-box:hover .badge-icon-wrapper,
    .info-box:focus-within .badge-icon-wrapper {
        transform: scale(1.06) rotate(2deg);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* 4. Sub-Status Box Subtle Depth Tweaks */
    .info-box:hover .status-panel,
    .info-box:focus-within .status-panel {
        background-color: #051411 !important; /* Drops to a slightly deeper dark background tone */
        border-color: rgba(255, 255, 255, 0.04);
    }

/* 5. Live Portal Network Breathing Pulse Loop */
.dot-green {
    animation: liveNetworkPulse 2s infinite ease-in-out;
}

@keyframes liveNetworkPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }

    70% {
        transform: scale(1.25);
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* 6. Action Button Micro-Interactions */
.btn-card-action:focus {
    outline: 2px solid #ffb800;
    outline-offset: 3px;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

    .btn-card-action:hover .arrow,
    .btn-card-action:focus .arrow {
        transform: translateX(5px); /* Smooth layout arrow slide */
    }



/*    Citizen aside Dashboard*/
.searchlist {
    margin-top: 0 !important;
    left: auto !important;
}

/* Option A: Make the path explicit */
.top-bar-brand img.logo-img {
    width: 220px !important;
    height: auto;
}


/* Tablet breakpoint rule scaling */
@media (max-width: 768px) {
    .top-bar-brand img.logo-img {
        width: 220px !important;
        height: auto;
    }
}

/* Mobile breakpoint rule scaling */
@media (max-width: 576px) {
    .top-bar-brand .logo-img {
        width: 120px;
    }
}

/* Ajax loading panel layout definitions */
.ajax-loading {
    display: none;
    box-shadow: 10px 10px 5px #888888;
    z-index: 99999;
}

.ajax-loading-body {
    padding-left: 30px;
    padding-right: 30px;
}

.ajax-loading-img {
    margin-bottom: 10px;
}

/* Ajax backdrop setup */
.ajax-backdrop {
    background-color: rgb(0, 0, 0);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
    opacity: 0.4;
    display: none;
}

/* Preview image rules */
.preview-image {
    max-height: 150px;
}

/* Ajax loading display states toggled via jQuery plugin triggers */
.ajax-loading-visible {
    display: block;
    top: 50%;
    left: 50%;
    position: fixed;
}

.ajax-backdrop-visible {
    display: block;
}

/* Grade warning icon rules */
.grade-warning-icon {
    font-size: 30px;
}

/* Payment redirect message layout box */
.redirect-payment-msg {
    /* Custom rules can be safely appended here */
}


/*Remove Inline Css */
/* Header */
.header-relative {
    position: relative;
}

/* Logo */
.logo-img {
    width: 220px;
}

/* Instructions section background */
.section-bg-instructions {
    background-image: url('/content/img/sikkim_bgc.png');
    background-repeat: no-repeat;
    background-position: right bottom;
}

/* SSO section background */
.section-bg-sso {
    background-image: url('/content/img/sikkim_bgc.png');
    background-repeat: no-repeat;
}

/* Footer background */
.footer-bg {
    background-image: url('/content/genlib/images/background/bg2.png');
    background-size: contain;
}

/* Testimonial border */
.testimonial-pic-border {
    border: 2px dashed #808080;
}


/*Card Style*/
/* Icon container */
.icon-square-container {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

/* Timeline badge */
.timeline-badge {
    font-size: 11px;
    border-radius: 8px;
    letter-spacing: 0.2px;
}

/* Card title */
.card-heading-title {
    font-size: 20px;
}

/* Card description */
.card-description {
    font-size: 13px;
    line-height: 1.5;
}

/* Bottom trigger label */
.trigger-label {
    font-size: 13px;
}

/* Bottom trigger arrow */
.trigger-arrow {
    font-size: 15px;
}


.layout-gen-logout {
    cursor: pointer !important;
    width: 100%; /* Ensures it takes up the full dropdown width */
    text-align: left; /* Aligns text to the left like a normal menu item */
    background: transparent; /* Removes default button gray background */
    border: none; /* Removes default button border */
    /* Add your custom padding here (Top/Bottom, Left/Right) */
    padding: 0.5rem 1.5rem !important;
}


/* Optional: Fixes it for all nav-link buttons globally */
button.nav-link {
    cursor: pointer;
}

.img-illustration {
    max-width: 300px;
}

.td-action {
    width: 140px;
}


/* Ensures static breadcrumb items don't look clickable */
.noclick-label {
    cursor: default;
    transition: color 0.15s ease-in-out; /* Smoothly transitions the color change */
}

    .noclick-label:hover,
    .noclick-label:focus {
        color: var(--bs-gray-600) !important;
        outline: none; /* Cleans up default browser focus borders */
    }

.modal-dialog-top {
    margin-top: 20px; /* distance from top */
}

.large-checkbox {
    transform: scale(1.5);
    cursor: pointer;
}


/*footer Links*/
.footer-links-design {
    list-style: none;
}

/*Hover Effect Nav Bar*/
.nav-design li {
    position: relative;
}

    .nav-design li:hover .nav-link {
        color: #009c7b !important; /* Changes the text color to orange when hovered */
    }

    .nav-design li::before {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #009c7b;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s ease;
    }

.nav-design li:hover::before {
    transform: scaleX(1);
}

.nav-design li.active::before {
    transform: scaleX(1);
}


/*Hover Effect Footer Nav Bar*/
.footer-links-design li {
    position: relative;
    display: inline-block;
    display: block;
    width: fit-content;
}


.footer-links-design li::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}


.footer-links-design li:hover::before {
    transform: scaleX(1);
}

.footer-links-design li.active::before {
    transform: scaleX(1);
}



/*footer link*/
.policy-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
/*    border: 1px solid #e2e4e8;*/
    border-radius: 6px;
    padding: 48px 56px;
}

    .policy-card h1 {
        font-size: 26px;
/*        font-weight: 800;*/
        color: #1a1a1a;
        margin: 0 0 20px 0;
    }

        .policy-card h1:not(:first-child) {
            margin-top: 44px;
        }

    .policy-card p {
        font-size: 16px;
        line-height: 1.7;
        color: #6b6f76;
        margin: 0 0 12px 0;
    }

@media (max-width: 700px) {
    .policy-card {
        padding: 28px 22px;
    }

        .policy-card h1 {
            font-size: 24px;
        }

        .policy-card p {
            font-size: 15px;
        }
}


/*footer*/
.note-card {
    /* Background and Border styling */
    background-color: #fcfcfc;
    border-left: 4px solid #b57a3d; /* Subtle brownish-gold left accent border */
    /* Layout and Spacing */
    padding: 12px 20px;
    margin: 15px 0;
    /* Typography matching the image */
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

    .note-card strong {
        color: #124c3a; /* Dark forest green color for the "Note:" text */
        font-weight: bold;
    }


/* Base Container Framework */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2D3748;
    line-height: 1.65;
}

/* Header & Typography Blocks */
.policy-header {
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

    .policy-header h1 {
        font-size: 32px;
        color: #1A202C;
        margin: 0 0 12px 0;
    }

.policy-intro {
    font-size: 16px;
    color: #4A5568;
    margin: 0;
}

.legal-notice {
    font-size: 14.5px;
    color: #4A5568;
    margin-bottom: 28px;
    text-align: justify;
}

/* Structural Layout Sections */
.policy-section {
    margin-bottom: 35px;
}

    .policy-section h2 {
        font-size: 22px;
        color: #1A202C;
        margin: 0 0 16px 0;
        font-weight: 600;
        border-left: 4px solid #124c3a; /* Corporate Forest Green Accent */
        padding-left: 12px;
    }

.policy-card-body {
    padding-right: 16px;
}

/* Unified Lists Engine */
.policy-list, .guidelines-list {
    margin: 12px 0 0 0;
    padding-left: 24px;
}

    .policy-list li, .guidelines-list li {
        margin-bottom: 12px;
        color: #2D3748;
    }

        .policy-list li:last-child, .guidelines-list list li:last-child {
            margin-bottom: 0;
        }

    .guidelines-list li {
        font-size: 14px;
        color: #4A5568;
    }

.highlighted-list li strong {
    color: #111111;
}

/* Alert Boxes & Status Containers */
.policy-card {
    border-radius: 8px;
    padding: 24px;
    border: 1px solid transparent;
}

.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .card-title-wrapper h2 {
        margin: 0;
        font-size: 20px;
    }

/* Color Status Variations */
.card-alert {
    background-color: #FFF5F5;
    border-color: #FED7D7;
}

    .card-alert h2 {
        color: #C53030;
    }

.icon-danger {
    background: #FED7D7;
    color: #C53030;
}

.card-success {
    background-color: #F0FDF4;
    border-color: #DCFCE7;
}

    .card-success h2 {
        color: #166534;
    }

.icon-success {
    background: #DCFCE7;
    color: #166534;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Fee Matrix Grid */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: 6px;
    border: 1px solid #CBD5E1;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
    background-color: #FFFFFF;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

    .pricing-table th {
        background-color: #0F3A4B; /* Dark Teal Accent */
        color: #FFFFFF;
        font-weight: 600;
        padding: 12px 14px;
        border: 1px solid #0F3A4B;
        vertical-align: middle;
    }

    .pricing-table td {
        padding: 10px 14px;
        border: 1px solid #E2E8F0;
        color: #334155;
    }

    .pricing-table .category-header-row td {
        background-color: #F8FAFC;
        font-weight: bold;
        color: #0F3A4B;
        border-top: 2px solid #CBD5E1;
    }

    .pricing-table .standalone-row td {
        font-weight: bold;
        color: #0F3A4B;
        background-color: #FDFDFD;
    }

        .pricing-table .standalone-row td.amount-cell {
            font-weight: normal;
            color: #334155;
        }

.amount-cell {
    text-align: left;
    font-variant-numeric: tabular-nums;
}

.policy-terms-wrapper {
    margin-top: 28px;
}

/* Internal Workflow Steps Framework */
.process-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
}

    .process-card h2 {
        margin: 0 0 20px 0;
        font-size: 20px;
        color: #1A202C;
    }

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-item {
    border-left: 3px solid #4A5568;
    padding-left: 16px;
}

    .process-item h3 {
        margin: 0 0 4px 0;
        font-size: 16px;
        color: #2D3748;
    }

    .process-item p {
        margin: 0;
        color: #4A5568;
    }

/* Footnote & Alert Highlights */
.important-caution-card {
    background-color: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 4px solid #D97706; /* Warning Amber Accent Stripe */
    padding: 20px;
    border-radius: 4px;
}

    .important-caution-card p {
        margin: 0;
        font-size: 14px;
        color: #451A03;
        text-align: justify;
    }

    .important-caution-card strong {
        color: #B45309;
        font-weight: bold;
    }

.note-card-footer {
    background-color: #fcfcfc;
    border-left: 4px solid #b57a3d; /* Brown Gold Graphic Strip */
    padding: 16px 20px;
    margin-top: 40px;
    border-radius: 0 4px 4px 0;
}

    .note-card-footer p {
        margin: 0;
        font-size: 15px;
        color: #2D3748;
    }

    .note-card-footer strong {
        color: #124c3a;
        font-weight: bold;
    }

