
:root {
    --bg-page: #f0fdf4;        
    --surface: #f0fdf4;        
    --text-main: #0f172a;      
    --text-mute: #64748b;      
    --accent: #10b981;         
    --accent-glow: rgba(16, 185, 129, 0.15);
    --primary-pop: #ef4444;    
    --border-light: #f1f5f9;   
    --shadow-ambient: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --page-gutter: 20px;
}
@media (max-width: 600px) {
    :root {
        --page-gutter: 15px;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Mukta Malar', sans-serif;
}
body {
    background: var(--bg-page);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden; 
    width: 100%;
}
.hidden { display: none !important; }
.pro-header {
    background: var(--bg-page); 
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}
.pro-top-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px var(--page-gutter);
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative; 
    gap: 15px;
}
@media (max-width: 768px) {
    .pro-top-row {
        flex-direction: row; 
        padding: 10px var(--page-gutter);
        gap: 10px;
        justify-content: center;
    }
    .pro-title { font-size: 0.95rem; }
    .ai-subtitle { font-size: 0.6rem; }
}
.pro-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pro-logo-wrap {
    position: relative;
    width: 65px;
    height: 65px;
    padding: 2px;
    overflow: hidden;
}
.pro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pro-logo-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: proSweep 3s infinite ease-in-out;
}
@keyframes proSweep {
    to { left: 100%; }
}
.pro-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    font-weight: 800;
    color: #1e3a8a; 
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.pro-title-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    margin: 0;
}
@media (min-width: 769px) {
    .pro-title-group {
        margin-right: 65px; 
    }
}
.ai-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    text-shadow: none !important; 
}
.pro-election-note {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-top: 5px;
    opacity: 0.9;
    letter-spacing: 0.2px;
}
.pro-expert-row {
    background: transparent;
    padding: 5px var(--page-gutter); 
    display: flex;
    justify-content: center;
    perspective: 2000px;
    z-index: 1000;
}
.liquid-glass-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.35); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 12px 15px;
    cursor: default;
}
@media (max-width: 600px) {
    .liquid-glass-card {
        padding: 8px 10px;
        border-radius: 12px;
        max-width: 360px !important; 
        width: 95%;
        margin: 0 auto;
    }
    .hide-mobile { display: none !important; }
}
.liquid-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1),
                0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(30, 58, 138, 0.2);
}
.liquid-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        45deg,
        rgba(30, 58, 138, 0.03),
        rgba(16, 185, 129, 0.05),
        rgba(30, 58, 138, 0.03)
    );
    background-size: 200% 200%;
    animation: liquidMove 12s infinite ease-in-out;
    z-index: 0;
}
@keyframes liquidMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.fusion-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
}
@media (max-width: 600px) {
    .fusion-content {
        gap: 12px;
    }
}
.fusion-photo-clip {
    position: relative;
    width: 65px; height: 65px;
    flex-shrink: 0;
}
.abbas-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
}
@media (max-width: 480px) {
    .fusion-photo-clip {
        width: 50px;
        height: 50px;
    }
}
.fusion-main-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 10px;
}
@media (max-width: 600px) {
    .fusion-content {
        gap: 8px;
        flex-direction: row-reverse !important;
        align-items: center;
        justify-content: space-between;
    }
    .fusion-photo-clip {
        width: 80px !important; 
        height: 80px !important;
    }
    .fusion-main-info {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
        flex: 1;
    }
    .fusion-links-v2 {
        display: flex !important;
        flex-direction: row !important; 
        gap: 5px !important;
        flex-wrap: nowrap !important;
        width: 100%;
    }
    .cyber-btn, .btn-about-him {
        padding: 5px 6px !important;
        font-size: 0.6rem !important;
        white-space: nowrap;
        flex: 1;
        justify-content: center;
    }
    .cyber-social-links {
        display: none !important;
    }
    .tech-tag {
        font-size: 0.6rem;
        padding: 2px 10px;
    }
    .fusion-name-v2 {
        font-size: 1.1rem;
    }
}
@media (max-width: 400px) {
    .fusion-main-info {
        align-items: center;
        text-align: center;
    }
    .fusion-meta-tech {
        align-items: center;
    }
    .fusion-links-v2 {
        flex-direction: column;
        gap: 10px;
    }
}
.fusion-meta-tech {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0; 
}
.tech-tag {
    position: absolute;
    top: -10px; 
    left: 50%;
    transform: translateX(-50%); 
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    color: white;
    padding: 2px 18px;
    font-size: 0.75rem; 
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 0 6px 6px; 
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    z-index: 10;
    white-space: nowrap;
}
.fusion-name-v2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 5px 0 0 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e3a8a, #059669); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.fusion-desc-v2 {
    font-size: clamp(0.65rem, 3vw, 0.75rem);
    color: #1e3a8a;
    font-weight: 800;
    margin-top: 1px;
}
.fusion-links-v2 {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 6px; 
}
.cyber-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #059669, #10b981);
    background-size: 200% auto;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cyber-btn i {
    font-size: 1.1rem; 
}
.cyber-btn .frown-icon {
    display: inline-block;
}
.cyber-btn .smile-icon {
    display: none;
}
.cyber-btn:hover .frown-icon {
    display: none;
}
.cyber-btn:hover .smile-icon {
    display: inline-block;
    animation: smilePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes smilePop {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    100% { transform: scale(1.1) rotate(0); opacity: 1; }
}
.cyber-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-about-him {
    text-decoration: none;
    background: rgba(30, 58, 138, 0.08); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e40af !important; 
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(30, 64, 175, 0.4); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-about-him:hover {
    background: #1e40af;
    color: #fff !important;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}
.cyber-social-links {
    display: flex;
    gap: 12px;
}
.cyber-social-links a {
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
}
.cyber-social-links a.social-fb { color: #1877F2; }
.cyber-social-links a.social-wa { color: #25D366; }
.cyber-social-links a.social-mail { color: #EA4335; }
.cyber-social-links a:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-2px); 
}
.corner {
    position: absolute;
    width: 8px; height: 8px;
    border: 2px solid rgba(30, 58, 138, 0.1);
    z-index: 3;
}
.corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
@media (max-width: 600px) {
    .profile-fusion-card { flex-direction: column; text-align: center; padding: 15px; }
}
.prompt-engine {
    z-index: 100 !important; 
}
.pro-slogan-bar {
    padding: 10px 20px; 
    text-align: center;
    background: transparent; 
}
.pro-slogan-bar p {
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.4px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: sloganColorShift 4s infinite alternate ease-in-out;
}
@keyframes sloganColorShift {
    0% { color: #1e3a8a; } 
    50% { color: #2563eb; } 
    100% { color: #0891b2; } 
}
.slogan-icon {
    font-size: 1.3rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}
.pro-top-right {
    position: absolute;
    right: var(--page-gutter);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
@media (max-width: 768px) {
    .pro-top-right {
        right: 15px;
        top: 25px; 
        transform: none;
    }
}
body.lang-ta .en-string { display: none !important; }
body.lang-en .ta-string { display: none !important; }
.pro-lang-toggle {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.8rem;
}
.pro-lang-toggle .active-lang {
    color: #1e3a8a;
}
@media (max-width: 900px) {
    .pro-title { font-size: 1.2rem; }
    .pro-expert-bar { gap: 15px; }
}
@media (max-width: 600px) {
    .pro-top-row { flex-direction: column; gap: 15px; text-align: center; }
    .pro-brand { flex-direction: column; }
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
}
.logo-box i { font-size: 1.8rem; }
.logo {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}
.logo span { color: var(--text-mute); font-weight: 400; }
.btn-toggle {
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-mute);
}
.active-lang { color: var(--accent); }
.search-mode-selector {
    padding: 20px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: transparent;
}
.selector-title {
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}
.selector-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 40px; height: 3px;
    background: var(--accent);
    transform: translateX(-50%);
    border-radius: 2px;
}
.mode-tabs {
    position: relative; 
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    justify-content: center;
}
.pro-election-note {
    font-size: 0.8rem;
    color: #1e40af; 
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15); 
    padding: 8px 18px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(30, 64, 175, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.pro-disclaimer-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 15px;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.78rem;
    line-height: 1.6;
}
.disclaimer-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.disclaimer-header i {
    font-size: 1.1rem;
    color: #ffd700; 
    margin-top: 3px;
}
.AI-pulse {
    animation: infoPulse 2s infinite;
}
@keyframes infoPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}
.author-tag {
    color: #ffd700 !important;
    font-weight: 800;
    text-decoration: underline;
}
@media (max-width: 630px) {
    .mode-tabs {
        border-radius: 20px;
        padding: 10px;
    }
    .mode-tab-indicator {
        display: block !important;
        transition: all 0.45s cubic-bezier(0.5, 1.6, 0.4, 0.7);
    }
}
.mode-tab-indicator {
    position: absolute;
    top: 6px; 
    left: 6px;
    height: calc(100% - 12px);
    background: rgba(16, 185, 129, 0.85); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    transition: all 0.55s cubic-bezier(0.5, 1.6, 0.4, 0.7); 
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.mode-tab {
    position: relative;
    z-index: 2; 
    padding: 10px 22px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--text-mute);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px; 
}
.mode-tab i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.mode-tab.active i {
    opacity: 1;
    transform: scale(1.1);
}
.mode-tab:hover {
    color: var(--accent);
}
.mode-tab.active {
    background: transparent; 
    color: white;
}
.search-mode-group {
    display: none; 
    width: 100%;
    animation: fadeInMode 0.5s ease;
    padding: 10px 0 30px 0;
}
.search-mode-group.active-group {
    display: flex;
    justify-content: center;
}
.ghost-dock {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}
.ghost-dock:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}
.dock-cluster {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dock-lbl {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.ghost-select {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}
.results-container {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.search-result-title {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 4px solid var(--accent);
    line-height: 1.2;
}
.stats-overview-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stats-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .district-span {
        grid-column: span 1;
    }
}
.stats-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    max-width: 100%;
    overflow: hidden;
}
.stats-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.district-span {
    grid-column: span 2;
}
.chart-container {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 300px;
}
.district-chart-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
canvas {
    max-width: 100% !important;
}
.district-chart-viewport::-webkit-scrollbar {
    height: 8px;
}
.district-chart-viewport::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}
.district-chart-viewport::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}
.scrollable-chart-wrapper {
    width: 2800px; 
    height: 400px;
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: 1fr; }
    .district-span { grid-column: span 1; }
    .scrollable-chart-wrapper { height: 350px; }
}
.results-viewport {
    width: 100%;
    max-height: 850px; 
    overflow-y: auto;
    padding: 20px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05); 
}
.results-viewport::-webkit-scrollbar {
    width: 6px;
}
.results-viewport::-webkit-scrollbar-track {
    background: transparent;
}
.results-viewport::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 20px;
    border: 3px solid transparent;
}
.about-me-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: transparent;
    margin-top: 40px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}
