/* News Event Details Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif !important;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1,
h2,
h3 {
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0 1rem 0;
    text-align: center;
    margin-top: 75px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1e3a8a;
}

.breadcrumb span {
    color: #6b7280;
    margin: 0 0.5rem;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Article Section - Redesigned */
.article-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.article-section:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.article-header {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 58, 138, 0.4) 50%, rgba(30, 58, 138, 0.8) 100%);
    transition: opacity 0.3s ease;
}

.article-section:hover .article-header::before {
    opacity: 0.9;
}

.article-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.article-category {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.1rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.article-category.news {
    background: rgba(59, 130, 246, 0.9);
    border-color: rgba(59, 130, 246, 0.5);
}

.article-category.events {
    background: rgba(59, 130, 246, 0.9);
    border-color: rgba(59, 130, 246, 0.5);
}

.article-category.insights {
    background: rgba(245, 158, 11, 0.9);
    border-color: rgba(245, 158, 11, 0.5);
}

.article-category.company {
    background: rgba(139, 92, 246, 0.9);
    border-color: rgba(139, 92, 246, 0.5);
}

.article-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.6s ease-out 0.4s both;
    letter-spacing: -0.02em;
}

.article-date {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.article-date::before {
    content: '📅';
    font-size: 0.9rem;
}

.article-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.article-body {
    padding: 2rem;
    position: relative;
}

.article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a, #3b82f6);
    border-radius: 0px;
    animation: shimmer 3s ease-in-out infinite;
}

.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    max-width: none;
}

.article-content p {
    margin-bottom: 0.25rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.article-content p:nth-child(1) {
    animation-delay: 0.1s;
}

.article-content p:nth-child(2) {
    animation-delay: 0.2s;
}

.article-content p:nth-child(3) {
    animation-delay: 0.3s;
}

.article-content p:nth-child(4) {
    animation-delay: 0.4s;
}

.article-content h3 {
    color: #1e3a8a;
    margin: 2.5rem 0 1.25rem 0;
    font-size: 1.625rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #3b82f6;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), transparent);
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.article-content h3:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
    transform: translateX(5px);
}

.article-content h4 {
    color: #1e3a8a;
    margin: 2rem 0 1rem 0;
    font-size: 1.375rem;
    font-weight: 600;
    position: relative;
    padding-left: 0.75rem;
}

.article-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #3b82f6;
    border-radius: 2px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
    padding-left: 0.5rem;
}

.article-content ul li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: #3b82f6;
    font-weight: bold;
    transition: all 0.2s ease;
}

.article-content li:hover {
    color: #1e3a8a;
    transform: translateX(3px);
}

.article-content li:hover::before {
    color: #1e3a8a;
    transform: translateX(3px);
}

.article-content blockquote {
    border: none;
    padding: 0.75rem;
    margin: 0.5rem 0;
    font-style: italic;
    color: #4b5563;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.article-content blockquote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Related Articles */
.related-section {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    letter-spacing: 0px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.related-card-body {
    padding: 1rem;
}

.related-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.related-card-category {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.related-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    line-height: 1.4;
}

.related-card-excerpt {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

/* Events */
.event-item {
    padding: 1rem;
    border-left: 4px solid #3b82f6;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
    cursor: pointer;
}

.event-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.event-date {
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: bold;
}

.event-title {
    font-weight: bold;
    margin: 0.5rem 0;
}

.event-location {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.newsletter input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    margin: 1rem 0;
}

.newsletter button {
    width: 100%;
    padding: 0.75rem;
    background: #fbbf24;
    color: #1e3a8a;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Recent Articles Sidebar */
.news-item-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: rgb(55, 65, 81);
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgb(229, 231, 235);
    border-radius: 12px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
    position: relative;
    overflow: hidden;
    transform: translateY(0px);
}

.news-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.news-item-card:hover .news-thumbnail {
    transform: scale(1.05);
}

.news-item-card:hover h3 {
    color: #3b82f6 !important;
}

.news-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    position: relative;
    transition: transform 0.3s ease;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.news-item-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1f2937;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.news-item-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.defult-home>.main-content {
    padding: 0;
}

.title4 {
    letter-spacing: 0px;
}

/* Share Section */
.share-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a, #8b5cf6, #f59e0b);
    border-radius: 16px 16px 0 0;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.share-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    letter-spacing: -0.02em;
}

.share-subtitle {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

/* Social Media Buttons */
.social-share-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.social-share-btn:hover::before {
    left: 100%;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-share-btn i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Platform-specific colors */
.facebook {
    background: linear-gradient(135deg, #1877f2, #0c5aa6);
}

.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ebe57);
}

.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.reddit {
    background: linear-gradient(135deg, #ff4500, #cc3700);
}

.copy-link {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.email {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-action-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.quick-action-btn i {
    font-size: 1rem;
}

/* Embed Section */
.embed-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.embed-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.embed-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.embed-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.embed-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.embed-option:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.embed-option.active {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.embed-option input[type="radio"] {
    margin: 0;
}

.embed-code-container {
    position: relative;
    background: #1f2937;
    border-radius: 8px;
    overflow: hidden;
}

.embed-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #374151;
    border-bottom: 1px solid #4b5563;
}

.embed-code-title {
    color: #f3f4f6;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.copy-embed-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-embed-btn:hover {
    background: #2563eb;
}

.copy-embed-btn.copied {
    background: #10b981;
}

.embed-code {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
    border: none;
    outline: none;
    resize: vertical;
    min-height: 120px;
    width: 100%;
}

/* Success/Error Messages */
.share-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.share-message.show {
    opacity: 1;
    transform: translateY(0);
}

.share-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.share-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-header {
        height: 400px;
    }

    .article-title {
        font-size: 2.25rem;
    }

    .article-body {
        padding: 2.5rem 2rem;
    }

    .article-body::before {
        left: 2rem;
        right: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .article-header {
        height: 300px;
    }

    .article-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .article-header-content {
        padding: 2rem 1.5rem;
    }

    .article-body {
        padding: 2rem 1.5rem;
    }

    .article-body::before {
        left: 1.5rem;
        right: 1.5rem;
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-content h3 {
        font-size: 1.375rem;
        margin: 2rem 0 1rem 0;
        padding: 0.75rem 1rem 0.75rem 1.25rem;
    }

    .article-meta {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .article-category {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .share-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }

    .social-share-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .social-share-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .embed-options {
        grid-template-columns: 1fr;
    }

    .embed-code-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .article-header {
        height: 250px;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-header-content {
        padding: 1.5rem 1rem;
    }

    .article-body {
        padding: 1.5rem 1rem;
    }

    .article-body::before {
        left: 1rem;
        right: 1rem;
    }

    .article-content {
        font-size: 0.95rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
        padding: 0.5rem 0.75rem 0.5rem 1rem;
    }

    .article-content blockquote {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .news-item-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .news-thumbnail {
        width: 60px;
        height: 60px;
    }

    .news-item-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }

    .news-item-date {
        font-size: 0.8rem;
    }

    .share-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .social-share-btn {
        justify-content: center;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .share-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .social-share-btn {
        justify-content: center;
        padding: 0.875rem;
    }
}

/* Print styles */
@media print {
    .article-section {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .article-header::before {
        display: none;
    }

    .article-header-content {
        background: none;
        backdrop-filter: none;
        color: #1f2937;
    }

    .article-body::before {
        display: none;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 0.3s ease-in-out;
}