/* ========================================
   CREATIVE ENHANCEMENTS
   ======================================== */

/* ===== ENHANCED NAVBAR ===== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%) !important;
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 82, 204, 0.2), transparent) 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Beautiful Logo Design */
.logo {
    background: linear-gradient(135deg, #0052CC 0%, #4C9AFF 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
    position: relative;
    padding: 8px 20px 8px 16px;
    border-radius: 12px;
}

.logo::before {
    content: "✦";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0052CC, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052CC, #4C9AFF, #10B981);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::after {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateY(-50%) scale(1.2); }
}

/* Enhanced Nav Links */
.nav-link {
    position: relative;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary-color) !important;
}

.nav-link.active {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0052CC, #10B981);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ===== BEAUTIFUL STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #0052CC 0%, #0061F2 50%, #10B981 100%);
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Animated background patterns */
.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: backgroundMove 15s ease-in-out infinite;
}

.stats-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255, 255, 255, 0.03) 60px,
        rgba(255, 255, 255, 0.03) 120px
    );
    animation: diagonalMove 30s linear infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

@keyframes diagonalMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Beautiful Stat Boxes */
.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px !important;
    padding: 48px 32px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(0deg);
    transition: transform 0.6s ease;
}

.stat-box:hover::after {
    transform: rotate(180deg);
}

.stat-box:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Stat Number Styling */
.stat-number {
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: white !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0F2FE 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    margin-bottom: 16px !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-box:hover .stat-number {
    transform: scale(1.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Add icon before number */
.stat-number::before {
    content: "◆";
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

/* Stat Label Styling */
.stat-label {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.stat-label::before {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    margin: 0 auto 16px;
    border-radius: 2px;
}

/* Add shine effect */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.stat-box .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .stats-section {
        padding: 50px 0 !important;
    }
    
    .stat-box {
        padding: 36px 24px !important;
    }
    
    .stat-number {
        font-size: 3rem !important;
    }
    
    .stat-label {
        font-size: 0.95rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .logo::before {
        font-size: 1rem;
    }
}

/* Add decorative elements to stats section */
.stats-section .container {
    position: relative;
    z-index: 2;
}

/* Floating particles in stats section */
.stats-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px) scale(0);
        opacity: 0;
    }
}

/* Add glow effect on hover */
.stat-box:hover {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Navbar scroll enhancement */
.navbar.scrolled {
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.12),
        0 0 1px rgba(0, 82, 204, 0.1) !important;
}

/* ===== MISSION SECTION ENHANCEMENTS ===== */

/* Beautiful mission section styling */
.mission-section {
    position: relative;
    overflow: hidden;
}

/* Add decorative gradient overlay */
.mission-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.03), rgba(16, 185, 129, 0.03));
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above overlay */
.mission-content {
    position: relative;
    z-index: 2;
}

/* Enhanced image container */
@media (min-width: 969px) {
    .mission-image {
        position: relative;
        z-index: 2;
    }
    
    .image-placeholder {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Add decorative border */
    .image-placeholder::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 3px solid transparent;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(0, 82, 204, 0.3), rgba(16, 185, 129, 0.3)) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 2;
    }
    
    /* Hover effect */
    .image-placeholder:hover {
        transform: scale(1.03);
        box-shadow: 0 30px 80px rgba(0, 82, 204, 0.2);
    }
    
    /* Image styling */
    .image-placeholder img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
        transition: transform 0.4s ease;
    }
    
    /* Add subtle zoom on hover */
    .image-placeholder:hover img {
        transform: scale(1.05);
    }
}

/* Enhanced mission text */
.mission-text {
    position: relative;
    z-index: 2;
}

.mission-text .section-title {
    position: relative;
    display: inline-block;
}

/* Add decorative underline to mission title */
.mission-text .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0052CC, #10B981);
    border-radius: 2px;
}