.about-card {
    max-width: 1000px;
    width: 100%;
    padding: 40px;
}
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-photo {
    flex-shrink: 0;
    width: 180px; height: 180px;
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-details { flex: 1; }
.about-details h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    font-weight: 800;
    margin-bottom: 15px;
}
.about-bio {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
    font-weight: 500;
}
.about-stack {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.about-stack .badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}
.about-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}
.about-cta {
    background: var(--accent) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3) !important;
}
.about-socials {
    display: flex;
    gap: 15px;
    font-size: 1.3rem;
}
.about-socials a {
    color: #64748b;
    transition: all 0.3s ease;
}
.about-socials a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .about-content { flex-direction: column; text-align: center; }
    .about-stack { justify-content: center; }
    .about-contact { flex-direction: column; }
    .results-viewport { padding: 15px; }
}
.ghost-select:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
}
.prompt-engine {
    padding: 30px 20px 30px 20px; 
    position: relative;
    z-index: 9999; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.search-instruction {
    font-size: 1rem;
    color: #1e3a8a;
    font-weight: 700;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}
.prompt-pill-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    background: var(--surface);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0; 
    transition: all 0.4s ease;
}
.prompt-pill-container:focus-within {
    box-shadow: 0 0 0 4px var(--accent-glow), var(--shadow-ambient);
    transform: translateY(-2px);
}
.ai-sparkle {
    color: var(--accent);
    font-size: 1.4rem;
    padding-left: 10px;
    animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow { 0%,100% {opacity:0.6;} 50% {opacity:1; text-shadow: 0 0 15px var(--accent);} }
.prompt-input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px 12px;
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    font-weight: 600;
    outline: none;
    color: var(--text-main);
    width: 100%;
}
.prompt-input::placeholder { color: var(--text-mute); font-weight: 400; opacity: 0.7; }
.prompt-action {
    background: var(--accent);
    color: white;
    border: none;
    width: clamp(40px, 10vw, 45px); 
    height: clamp(40px, 10vw, 45px);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
    flex-shrink: 0;
}
.suggest-flyout {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    right: 0;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border-light);
}
.suggest-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: background 0.2s;
}
.suggest-item:hover { 
    background: rgba(30, 58, 138, 0.05); 
    border-left: 4px solid var(--accent); 
    padding-left: 16px; 
}
.suggest-item:hover .sug-name {
    color: #1e3a8a;
}
.sug-name { font-weight: 800; font-size: 1.1rem; color: #0f172a; }
.sug-meta { 
    font-size: 0.88rem; 
    color: #1e3a8a; 
    font-weight: 800; 
    margin-top: 4px; 
    letter-spacing: 0.3px;
}
.dashboard-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}
.stat-card h3 {
    color: var(--text-mute);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.st-number { font-size: 2.5rem; font-weight: 800; }
.chart-container { height: 80px; width: 100%; }
.extremes-box p { margin-bottom: 8px;font-size:0.95rem; }
.extremes-box b { color: var(--primary-pop); }
.ghost-dock-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.ghost-dock {
    max-width: 100%;
    display: inline-flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    align-items: center;
    gap: 15px;
    background: rgba(251, 248, 242, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 30px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.ghost-dock::-webkit-scrollbar {
    display: none;
}
.dock-cluster {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dock-lbl {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ghost-select {
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 5px 8px;
    cursor: pointer;
    outline: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.ghost-select:focus, .ghost-select:hover { border-color: var(--accent); }
.ghost-select:disabled { opacity: 0.4; cursor: not-allowed; border-bottom: none !important; }
.dock-divider {
    width: 2px;
    height: 30px;
    background: var(--border-light);
    margin: 0 10px;
}
@media (max-width: 900px) {
    .ghost-dock { flex-direction: column; align-items: stretch; border-radius: 20px; }
    .dock-divider { width: 100%; height: 2px; margin: 5px 0; }
    .dock-cluster { flex-direction: column; align-items: flex-start; }
    .ghost-select { border-bottom: 1px solid var(--border-light); width: 100%; }
}
.candidate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: clamp(10px, 3vw, 20px);
    margin-top: 20px;
    perspective: 1200px;
}
@media (max-width: 600px) {
    .candidate-grid {
        gap: 15px;
        padding: 10px;
    }
}
.glass-passport {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #6366f1 0px, #06b6d4 2px, #10b981 4px, #FFFFFF 4px);
    border-radius: 14px;
    padding: 0;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1.5px solid #e2e8f0;
    border-top: none; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    will-change: transform;
    overflow: hidden;
}
@media (hover: none) {
    .glass-passport {
        transform: none !important; 
    }
}
.glass-passport::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    z-index: 4;
    pointer-events: none;
    animation: topSheer 3s ease-in-out infinite;
}
@keyframes topSheer {
    0%   { left: -50%; }
    100% { left: 100%; }
}
.glass-passport:hover {
    z-index: 20;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}
.glass-passport:hover .photo-sheer-ring {
    transform: scale(1.25);
    transition: transform 0.3s ease;
}
.glass-passport::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(180px circle at var(--x, 50%) var(--y, 50%), rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.08) 40%, transparent 100%);
    z-index: -1;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.glass-passport:hover::after { opacity: 1; }
.pass-blur-body {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: 20px;
    padding-top: 10px; 
}
.passport-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pass-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    transform: translateZ(20px);
}
.photo-sheer-ring {
    position: relative;
    width: 78px; height: 78px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 166, 118, 0.25);
    background: #f0fdf4;
}
.sheer-spin {
    position: absolute;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 40%, #34d399 49%, #6ee7b7 51%, transparent 60%, transparent 100%);
    animation: rotateSheer 2.5s linear infinite;
}
@keyframes rotateSheer { 100% { transform: rotate(360deg); } }
.pass-photo-clip {
    position: relative; z-index: 2;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    border: 3px solid #fff;
}
.pass-photo-clip img { width: 100%; height: 100%; object-fit: cover; }
.pass-title { flex: 1; min-width: 0; }
.pass-title h2 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.3;
}
.party-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    padding: 5px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    max-width: 100%;
    white-space: normal;
    border-radius: 20px;
    margin-bottom: 6px;
    line-height: 1.4;
    text-align: center;
}
.pass-const {
    font-size: 0.82rem;
    color: #059669;
    font-weight: 700;
    margin-top: 2px;
    line-height: 1.4;
}
.location-icon {
    color: #10b981;
    margin-right: 3px;
}
.pass-body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    transform: translateZ(10px);
}
.pass-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pass-row i {
    width: 16px;
    margin-top: 2px;
    color: #10b981;
    font-size: 0.8rem;
    text-align: center;
    flex-shrink: 0;
}
.pr-text {
    flex: 1;
    font-size: 0.84rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}
