.emblem {
    filter: brightness(0);
}

.hover-zoom-img {
    transition: transform 0.3s ease;
}
.card:hover .hover-zoom-img {
    transform: scale(1.03);
}
.cursor-zoom {
    cursor: zoom-in;
}

.footer .social-links a.email-hover:hover {
    background-color: #5438ff !important;
    border-color: #5438ff !important;
    color: #ffffff !important;
}

/* Custom styling for the video play button */
.play-btn-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-color) 0%, rgba(92, 65, 216, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.play-btn-custom:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: white;
}

/* ==========================================================================
   Blog & Article Styles
   ========================================================================== */

/* Blog Cards */
.blog-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-radius: 8px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
}

.blog-card h3 a {
    transition: color 0.3s ease;
}

.blog-card:hover h3 a {
    color: var(--accent-color) !important;
}

/* Image Zoom Effect */
.hover-zoom-img {
    transition: transform 0.4s ease;
}

.blog-card:hover .hover-zoom-img {
    transform: scale(1.05);
}

/* Single Article Content */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul li {
    margin-bottom: 0.5rem;
}

.article-quote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 4px;
    font-style: italic;
    margin: 2.5rem 0;
}

/* Error pages */

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8fbfe;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #4154f1, #707bf4);
    line-height: 1;
    color: #ffffff;
}
.ai-glow {
    box-shadow: 0 0 50px rgba(65, 84, 241, 0.1);
    border-radius: 20px;
    padding: 60px;
    background: white;
}