/* Enhanced value items */
.value-item {
    background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.value-item:hover {
    background: linear-gradient(135deg, #FFFFFF, #EFF6FF);
    border-color: rgba(0, 82, 204, 0.2);
}

/* Add pulse animation to value icons */
.value-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.value-item:nth-child(1) .value-icon { animation-delay: 0s; }
.value-item:nth-child(2) .value-icon { animation-delay: 0.3s; }
.value-item:nth-child(3) .value-icon { animation-delay: 0.6s; }

/* ===== DONATION SECTION STYLING ===== */

.donation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.05), transparent);
    border-radius: 50%;
}

.donation-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donation-header {
    margin-bottom: 50px;
}

.donation-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.donation-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.donation-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.donation-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 82, 204, 0.1),
        0 0 0 1px rgba(0, 82, 204, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.donation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0052CC, #10B981);
    border-radius: 24px 24px 0 0;
}

.donation-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 82, 204, 0.15),
        0 0 0 1px rgba(0, 82, 204, 0.1);
}

.donation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E6F0FF, #D1FAE5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-color);
}

.donation-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.account-details {
    background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px dashed rgba(0, 82, 204, 0.2);
}

.account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
    position: relative;
}

.account-item:last-child {
    border-bottom: none;
}

.account-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: left;
    flex: 0 0 140px;
}

.account-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    flex: 1;
}

.account-number {
    font-family: Courier New, monospace;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #0052CC, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.donation-note {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Footer donation styling */
.footer-donation {
    color: rgba(255, 255, 255, 0.9);
}

.footer-donation p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-donation strong {
    color: white;
}

/* Responsive */
@media (max-width: 640px) {
    .donation-section {
        padding: 50px 0;
    }
    
    .donation-title {
        font-size: 2rem;
    }
    
    .donation-card {
        padding: 30px 20px;
    }
    
    .account-details {
        padding: 20px;
    }
    
    .account-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }
    
    .account-label {
        text-align: left;
    }
    
    .account-value {
        text-align: left;
    }
    
    .account-number {
        font-size: 1.25rem;
    }
    
    .copy-btn {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}

/* Add shine animation to donation card */
@keyframes donationShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.donation-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: donationShine 3s infinite;
    pointer-events: none;
}

/* ===== LOGO STYLING ===== */

/* Navbar Logo */
.logo {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 82, 204, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.25);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0052CC 0%, #4C9AFF 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

/* Footer Logo */
.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Donation Section Logo */
.donation-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0052CC, #10B981) border-box;
    box-shadow: 
        0 10px 40px rgba(0, 82, 204, 0.2),
        0 0 0 8px rgba(0, 82, 204, 0.05);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 40px rgba(0, 82, 204, 0.2),
            0 0 0 8px rgba(0, 82, 204, 0.05);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 50px rgba(0, 82, 204, 0.3),
            0 0 0 12px rgba(0, 82, 204, 0.08);
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .donation-logo {
        width: 80px;
        height: 80px;
    }
}

/* Ensure navbar logo doesnt have conflicting styles hilful-fudul-website/

/* ===== LOGO STYLING ===== */

/* Navbar Logo */
.logo {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 82, 204, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.25);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0052CC 0%, #4C9AFF 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

/* Footer Logo */
.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Donation Section Logo */
.donation-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
    border: 4px solid rgba(0, 82, 204, 0.3);
    box-shadow: 0 10px 40px rgba(0, 82, 204, 0.2), 0 0 0 8px rgba(0, 82, 204, 0.05);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 82, 204, 0.2), 0 0 0 8px rgba(0, 82, 204, 0.05);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 82, 204, 0.3), 0 0 0 12px rgba(0, 82, 204, 0.08);
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .donation-logo {
        width: 80px;
        height: 80px;
    }
}

/* Remove conflicting pseudo elements from navbar logo */
.navbar .logo::before {
    display: none !important;
}

.navbar .logo::after {
    display: none !important;
}