.pr-text span {
    font-weight: 700;
    color: #64748b;
}
.ai-badge-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 50px;
    margin: 15px auto 0 auto;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    pointer-events: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.ai-badge-label::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: badgeSweep 3s infinite;
}
@keyframes badgeSweep {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}
.ai-badge-label i {
    color: #ffffff !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
}
.glass-passport:hover .ai-badge-label {
    opacity: 0;
    transform: translateY(-5px);
}
@media (max-width: 600px) {
    .ai-badge-label {
        font-size: 0.64rem;
        padding: 3px 10px;
    }
}
.pass-overlay-action {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: opacity 0.25s ease;
    border-radius: 14px;
}
.glass-passport:hover .pass-overlay-action {
    opacity: 1;
    pointer-events: auto;
}
.pass-overlay-action .btn-action {
    transform: scale(0.85) translateY(12px);
    opacity: 0;
}
.glass-passport:hover .pass-overlay-action .btn-action {
    animation: bounceInOverlay 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes bounceInOverlay {
    0%   { transform: scale(0.85) translateY(12px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.btn-action {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.btn-pdf {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: #fff;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-pdf-inner {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-pdf::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: none;
}
.btn-pdf:hover::after {
    animation: sweepSheer 1.2s ease forwards;
}
@keyframes sweepSheer {
    0%   { left: -100%; }
    100% { left: 150%; }
}
.btn-pdf:hover {
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
    transform: translateY(-3px);
}
.btn-disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    border: 1px solid #e2e8f0;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
}
.btn-ai {
    background: linear-gradient(135deg, rgba(213, 79, 98, 0.1), rgba(0, 166, 118, 0.1));
    color: var(--text-main);
    border: 1px solid rgba(0, 166, 118, 0.2);
    padding: 8px 16px; 
}
.btn-ai:hover {
    background: var(--surface);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}
.scroll-loader {
    text-align: center;
    padding: 30px;
    color: var(--text-mute);
    font-weight: 600;
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
}
.modal-content {
    background: #0f172a;
    width: 95%;
    max-width: 1100px;
    height: 96vh;
    margin: 2vh auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
}
.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(135deg, #1e1b4b, #0f172a);
}
.modal-header h3 {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 700;
    margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 80%;
}
.btn-close {
    background: none; border: none; cursor: pointer;
    font-size: 1.2rem; color: #94a3b8;
    padding: 6px 10px; border-radius: 8px;
    transition: all 0.2s;
}
.btn-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.modal-candidate-bar {
    display: flex;
    align-items: stretch;
    padding: 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .modal-candidate-bar {
        flex-direction: column !important;
        border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    }
    #mcb-name, #mcb-party, #mcb-addr-row, #mcb-rel-row, .mcb-ai-tagline {
        display: none !important;
    }
    .mcb-left {
        flex-direction: row !important;
        padding: 12px 15px !important;
        gap: 15px !important;
        align-items: center !important;
        width: 100% !important;
    }
    .mcb-photo-col {
        width: 65px !important;
    }
    .mcb-photo {
        width: 60px !important;
        height: 60px !important;
        border-width: 2px !important;
    }
    .mcb-details-col {
        flex: 1 !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 2px !important;
    }
    .mcb-zoom-label {
        display: block !important;
        font-size: 0.65rem;
        color: #10b981;
        font-weight: 800;
        text-transform: uppercase;
        margin-top: 4px;
        letter-spacing: 0.5px;
        opacity: 0.9;
    }
    .mcb-ai-panel {
        width: 100% !important;
        padding: 10px 15px !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.05) !important;
        text-align: center !important;
        align-items: center !important;
        background: rgba(99,102,241,0.05) !important;
    }
    .btn-pdf-ai {
        font-size: 0.8rem !important;
        padding: 8px 18px !important;
        margin: 0 auto !important;
    }
    .mcb-ai-desc {
        text-align: center !important;
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
    }
}
@media (max-width: 768px) {
    .modal-candidate-bar {
        flex-direction: column;
    }
}
.mcb-left {
    display: flex;
    align-items: center; 
    gap: 25px;
    padding: 12px 20px;
    flex: 1;
    min-width: 0;
}
@media (max-width: 600px) {
    .mcb-left {
        gap: 15px;
        padding: 15px;
    }
}
@media (max-width: 480px) {
    .mcb-left {
        flex-direction: row; 
        align-items: center;
        text-align: left;
    }
}
.mcb-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    position: relative;
}
.mcb-photo {
    width: clamp(120px, 40vw, 200px); 
    height: clamp(120px, 40vw, 200px);
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #10b981;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    position: relative;
    cursor: pointer;
}
.mcb-photo img { width: 100%; height: 100%; object-fit: cover; }
.mcb-photo-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 12px;
}
.mcb-photo:hover .mcb-photo-zoom { opacity: 1; }
.mcb-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    max-width: 210px;
    line-height: 1.3;
    background: linear-gradient(135deg, #064e3b, #065f46);
    padding: 6px 16px;
    border-radius: 20px;
    margin-top: -18px;
    position: relative;
    z-index: 2;
    border: 2px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.mcb-details-col {
    flex: 1;
    min-width: 0;
    padding-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.mcb-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.mcb-party {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}
.mcb-detail-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem; 
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}
.mcb-detail-row i {
    width: 16px;
    color: #6ee7b7;
    font-size: 0.75rem;
    text-align: center;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .mcb-meta, .mcb-detail-row {
        justify-content: flex-start;
    }
}
.mcb-ai-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(236,72,153,0.08));
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    min-width: 260px;
    max-width: 300px;
    gap: 8px;
    text-align: center;
}
@media (max-width: 768px) {
    .mcb-ai-panel {
        max-width: 100%;
        border-left: none;
        border-top: 1px solid rgba(99, 102, 241, 0.2);
        padding: 20px;
    }
}
.mcb-ai-tagline {
    font-size: 0.88rem;
    color: #c4b5fd;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}
.mcb-ai-desc {
    font-size: 0.8rem;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}
.photo-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.photo-lightbox img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 4px solid #6366f1;
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    background: none; border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.btn-ai-modal {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ai-modal span,
.btn-ai-modal i {
    position: relative;
    z-index: 2;
}
.btn-ai-modal::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    z-index: 1;
}
.btn-ai-modal:hover::after {
    animation: sweepSheer 1.2s ease forwards;
}
.btn-ai-modal:hover {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
}
.pdf-loading {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.05rem;
    background: #1e293b;
    z-index: 10;
    letter-spacing: 0.3px;
}
.pdf-spinner {
    width: 40px; height: 40px;
    border: 3px solid #1e293b;
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
}
@keyframes spinLoader {
    100% { transform: rotate(360deg); }
}
.pdf-progress-bar {
    width: 220px;
    height: 4px;
    background: #334155;
    border-radius: 4px;
    overflow: hidden;
}
.pdf-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    border-radius: 4px;
    transition: width 0.15s ease;
}
.pdf-wrapper {
    flex: 1;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}
