/**
 * GHVM academic downloads — sample papers, book list, exam date sheets
 */
.ghvm-docs {
    --ghvm-doc-teal: var(--color-primary, #1ab69d);
    --ghvm-doc-teal-deep: #0f8f7a;
    --ghvm-doc-coral: var(--color-secondary, #ee4a62);
    --ghvm-doc-ink: var(--color-heading, #181818);
    --ghvm-doc-muted: #6b7385;
    --ghvm-doc-stage: #eef7f5;
    --ghvm-doc-ease: cubic-bezier(0.22, 1, 0.36, 1);
    background:
        radial-gradient(ellipse 70% 45% at 0% 0%, rgba(26, 182, 157, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 5%, rgba(238, 74, 98, 0.05), transparent 50%),
        #fafcfb;
    padding: 48px 0 80px !important;
    font-family: var(--font-primary);
}

.ghvm-docs .container {
    max-width: 1100px;
}

.ghvm-docs-head {
    text-align: center;
    margin-bottom: 28px;
}

.ghvm-docs-head .title {
    margin: 0 0 10px;
    font-family: var(--font-secondary);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--ghvm-doc-ink);
    line-height: 1.2;
}

.ghvm-docs-head .ghvm-docs-lead {
    margin: 0 auto;
    max-width: 540px;
    color: var(--ghvm-doc-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ghvm-docs-panel {
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 24px;
    padding: 28px 28px 32px;
    box-shadow: 0 18px 44px rgba(20, 32, 43, 0.07);
}

.ghvm-docs-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 26px;
}

.ghvm-docs-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--ghvm-doc-stage);
    color: var(--ghvm-doc-ink);
    font-size: 13px;
    font-weight: 650;
    border: 1px solid rgba(26, 182, 157, 0.12);
}

.ghvm-docs-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ghvm-doc-teal), var(--ghvm-doc-teal-deep));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.ghvm-docs-fields {
    display: grid;
    gap: 16px;
    margin-bottom: 8px;
}

.ghvm-docs-fields.is-two {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
    .ghvm-docs-fields.is-two {
        grid-template-columns: 1fr;
    }

    .ghvm-docs-panel {
        padding: 20px 16px 24px;
        border-radius: 18px;
    }
}

.ghvm-docs-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ghvm-doc-ink);
    letter-spacing: 0.01em;
}

.ghvm-docs-field .form-select,
.ghvm-docs select.form-select {
    height: 52px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(20, 32, 43, 0.12) !important;
    background-color: #fff !important;
    color: var(--ghvm-doc-ink) !important;
    font-size: 15px !important;
    font-weight: 550;
    padding: 0 16px !important;
    box-shadow: 0 2px 8px rgba(20, 32, 43, 0.03);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ghvm-docs-field .form-select:focus,
.ghvm-docs select.form-select:focus {
    border-color: rgba(26, 182, 157, 0.55) !important;
    box-shadow: 0 0 0 4px rgba(26, 182, 157, 0.12) !important;
    outline: none;
}

.ghvm-docs-result {
    margin-top: 22px;
    min-height: 120px;
}

.ghvm-docs-empty {
    text-align: center;
    padding: 36px 20px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(238, 247, 245, 0.9), rgba(255, 255, 255, 0.9));
    border: 1px dashed rgba(26, 182, 157, 0.28);
}

.ghvm-docs-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ghvm-doc-teal);
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(15, 143, 122, 0.12);
}

.ghvm-docs-empty h5 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 750;
    color: var(--ghvm-doc-ink);
}

.ghvm-docs-empty p {
    margin: 0;
    color: var(--ghvm-doc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ghvm-docs-loading {
    text-align: center;
    padding: 32px 16px;
    color: var(--ghvm-doc-muted);
}

.ghvm-docs-loading .spinner-border {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--ghvm-doc-teal);
    border-width: 0.2em;
}

.ghvm-docs-loading p {
    margin: 12px 0 0;
    font-weight: 650;
    font-size: 14px;
}

/* Result cards */
.ghvm-doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .ghvm-doc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ghvm-doc-grid {
        grid-template-columns: 1fr;
    }
}.ghvm-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.ghvm-doc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.ghvm-doc-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 20px 44px rgba(16, 185, 129, 0.15);
}

/* Full Edge-to-Edge Document Cover Showcase Banner */
.ghvm-doc-preview-hero {
    position: relative;
    height: 205px;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden !important;
}

.ghvm-doc-preview-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #14b8a6 100%);
    z-index: 15;
}

.ghvm-doc-type-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ef5350;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 83, 80, 0.35);
    z-index: 20;
}

