/* ResultNiti Pro Core Theme Custom Styles */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #e8f0fe;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #dadce0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Glassmorphism */
.bg-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hero Section Widget Styles */
.hero-search-form:focus-within {
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15) !important;
    border-color: var(--primary-color) !important;
}

.tag-pill {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.tag-pill:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
}

.trust-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e6f4ea;
    color: #137333;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-badge-pill.official {
    background: #fce8e6;
    color: #c5221f;
}

.trust-badge-pill.fast {
    background: #fef7e0;
    color: #b06000;
}

.trust-badge-icon {
    font-weight: bold;
}

/* Stats Cards */
.hero-stats-row {
    margin-top: 40px;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.hero-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.stat-icon-blue { background: #e8f0fe; color: #1a73e8; }
.stat-icon-green { background: #e6f4ea; color: #137333; }
.stat-icon-red { background: #fce8e6; color: #c5221f; }
.stat-icon-orange { background: #fef7e0; color: #b06000; }

.hero-stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Breaking News Ticker */
.ticker-wrap {
    display: flex;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