.pdf-canvas-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #334155;
}
.pdf-page-canvas {
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-radius: 4px;
}
.ai-panel {
    background: #0f172a; 
    border-bottom: 2px solid #6366f1;
    max-height: 50vh; 
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.ai-panel.hidden { display: none; }
.ai-panel.minimized { max-height: 48px; overflow: hidden; }
.ai-panel.minimized .ai-results,
.ai-panel.minimized .ai-shimmer { display: none; }
.modal-candidate-bar {
    position: relative;
    transition: all 0.3s ease;
}
.modal-candidate-bar.minimized {
    height: 40px;
    padding: 2px 20px;
    overflow: hidden;
}
.modal-candidate-bar.minimized .mcb-left,
.modal-candidate-bar.minimized .mcb-ai-panel { display: none; }
.mcb-toggle {
    position: absolute;
    top: 5px; right: 15px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.mcb-toggle:hover { background: rgba(255,255,255,0.25); }
.modal-candidate-bar.minimized .mcb-toggle i { transform: rotate(180deg); }
.modal-candidate-bar.minimized .mcb-toggle { top: 5px; }
.ai-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    background: #0f172a;
    z-index: 5;
    cursor: pointer;
}
@media (max-width: 600px) {
    .ai-panel-header {
        padding: 10px 15px;
    }
}
.ai-header-branding {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}
.ai-header-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.ai-header-disclaimer i {
    color: #a78bfa;
    font-size: 0.85rem;
}
.ai-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: lowercase !important; 
}
.ai-panel-badge.status-mode {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-transform: none !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    letter-spacing: normal;
    gap: 4px;
}
.ai-panel-badge.status-mode .highlight {
    color: #a78bfa;
    font-weight: 900;
}
.ai-panel-badge.cached {
    background: linear-gradient(135deg, #059669, #10b981);
}
.ai-panel-close {
    background: none; border: none;
    color: #94a3b8; cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
    flex-shrink: 0;
}
.ai-panel-close:hover { color: #e2e8f0; }
.ai-shimmer {
    padding: 20px;
}
.ai-shimmer-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.shimmer-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: shimmerPulse 1.5s infinite;
}
.shimmer-line {
    height: 12px; border-radius: 6px; margin-bottom: 10px;
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: shimmerPulse 1.5s infinite;
}
.shimmer-line.w100 { width: 100%; }
.shimmer-line.w85 { width: 85%; }
.shimmer-line.w70 { width: 70%; }
.shimmer-line.w60 { width: 60%; }
.shimmer-line.w90 { width: 90%; }
.shimmer-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0;
}
.shimmer-card {
    height: 60px; border-radius: 10px;
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: shimmerPulse 1.5s infinite;
}
@keyframes shimmerPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.ai-shimmer-text {
    text-align: center;
    color: #a78bfa;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 8px;
    animation: pulseText 2s ease-in-out infinite;
}
.ai-scanner-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 180px;
    background: #0f172a;
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 8px;
    overflow: hidden;
    z-index: 20;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.25);
    display: none; 
}
.ai-scanner-track {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: transform 0.3s ease-out;
}
.ai-scanner-page {
    width: 100%;
    background: #fff;
    border-radius: 2px;
}
.ai-scanner-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: #818cf8;
    box-shadow: 0 0 15px #818cf8, 0 0 5px #fff;
    z-index: 21;
    animation: scanLineMove 2s linear infinite;
    opacity: 0.8;
}
@keyframes scanLineMove {
    0% { top: -4px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes pulseText {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.ai-tabs {
    display: flex;
    gap: 4px;
    padding: 6px 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-tab {
    background: none; border: none;
    color: #94a3b8;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.ai-tab:hover { color: #e2e8f0; }
.ai-tab.active {
    color: #a78bfa;
    border-bottom-color: #a78bfa;
}
.ai-tab-content { display: none; padding: 16px 20px; }
.ai-tab-content.active { display: block; }
.ai-verdict-box {
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 12px;
    padding: 18px 20px 18px 45px; 
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
}
@media (max-width: 600px) {
    .ai-verdict-box {
        padding: 15px 15px 15px 40px;
        font-size: 0.88rem;
    }
    .ai-verdict-box::before {
        top: 15px;
        left: 12px;
        font-size: 1rem;
    }
}
.ai-verdict-box::before {
    content: '\f05a'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 18px; left: 16px;
    font-size: 1.2rem;
    color: #818cf8;
}
.ai-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 600px) {
    .ai-stat-grid {
        grid-template-columns: 1fr !important;
    }
}
.ai-stat-card {
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.4); 
    padding: 14px;
    border-radius: 12px;
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ai-stat-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    background: #243049;
}
.ai-stat-label {
    font-size: 0.75rem;
    color: #cbd5e1; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    opacity: 1;
}
.ai-stat-value {
    font-size: 1.25rem; 
    color: #ffffff;
    font-weight: 950; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.ai-stat-value.clean { color: #4ade80; }
.ai-stat-value.warning { color: #f87171; }
.ai-page-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(99,102,241,0.15);
    color: #a78bfa;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    cursor: pointer;
    transition: all 0.2s;
    vertical-align: middle;
    border: 1px solid rgba(99,102,241,0.15);
}
.ai-page-link:hover {
    background: rgba(99,102,241,0.4);
    color: #fff;
    border-color: rgba(99,102,241,0.4);
}
.ai-section-title {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 700;
    margin: 14px 0 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ai-section-title:first-child { margin-top: 0; }
.ai-vehicle-card {
    background: rgba(30,41,59,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ai-vehicle-icon { font-size: 1.4rem; }
.ai-vehicle-info { flex: 1; }
.ai-vehicle-name {
    font-size: 0.85rem;
    color: #f1f5f9;
    font-weight: 700;
}
.ai-vehicle-meta {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}
.ai-no-data {
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 800;
    padding: 20px;
    background: #1e293b;
    border-radius: 10px;
    border: 1px dashed rgba(255,255,255,0.1);
    margin: 10px 0;
}
.ai-case-card {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}
.ai-case-icon { font-size: 1.2rem; }
.ai-case-num {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 4px;
}
.ai-case-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}
.ai-badge-star {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px #a78bfa) hue-rotate(280deg) brightness(1.5);
}
.ai-header-branding {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 6px;
    flex-grow: 1;
    text-align: center;
}
.ai-header-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 5px;
    font-weight: 500;
}
.ai-panel-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    background: #0f172a;
    z-index: 5;
    cursor: pointer;
}
.ai-panel-close {
    position: absolute; 
    right: 20px;
    background: none; border: none;
    color: #94a3b8; cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
    flex-shrink: 0;
}
.ai-error-container {
    padding: 40px 20px;
    text-align: center;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    margin: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.ai-error-icon {
    font-size: 2.5rem;
    color: #a78bfa;
    margin-bottom: 15px;
}
.ai-error-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.ai-retry-btn {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}
.ai-retry-btn:hover {
    transform: scale(1.05);
}
.dots-container {
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
}
.dot {
    opacity: 0.2;
    font-weight: 900;
    font-size: 1.2rem;
    color: #a78bfa; 
    animation: dotPulse 1.5s infinite;
}
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes dotPulse {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}
@media (max-width: 768px) {
    .filter-architecture { grid-template-columns: 1fr; }
    .omnibox { font-size: 0.95rem; }
    .ai-stat-grid { grid-template-columns: 1fr; }
}
.section-title-main {
    font-size: 2.8rem;
    font-weight: 950;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
    position: relative;
    padding-bottom: 20px;
}
.section-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
}
.authority-profile-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 var(--page-gutter);
}
.authority-card {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.35); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}
.profile-header-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: stretch;
}
@media (max-width: 1024px) {
    .profile-header-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.iit-photo-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
    max-width: none !important;
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
.iit-photo-card img {
    flex: 1;
    width: 100%;
    object-fit: cover;
    display: block;
    animation: iitShimmer 5s infinite alternate ease-in-out;
}
@keyframes iitShimmer {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.1) saturate(1.1); }
}
.photo-caption {
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.03);
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    font-style: italic;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.bio-content-card {
    padding: clamp(20px, 5vw, 40px);
    display: block !important;
    max-width: none !important;
}
.bio-main-title {
    font-size: 2.2rem;
    font-weight: 950;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.bio-body p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 20px;
}
.bio-badges {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.p-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #1e3a8a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.proof-grid-row {
    margin-bottom: 80px;
}
.row-section-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.row-section-title::before, .row-section-title::after {
    content: '';
    height: 1px;
    background: rgba(100, 116, 139, 0.2);
    flex: 1;
}
.news-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
@media (max-width: 1200px) {
    .news-proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .news-proof-grid {
        grid-template-columns: 1fr;
    }
}
.news-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    height: 480px; 
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 20px; 
}
.status-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.05);
    color: #1e3a8a;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 15px;
    border-radius: 4px;
    border-left: 4px solid #fbbf24; 
    margin-bottom: 15px;
}
.news-ribbon {
    position: absolute;
    top: 25px; 
    right: -40px; 
    background: linear-gradient(135deg, #d97706, #b45309); 
    color: #ffffff !important; 
    font-size: 0.65rem;
    font-weight: 900;
    padding: 6px 45px;
    transform: rotate(45deg);
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.news-ribbon i {
    font-size: 0.75rem;
}
.news-ribbon.video-corner-ribbon {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d) !important;
    top: 25px !important;
    right: -40px !important;
}
.standalone-video-grid {
    display: flex !important;
    justify-content: center;
    grid-template-columns: none !important;
    margin-top: 40px;
}
.historic-card {
    max-width: 420px; 
    width: 100%;
}
.historic-milestone-row {
    margin: 80px 0;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-pop);
}
.news-img-wrap, .news-video-wrap {
    width: 100%;
    height: 320px; 
    overflow-y: auto; 
    background: #020617;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.news-video-wrap {
    height: auto !important; 
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.news-img-wrap::-webkit-scrollbar { width: 5px; }
.news-img-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
.news-video-wrap { overflow: hidden; }
.news-video-wrap video { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    display: block; 
    background: #000; 
}
.video-play-hint {
    position: absolute;
    top: 10px; left: 10px; 
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 5;
}
.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top; 
    display: block;
}
.news-meta {
    padding: 15px 20px;
    background: linear-gradient(135deg, #064e3b, #065f46); 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 3px solid #fbbf24; 
    transform: none !important; 
    transition: none;
    z-index: 10;
}
.news-meta h4 {
    font-size: 1rem;
    font-weight: 900;
    color: #f1f5f9;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.news-meta p {
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .news-meta {
        position: static;
        transform: none;
        background: linear-gradient(135deg, #064e3b, #065f46);
    }
}
.engagement-row {
    max-width: 800px;
    margin: 0 auto;
}
.contact-card {
    padding: clamp(25px, 6vw, 50px);
    text-align: center;
}
.contact-main h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 15px;
}
.contact-main p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 35px;
}
.wa-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    max-width: 100%;
}
.wa-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}
.contact-footer {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.segment-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}
.footer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.fb-link, .mail-link {
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a8a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px;
}
.fb-link:hover, .mail-link:hover {
    color: #10b981;
}
.glory-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}
.glory-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.glory-btn i {
    color: #ffd700; 
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    .profile-header-row { grid-template-columns: 1fr; }
    .news-proof-grid { grid-template-columns: 1fr; }
    .contact-footer { flex-direction: column; gap: 30px; }
}
.pdf-wrapper {
    flex: 1;
    overflow: hidden;
    background: #1e293b;
    position: relative;
}
.pdf-canvas-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #020617;
    padding: 10px 0;
}

/* Feedback System */
.feedback-card {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 40px;
    animation: slideInDown 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.feedback-content {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.feedback-content::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--accent-glow), transparent);
    animation: glowRotate 6s infinite linear;
    z-index: -1;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feedback-content span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.4;
}

.feedback-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.feedback-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.wa-btn {
    background: #25D366;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mail-btn {
    background: #1e3a8a;
    color: white !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.feedback-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
}

/* Modal */
.feedback-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-glass {
    background: rgba(255, 255, 255, 0.85);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feedback-form input, .feedback-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-main);
}

.feedback-form input:focus, .feedback-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.feedback-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--accent);
    color: white !important;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .feedback-card {
        padding: 0 20px !important;
    }
    .feedback-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .feedback-actions {
        width: 100%;
    }
    .feedback-btn {
        flex: 1;
        justify-content: center;
    }
}