/* Edge-to-Edge Clean Document Preview Frame */
.ghvm-doc-thumb-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: none;
    box-shadow: none;
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.ghvm-doc-thumb-frame iframe,
.ghvm-pdf-embed-thumb {
    position: absolute;
    top: 0;
    left: -6px !important;
    width: calc(100% + 30px) !important;
    height: calc(100% + 24px) !important;
    margin-right: -24px !important;
    margin-bottom: -24px !important;
    z-index: 2;
    border: 0 !important;
    outline: none !important;
    background: #ffffff;
    display: block !important;
    overflow: hidden !important;
    object-fit: cover !important;
    object-position: top center !important;
    pointer-events: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: auto !important;
}

.ghvm-doc-preview-hero::-webkit-scrollbar,
.ghvm-doc-thumb-frame::-webkit-scrollbar,
.ghvm-pdf-embed-thumb::-webkit-scrollbar,
.ghvm-doc-thumb-frame iframe::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.ghvm-pdf-canvas-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 3;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    pointer-events: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Mobile Responsiveness for iPhone & Touch Devices */
@media (max-width: 767px) {
    .ghvm-doc-preview-hero {
        height: 185px;
        width: 100%;
        background: #ffffff;
        overflow: hidden !important;
    }
    
    .ghvm-doc-thumb-frame {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        overflow: hidden !important;
        background: #ffffff;
    }
    
    .ghvm-pdf-embed-thumb {
        position: absolute !important;
        top: 0 !important;
        left: -6px !important;
        display: block !important;
        width: calc(100% + 30px) !important;
        height: calc(100% + 24px) !important;
        margin-right: -24px !important;
        margin-bottom: -24px !important;
        object-fit: cover !important;
        object-position: top center !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    .ghvm-pdf-canvas-thumb {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top center !important;
        pointer-events: none !important;
        z-index: 3 !important;
        border: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
}

/* Fallback Document Page Graphic */
.ghvm-doc-fallback-sheet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.ghvm-doc-fallback-head {
    background: #e11d48;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.ghvm-doc-fallback-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ghvm-doc-fallback-line {
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
}

.ghvm-doc-fallback-line.w-90 { width: 90%; }
.ghvm-doc-fallback-line.w-100 { width: 100%; }
.ghvm-doc-fallback-line.w-70 { width: 70%; }
.ghvm-doc-fallback-line.w-50 { width: 50%; background: #e11d48; opacity: 0.6; }

/* Card Content Body */
.ghvm-doc-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
}

.ghvm-doc-card:hover .ghvm-doc-card-badge {
    transform: translateY(-2px) scale(1.05);
}

/* Realistic Mini 3D PDF Paper Sheet Document Preview Thumbnail */
.ghvm-pdf-sheet {
    position: relative;
    width: 38px;
    height: 48px;
    background: #ffffff;
    border-radius: 4px 10px 4px 4px;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.18), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f43f5e;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Folded Paper Top-Right Corner */
.ghvm-pdf-sheet::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ffe4e6 45%, #e11d48 50%);
    border-bottom-left-radius: 3px;
    box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.12);
}

/* Red PDF Top Header Banner */
.ghvm-pdf-sheet-head {
    background: #e11d48;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 900;
    text-align: center;
    padding: 3px 0 2px;
    letter-spacing: 0.5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1;
}

/* Document Skeleton Preview Lines */
.ghvm-pdf-sheet-body {
    padding: 6px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 3.5px;
}

.ghvm-pdf-line {
    height: 2.5px;
    background: #cbd5e1;
    border-radius: 2px;
}

.ghvm-pdf-line.w-80 { width: 80%; }
.ghvm-pdf-line.w-100 { width: 100%; }
.ghvm-pdf-line.w-60 { width: 60%; background: #e11d48; opacity: 0.7; }

/* PDF Preview Modal Lightbox */
.ghvm-pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 19, 41, 0.78);
    backdrop-filter: blur(8px);
    padding: 20px;
    animation: ghvmFadeIn 0.25s ease;
}

.ghvm-pdf-modal.is-active {
    display: flex;
}

.ghvm-pdf-modal-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 88vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ghvm-pdf-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: #0f172a;
    color: #ffffff;
}

.ghvm-pdf-modal-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ghvm-pdf-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghvm-pdf-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ghvm-pdf-modal-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.ghvm-pdf-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s ease;
}

.ghvm-pdf-modal-close:hover {
    background: #ef5350;
    color: #ffffff;
}

.ghvm-pdf-modal-body {
    flex: 1;
    width: 100%;
    height: 100%;
    background: #525659;
}

