  @keyframes bouncePulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }

  .animate-bounce-pulse {
    animation: bouncePulse 1.8s ease-in-out infinite;
  }
  
  .image-container {
            flex: 1; 
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh; 
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar {
                position: fixed;
                bottom: 15px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(238, 236, 238, 0.9);
                backdrop-filter: blur(8px);
                padding: 8px 12px;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
                display: flex;
                flex-direction: row;
                gap: 10px;
                width: auto;
                transition: all 0.3s ease-in-out;
            }

          
            .sidebar a {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                font-size: 10px;
                color: #333;
                text-decoration: none;
                padding: 6px;
                border-radius: 8px;
                transition: all 0.3s ease-in-out;
                width: 55px;
              
            }

            .sidebar a i {
                font-size: 20px;
                margin-bottom: 3px;
            }

            .sidebar a:hover {
                background: #4d464e;
                color: white;
                transform: scale(1.08);
            }

            .sidebar a:hover i {
                color: white;
            }

            @media (max-width: 768px) {
                .sidebar {
                    width: 90%;
                    justify-content: space-around;
                }

                .sidebar a {
                    width: 50px;
                    font-size: 9px;
                }

                .sidebar a i {
                    font-size: 18px;
                }
            }

            @media (max-width: 768px) {
            .menu {
                display: grid;
                grid-template-columns: repeat(3, 1fr); 
                gap: 10px;
                width: 90%;
                margin: 0 auto;
            }
            .menu a {
                text-align: center;
                padding: 10px;
                font-size: 14px;
            }
        }
        
        
          @keyframes blink {
            50% {
                opacity: 0.5;
            }
        }
        
        .blinking {
            animation: blink 1s infinite;
        }
        