:root {
    --primary: #ea0953;
    --dark: #011A41;
    --darker: #000D21;
    --light-text: #DFE4FD;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(223, 228, 253, 0.1);
    --primary: #ea0953;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;

  
    --glass: rgba(223, 228, 253, 0.1);
}

body {
    color: var(--light-text);
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
}
.cotiner1{
    background-color: var(--darker) !important;

}
h2,h3{
    color: white;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.text-primary { color: var(--primary); }

/* Header & Status */
.dash-header {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff80;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff80;
}

/* Trending Ticker */
.trending-bar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trending-bar .label {
    background: var(--primary);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 15px;
    text-transform: uppercase;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    color: #e0e0e0;
}

/* Bento Link Cards */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.link-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.link-card:hover {
    background: rgba(234, 9, 83, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.main-service {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(234, 9, 83, 0.1), transparent);
}

/* News Feed */
.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--light-text);
    padding: 6px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 5px;
    transition: 0.3s;
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.news-card {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.news-img {
    width: 120px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.tag {
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.news-content h4 { margin: 5px 0; color: #e0e0e0; }
.news-content p { font-size: 0.9rem; opacity: 0.7; }

.news-meta {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.5;
}

/* Responsiveness */
@media (max-width: 992px) {
    .dashboard-grid { grid-template-columns: 1fr; }
    .header-flex { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .main-service { grid-column: span 1; }
    .news-card { flex-direction: column; }
    .news-img { width: 100%; height: 150px; }
}



/* Bento Card Styles */
.bento-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(1, 26, 65, 0.1);
    background: #fff;
}

.main-hub {
    background: linear-gradient(135deg, var(--dark) 0%, #002d72 100%);
    color: #fff;
    min-height: 300px;
}

.dark-hub {
    background: var(--dark);
    color: #fff;
}

.secondary-hub {
    background: var(--light);
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(1, 26, 65, 0.15);
}

/* Custom Button */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #c40746;
    box-shadow: 0 8px 15px rgba(234, 9, 83, 0.3);
    color: white;
}

/* News Feed Items */
.news-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.news-item:hover {
    transform: scale(1.02);
}

.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Animations */
.badge-tech {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsiveness */
@media (max-width: 768px) {
    .display-3 { font-size: 2.5rem; }
    .bento-card { margin-bottom: 10px; }
}


/* Bento Tile Base */
.bento-tile {
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-tile:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(234, 9, 83, 0.15);
}

/* Specific Tile Styles */
.main-news {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1000') center/cover;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.tile-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--darker) 20%, transparent 100%);
    z-index: 1;
}

.tile-content { position: relative; z-index: 2; }

.glass-tile {
    background: var(--glass);
    backdrop-filter: blur(15px);
}

.dark-tile { background: var(--dark); }

.primary-grad-tile {
    background: linear-gradient(90deg, var(--primary) 0%, #c40746 100%);
}

/* Status Pulse */
.status-pill {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
}

.pulse-dot {
    height: 8px;
    width: 8px;
    background-color: #00ff80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px #00ff80;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Trending List Styling */
.trending-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.trending-list li span {
    color: var(--primary);
    font-weight: bold;
    margin-right: 15px;
}

/* FAQ Customization */
.faq-container {
    background: var(--dark);
    border-radius: 30px;
}

.accordion-button::after {
    filter: invert(1);
}

.btn-white-pill {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: bold;
    border: none;
}


.maincontainer p ,.row , .maincontainer h2 {
    color: black !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.service-item {
    transition: .5s;
    border: 1px solid #eeeeee !important;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 0.5rem 1.5rem rgba(234, 9, 83, 0.08) !important;
    border-color: var(--primary) !important;
}

.btn-primary {
    background-color: #ea0953;
    border-color: #ea0953;
}

.btn-primary:hover {
    background-color: #d1084a;
    border-color: #d1084a;
}

.accordion-button:not(.collapsed) {
    color: #ea0953;
    background-color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(234, 9, 83, 0.1);
}