.ghvm-pdf-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ghvm-doc-card h5 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    text-transform: uppercase;
    word-break: break-word;
    letter-spacing: -0.01em;
}

.ghvm-doc-card .ghvm-doc-meta {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ghvm-doc-card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghvm-doc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.ghvm-doc-btn.is-view {
    background: #ef5350;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(239, 83, 80, 0.28);
}

.ghvm-doc-btn.is-view:hover {
    background: #e53935;
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(239, 83, 80, 0.42);
    transform: translateY(-2px);
}

.ghvm-doc-btn.is-download {
    background: #10b981;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
}

.ghvm-doc-btn.is-download:hover {
    background: #059669;
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.42);
    transform: translateY(-2px);
}

.ghvm-doc-card-actions .edu-btn.btn-secondary,
.ghvm-doc-card-actions .edu-btn:first-child {
    background: #ef5350 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(239, 83, 80, 0.28) !important;
    border-radius: 999px !important;
    height: 44px !important;
    line-height: 44px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.ghvm-doc-card-actions .edu-btn.btn-secondary:hover,
.ghvm-doc-card-actions .edu-btn:first-child:hover {
    background: #e53935 !important;
    box-shadow: 0 8px 22px rgba(239, 83, 80, 0.42) !important;
    transform: translateY(-2px) !important;
}

.ghvm-doc-card-actions .edu-btn:last-child:not(:first-child) {
    background: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28) !important;
    border-radius: 999px !important;
    height: 44px !important;
    line-height: 44px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.ghvm-doc-card-actions .edu-btn:last-child:not(:first-child):hover {
    background: #059669 !important;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.42) !important;
    transform: translateY(-2px) !important;
}

.ghvm-doc-alert {
    text-align: center;
    padding: 28px 18px;
    border-radius: 16px;
    background: #fff8eb;
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #92400e;
    font-weight: 600;
}

/* Premium CBSE Portal Hero Banner */
.ghvm-cbse-card {
    position: relative;
    background: linear-gradient(135deg, #0b1329 0%, #112240 45%, #0a3641 100%) !important;
    border-radius: 24px !important;
    padding: 38px 44px !important;
    margin-bottom: 40px !important;
    color: #ffffff !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(11, 19, 41, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}

.ghvm-cbse-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 26px 60px rgba(15, 182, 157, 0.25), 0 0 0 1px rgba(45, 212, 191, 0.3) inset !important;
}

/* Background Glowing Orbs & Patterns */
.ghvm-cbse-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(26, 182, 157, 0.35) 0%, rgba(20, 184, 166, 0.05) 50%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}

.ghvm-cbse-card::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(30px);
}

.ghvm-cbse-card-body {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.ghvm-cbse-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 182, 157, 0.18) !important;
    border: 1px solid rgba(45, 212, 191, 0.35) !important;
    color: #2dd4bf !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    margin-bottom: 16px !important;
    backdrop-filter: blur(8px);
}

.ghvm-cbse-tag .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2dd4bf;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #2dd4bf;
    animation: ghvm-pulse 2s infinite;
}

@keyframes ghvm-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(45, 212, 191, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.ghvm-cbse-card-title {
    color: #ffffff !important;
    font-family: var(--font-secondary, 'Plus Jakarta Sans', sans-serif) !important;
    font-size: clamp(22px, 2.8vw, 32px) !important;
    font-weight: 800 !important;
    margin: 0 0 12px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ghvm-cbse-card-desc {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    margin: 0 0 20px !important;
    line-height: 1.65 !important;
    font-weight: 450 !important;
}

/* Feature Chips Inside Banner */
.ghvm-cbse-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.ghvm-cbse-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #e2e8f0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 5px 12px !important;
    border-radius: 8px !important;
}

.ghvm-cbse-chip i {
    color: #2dd4bf !important;
    font-size: 14px;
}

.ghvm-cbse-card-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.ghvm-cbse-action-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-weight: 750 !important;
    font-size: 16px !important;
    padding: 16px 32px !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.4) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.ghvm-cbse-action-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.5) !important;
}

.ghvm-cbse-action-btn i {
    font-size: 18px !important;
    transition: transform 0.2s ease !important;
}

.ghvm-cbse-action-btn:hover i {
    transform: translateX(5px) !important;
}

.ghvm-cbse-portal-sub {
    font-size: 12px !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 991px) {
    .ghvm-cbse-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 30px 24px !important;
    }
    .ghvm-cbse-card-action {
        width: 100% !important;
        align-items: flex-start !important;
    }
    .ghvm-cbse-action-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}


